summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2013-11-14Update runtime files.Bram Moolenaar
2013-11-12updated for version 7.4.088v7.4.088Bram Moolenaar
Problem: When spell checking is enabled Asian characters are always marked as error. Solution: When 'spelllang' contains "cjk" do not mark Asian characters as error. (Ken Takata)
2013-11-09updated for version 7.4.083v7.4.083Bram Moolenaar
Problem: It's hard to avoid adding a used pattern to the search history. Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
2013-11-09Updated runtime files.Bram Moolenaar
2013-11-09updated for version 7.4.080v7.4.080Bram Moolenaar
Problem: Missing documentation for v:hlsearch. Solution: Include the right file in the patch.
2013-11-06updated for version 7.4.073v7.4.073Bram Moolenaar
Problem: Setting undolevels for one buffer changes undo in another. Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
2013-11-05updated for version 7.4.069v7.4.069Bram Moolenaar
Problem: Cannot right shift lines starting with #. Solution: Allow the right shift when 'cino' contains #N with N > 0. (Christian Brabandt) Refactor parsing 'cino', store the values in the buffer.
2013-11-03Update runtime files.Bram Moolenaar
2013-11-02updated for version 7.4.057v7.4.057Bram Moolenaar
Problem: byteidx() does not work for composing characters. Solution: Add byteidxcomp().
2013-10-06Runtime file updates.Bram Moolenaar
2013-09-24Fix problem with 'iskeyword' in CSS syntax.Bram Moolenaar
2013-09-22updated for version 7.4.034v7.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-09-22Update runtime files. Add support for J.Bram Moolenaar
2013-09-05Updated runtime files.Bram Moolenaar
2013-08-10release version 7.4v7.4Bram Moolenaar
2013-08-03Update runtime files.Bram Moolenaar
2013-08-02updated for version 7.4b.006v7.4b.006Bram Moolenaar
Problem: Using \{n,m} in an autocommand pattern no longer works. Specifically, mutt temp files are not recognized. (Gary Johnson) Solution: Make \\\{n,m\} work.
2013-07-28Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar
2013-07-28Updated runtime files.Bram Moolenaar
2013-07-24Updated runtime files.Bram Moolenaar
2013-07-17Updated runtime files.Bram Moolenaar
2013-07-13updated for version 7.4a.015v7.4a.015Bram Moolenaar
Problem: No Japanese man pages. Solution: Add Japanese translations of man pages. (Ken Takata, Yukihiro Nakadaira, et al.)
2013-07-09Updated runtime files. Fix NL translations.Bram Moolenaar
2013-07-06Vim 7.4a BETA release.v7.4aBram Moolenaar
2013-07-06Update runtime files.Bram Moolenaar
2013-07-05A few updated runtime files.Bram Moolenaar
2013-07-04updated for version 7.3.1308v7.3.1308Bram Moolenaar
Problem: Typos in MS-Windows build settings and README. Solution: Minor changes to MS-Windows files.
2013-07-01updated for version 7.3.1287v7.3.1287Bram Moolenaar
Problem: Python SystemExit exception is not handled properly. Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken Takata)
2013-06-29Updated runtime files.Bram Moolenaar
2013-06-29updated for version 7.3.1261v7.3.1261Bram Moolenaar
Problem: A buffer-local language mapping from a keymap stops a global insert mode mapping from working. (Ron Aaron) Solution: Do not wait for more characters to be typed only when the mapping was defined with <nowait>.
2013-06-28Update runtime files. Remove duplicate tags in help.Bram Moolenaar
2013-06-26updated for version 7.3.1248v7.3.1248Bram Moolenaar
Problem: Still have old hacking code for Input Method. Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to Input Method activation. (Yukihiro Nakadaira)
2013-06-26Updated runtime files. New version of TOhtml plugin.Bram Moolenaar
2013-06-24Update runtime files.Bram Moolenaar
2013-06-15Updated runtime files.Bram Moolenaar
2013-06-12Update runtime files.Bram Moolenaar
2013-06-12updated for version 7.3.1178v7.3.1178Bram Moolenaar
Problem: Can't put all Vim config files together in one directory. Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
2013-06-12updated for version 7.3.1174v7.3.1174Bram Moolenaar
Problem: Python 2 and 3 use different ways to load modules. Solution: Use the same method. (ZyX)
2013-06-12updated for version 7.3.1172v7.3.1172Bram Moolenaar
Problem: Python 2: loading modules doesn't work well. Solution: Fix the code. Add more tests. (ZyX)
2013-06-11updated for version 7.3.1164v7.3.1164Bram Moolenaar
Problem: Can't test what is actually displayed on screen. Solution: Add the screenchar() and screenattr() functions.
2013-06-10updated for version 7.3.1163v7.3.1163Bram Moolenaar
Problem: Not easy to load Python modules. Solution: Search "python2", "python3" and "pythonx" directories in 'runtimepath' for Python modules. (ZyX)
2013-06-08updated for version 7.3.1148v7.3.1148Bram Moolenaar
Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle)
2013-06-06Updated runtime files.Bram Moolenaar
2013-06-06updated for version 7.3.1129v7.3.1129Bram Moolenaar
Problem: Can't see what pattern in syntax highlighting is slow. Solution: Add the ":syntime" command.
2013-06-02updated for version 7.3.1099v7.3.1099Bram Moolenaar
Problem: Python: Changing directory with os.chdir() causes problems for Vim's notion of directories. Solution: Add vim.chdir() and vim.fchdir(). (ZyX)
2013-06-02updated for version 7.3.1097v7.3.1097Bram Moolenaar
Problem: Python: a few recently added items are not documented. Solution: Update the documentation. (ZyX)
2013-06-02updated for version 7.3.1096v7.3.1096Bram Moolenaar
Problem: Python: popitem() was not defined in a standard way. Solution: Remove the argument from popitem(). (ZyX)
2013-06-01Updated runtime files and translations.Bram Moolenaar
2013-05-30updated for version 7.3.1067v7.3.1067Bram Moolenaar
Problem: Python: documentation lags behind. Solution: Python patch 26. (ZyX)
2013-05-30updated for version 7.3.1061v7.3.1061Bram Moolenaar
Problem: Python: Dictionary is not standard. Solution: Python patch 20: Add standard methods and fields. (ZyX)