summaryrefslogtreecommitdiffstats
path: root/src/proto
AgeCommit message (Collapse)Author
2012-02-05updated for version 7.3.431v7.3.431Bram Moolenaar
Problem: Fetching a key at a prompt may be confused by escape sequences. Especially when getting a prompt at a VimEnter autocommand. (Alex Efros) Solution: Properly handle escape sequences deleted by check_termcode().
2012-02-05updated for version 7.3.429v7.3.429Bram Moolenaar
Problem: When 'cpoptions' includes "E" "c0" in the first column is an error. The redo register is then set to the errornous command. Solution: Do not set the redo register if the command fails because of an empty region. (Hideki Eiraku)
2012-02-04updated for version 7.3.423v7.3.423Bram Moolenaar
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
2012-01-20updated for version 7.3.407v7.3.407Bram Moolenaar
Problem: ":12verbose call F()" may duplicate text while trying to truncate. (Thinca) Solution: Only truncate when there is not enough room. Also check the byte length of the buffer.
2012-01-10updated for version 7.3.397v7.3.397Bram Moolenaar
Problem: ":helpgrep" does not work properly when 'encoding' is not utf-8 or latin1. Solution: Convert non-ascii lines to 'encoding'. (Yasuhiro Matsumoto)
2011-09-14updated for version 7.3.311v7.3.311Bram Moolenaar
Problem: Complete function isn't called when the leader changed. Solution: Allow the complete function to return a dictionary with a flag that indicates ins_compl_restart() is to be called when the leader changes. (Taro Muraoka)
2011-08-10updated for version 7.3.279v7.3.279Bram Moolenaar
Problem: With GTK, when gvim is full-screen and a tab is opened and using a specific monitor configuration the window is too big. Solution: Adjust the window size like on MS-Windows. (Yukihiro Nakadaira)
2011-08-10updated for version 7.3.273v7.3.273Bram Moolenaar
Problem: A BOM in an error file is seen as text. (Aleksey Baibarin) Solution: Remove the BOM from the text before evaluating. (idea by Christian Brabandt)
2011-07-07updated for version 7.3.240v7.3.240Bram Moolenaar
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
2011-07-07updated for version 7.3.239v7.3.239Bram Moolenaar
Problem: Python corrects the cursor column without taking 'virtualedit' into account. (lilydjwg) Solution: Call check_cursor_col_win().
2011-05-19updated for version 7.3.198v7.3.198Bram Moolenaar
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
2011-05-10updated for version 7.3.188v7.3.188Bram Moolenaar
Problem: More RISC OS files to remove. Solution: Remove them. Update the file list.
2011-05-05updated for version 7.3.177v7.3.177Bram Moolenaar
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is "utf-8". Solution: Convert to utf-16. (Yukihiro Nakadaira)
2011-05-05updated for version 7.3.172v7.3.172Bram Moolenaar
Problem: MS-Windows: rename() might delete the file if the name differs but it's actually the same file. Solution: Use the file handle to check if it's the same file. (Yukihiro Nakadaira)
2011-04-11updated for version 7.3.160v7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2011-01-22updated for version 7.3.103v7.3.103Bram Moolenaar
Problem: Changing 'fileformat' and then using ":w" in an empty file sets the 'modified' option. Solution: In unchanged() don't ignore 'ff' for an empty file.
2011-01-17updated for version 7.3.102v7.3.102Bram Moolenaar
Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
2010-12-17updated for version 7.3.083v7.3.083Bram Moolenaar
Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
2010-10-23updated for version 7.3.034v7.3.034Bram Moolenaar
Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library.
2010-10-20updated for version 7.3.032v7.3.032Bram Moolenaar
Problem: maparg() doesn't return the flags, such as <buffer>, <script>, <silent>. These are needed to save and restore a mapping. Solution: Improve maparg(). (also by Christian Brabandt)
2010-08-14Fix building the Mac version with GUI.Bram Moolenaar
2010-08-09Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)Bram Moolenaar
2010-08-04Make :find completion consistent between Unix and MS-Windows. Add a test.Bram Moolenaar
(Nazri Ramliy)
2010-08-04When undoing a reload, move the cursor to the first changed line.Bram Moolenaar
2010-07-29Add completion for ":ownsyntax" and improve completion for ":filetype".Bram Moolenaar
(Dominique Pelle)
2010-07-28Changes for VMS. Mostly by Zoltan Arpadffy.Bram Moolenaar
2010-07-26Fix compiler warnings on 64 bit systems.Bram Moolenaar
2010-07-25Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)Bram Moolenaar
2010-07-25Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar
2010-07-24Add the 'undoreload' option to be able to undo a file reload.Bram Moolenaar
2010-07-24Give each syntax item a sequence number, so that we know when it starts andBram Moolenaar
can show the 'cchar' for each of them.
2010-07-24Temporary solution for crashing when using both :py and :py3: disallow both inBram Moolenaar
one session.
2010-07-23Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar
concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
2010-07-22For conceal mode: when two different syntax items follow each other, show theBram Moolenaar
replacement character for both.
2010-07-22Make it possible to load Lua dynamically on Unix. (Luis Carvalho)Bram Moolenaar
2010-07-20Change 'cryptmethod' from a number to a string option. Make it global-local.Bram Moolenaar
2010-07-19Rename some "python3" symbols to "py3", as the command name.Bram Moolenaar
Documentation updates.
2010-07-18Make automatic prototype generation work with more interfaces.Bram Moolenaar
2010-07-18Added strdisplaywidth() function.Bram Moolenaar
2010-07-18Added strwidth() and strchars() functions.Bram Moolenaar
2010-07-17Added support for Python 3. (Roland Puntaier)Bram Moolenaar
2010-07-14Added Lua interfae. (Luis Carvalho)Bram Moolenaar
2010-07-14Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.Bram Moolenaar
2010-07-11Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (MartinBram Moolenaar
Toft)
2010-07-11Improve Javascript indenting. Add "J" flag to 'cino'. (Hari Kumar G)Bram Moolenaar
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-27Added ":earlier 1f" and ":later 1f".Bram Moolenaar
2010-06-27Add file save counter to undo information. Add undotree() function.Bram Moolenaar
2010-06-26Various small fixes from Dominique Pelle.Bram Moolenaar