summaryrefslogtreecommitdiff
path: root/src/ops.c
AgeCommit message (Collapse)Author
2013-11-02updated for version 7.4.058Bram Moolenaar
Problem: Warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
2013-10-06updated for version 7.4.052Bram Moolenaar
Problem: With 'fo' set to "a2" inserting a space in the first column may cause the cursor to jump to the previous line. Solution: Handle the case when there is no comment leader properly. (Tor Perkins) Also fix that cursor is in the wrong place when spaces get replaced with a Tab.
2013-09-25updated for version 7.4.041Bram Moolenaar
Problem: Visual selection does not remain after being copied over. (Axel Bender) Solution: Move when VIsual_active is reset. (Christian Brabandt)
2013-09-22updated for version 7.4.034Bram Moolenaar
Problem: Using "p" in Visual block mode only changes the first line. Solution: Repeat the put in all text in the block. (Christian Brabandt)
2013-08-09updated for version 7.4b.020Bram Moolenaar
Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega) Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams)
2013-07-28updated for version 7.4a.047Bram Moolenaar
Problem: Some comments are not so nice. Solution: Change the comments.
2013-07-13updated for version 7.4a.017Bram Moolenaar
Problem: When 'foldmethod' is "indent", using ">>" on a line just above a fold makes the cursor line folded. (Evan Laforge) Solution: Call foldOpenCursor(). (Christian Brabandt)
2013-07-03updated for version 7.3.1293Bram Moolenaar
Problem: Put in empty buffer cannot be undone. Solution: Save one more line for undo. (Ozaki)
2013-06-29updated for version 7.3.1270Bram Moolenaar
Problem: Using "Vp" in an empty buffer can't be undone. (Hauke Petersen) Solution: Save one line in an empty buffer. (Christian Brabandt)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-03-13updated for version 7.3.856Bram Moolenaar
Problem: When calling system() multi-byte clipboard contents is garbled. Solution: Save and restore the clipboard contents. (Yukihiro Nakadaira)
2013-03-07updated for version 7.3.853Bram Moolenaar
Problem: Using "ra" in multiple lines on multi-byte characters leaves a few characters not replaced. Solution: Adjust the end column only in the last line. (Yasuhiro Matsumoto)
2013-03-07updated for version 7.3.852Bram Moolenaar
Problem: system() breaks clipboard text. (Yukihiro Nakadaira) Solution: Use Xutf8TextPropertyToTextList(). (Christian Brabandt) Also do not put the text in the clip buffer if conversion fails.
2012-12-12updated for version 7.3.757Bram Moolenaar
Problem: Issue 96: May access freed memory when a put command triggers autocommands. (Dominique Pelle) Solution: Call u_save() before getting y_array.
2012-09-05updated for version 7.3.649Bram Moolenaar
Problem: When 'clipboard' is set to "unnamed" small deletes end up in the numbered registers. (Ingo Karkat) Solution: Use the original register name to decide whether to put a delete in a numbered register. (Christian Brabandt)
2012-08-08updated for version 7.3.629Bram Moolenaar
Problem: There is no way to make 'shiftwidth' follow 'tabstop'. Solution: When 'shiftwidth' is zero use the value of 'tabstop'. (Christian Brabandt)
2012-07-10updated for version 7.3.597Bram Moolenaar
Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
2012-06-29updated for version 7.3.573Bram Moolenaar
Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle)
2012-06-13updated for version 7.3.552Bram Moolenaar
Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
2012-06-13updated for version 7.3.550Bram Moolenaar
Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens)
2012-06-07updated for version 7.3.548Bram Moolenaar
Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
2012-06-06updated for version 7.3.547Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
2012-06-06updated for version 7.3.541Bram Moolenaar
Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-05-18updated for version 7.3.517Bram Moolenaar
Problem: Crash when using "vipvv". (Alexandre Provencio) Solution: Don't let the text length become negative.
2012-04-20updated for version 7.3.498Bram Moolenaar
Problem: The behavior of the "- register changes depending on value of the 'clipboard' option. (Szamotulski) Solution: Also set the "- register when the register is "*" or "+". (Christian Brabandt)
2012-03-23updated for version 7.3.476Bram Moolenaar
Problem: When selecting a block, using "$" to include the end of each line and using "A" and typing a backspace strange things happen. (Yuangchen Xie) Solution: Avoid using a negative length. (Christian Brabandt)
2012-03-07updated for version 7.3.466Bram Moolenaar
Problem: Get ml_get error hen ":behave mswin" was used and selecting several lines. (A. Sinan Unur) Solution: Adjust the end of the operation. (Christian Brabandt)
2012-02-22updated for version 7.3.452Bram Moolenaar
Problem: Undo broken when pasting close to the last line. (Andrey Radev) Solution: Use a flag to remember if the deleted included the last line. (Christian Brabandt)
2012-01-10updated for version 7.3.396Bram Moolenaar
Problem: After forcing an operator to be characterwise it can still become linewise when spanning whole lines. Solution: Don't make the operator linewise when motion_force was set. (Christian Brabandt)
2012-01-10updated for version 7.3.395Bram Moolenaar
Problem: "dv?bar" in the last line deletes too much and breaks undo. Solution: Only adjust the cursor position when it's after the last line of the buffer. Add a test. (Christian Brabandt)
2011-09-21updated for version 7.3.318Bram Moolenaar
Problem: "C" on the last line deletes that line if it's blank. Solution: Only delete the last line for a delete operation. (James Vega)
2011-08-10updated for version 7.3.270Bram Moolenaar
Problem: Illegal memory access. Solution: Swap conditions. (Dominique Pelle)
2011-07-15updated for version 7.3.251Bram Moolenaar
Problem: "gH<Del>" deletes the current line, except when it's the last line. Solution: Set the "include" flag to indicate the last line is to be deleted.
2011-06-19updated for version 7.3.221Bram Moolenaar
Problem: Text from the clipboard is sometimes handled as linewise, but not consistently. Solution: Assume the text is linewise when it ends in a CR or NL.
2011-04-01updated for version 7.3.151Bram Moolenaar
Problem: When "unnamedplus" is in 'clipboard' the selection is sometimes also copied to the star register. Solution: Avoid copy to the star register when undesired. (James Vega)
2010-12-08updated for version 7.3.078Bram Moolenaar
Problem: Warning for unused variable. Solution: Adjuste #ifdefs.
2010-12-02updated for version 7.3.074Bram Moolenaar
Problem: Can't use the "+ register like "* for yank and put. Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
2010-11-24updated for version 7.3.064Bram Moolenaar
Problem: Win32: ":dis +" shows nothing, but "+p does insert text. Solution: Display the * register, since that's what will be inserted. (Christian Brabandt)
2010-10-09updated for version 7.3.020Bram Moolenaar
Problem: Cursor position wrong when joining multiple lines and 'formatoptions' contains "a". (Moshe Kamensky) Solution: Adjust cursor position for skipped indent. (Carlo Teubner)
2010-08-01Fix: changing case of a character removed combining characters.Bram Moolenaar
2010-07-31Fixed: CTRL-R in Insert mode doesn't insert composing characters.Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-07-14Fix a few compiler warnings.Bram Moolenaar
2010-07-11When 'formatexpr' evaluates to non-zero fall back to internal formatting, alsoBram Moolenaar
for "gq". (James Vega)
2010-07-10Make joining a range of lines much faster. (Milan Vancura)Bram Moolenaar
2010-07-08Make synstack() work on the character just after the end of the line.Bram Moolenaar
2010-06-26Various small fixes from Dominique Pelle.Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-01-27updated for version 7.2.346Bram Moolenaar
Problem: Repeating a command with @: causes a mapping to be applied twice. Solution: Do not remap characters inserted in the typeahead buffer. (Kana Natsuno)
2010-01-19updated for version 7.2.333Bram Moolenaar
Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)