summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* More runtime file fixes for 'compatible' mode.Bram Moolenaar2012-05-0152-59/+264
|
* updated for version 7.3.514v7.3.514Bram Moolenaar2012-04-302-6/+8
| | | | | | Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle)
* Fixed compatible mode in most runtime files.Bram Moolenaar2012-04-3037-46/+226
|
* Updated runtime files, include fixes for line continuation.Bram Moolenaar2012-04-266-10/+14
|
* Updated runtime files.Bram Moolenaar2012-04-2517-116/+175
|
* Updated runtime files.Bram Moolenaar2012-04-1316-50/+74
|
* Updated runtime files.Bram Moolenaar2012-04-0510-1234/+699
|
* updated for version 7.3.492v7.3.492Bram Moolenaar2012-04-051-2/+18
| | | | | Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens)
* updated for version 7.3.490v7.3.490Bram Moolenaar2012-04-051-19/+115
| | | | | Problem: Member confusion in Lua interface. Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho)
* Updated runtime files.Bram Moolenaar2012-03-2816-102/+179
|
* Updated runtime files. Add Dutch translations.Bram Moolenaar2012-03-1146-77/+157
|
* updated for version 7.3.468v7.3.468Bram Moolenaar2012-03-071-1/+4
| | | | | Problem: For some compilers the error file is not easily readable. Solution: Use QuickFixCmdPre for more commands. (Marcin Szamotulski)
* updated for version 7.3.465v7.3.465Bram Moolenaar2012-03-071-6/+8
| | | | | | Problem: Cannot get file name with newline from glob(). Solution: Add argument to glob() and expand() to indicate they must return a list. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2012-02-2212-120/+218
|
* updated for version 7.3.446v7.3.446Bram Moolenaar2012-02-201-2/+16
| | | | | Problem: Win32: External commands with special characters don't work. Solution: Add the 'shellxescape' option.
* Update runtime files.Bram Moolenaar2012-02-1320-285/+261
|
* updated for version 7.3.443v7.3.443Bram Moolenaar2012-02-121-7/+8
| | | | | Problem: MS-Windows: 'shcf' and 'shellxquote' defaults are not very good. Solution: Make a better guess when 'shell' is set to "cmd.exe". (Ben Fritz)
* updated for version 7.3.442v7.3.442Bram Moolenaar2012-02-121-6/+8
| | | | | Problem: Still read modelines for ":doautocmd". Solution: Move check for <nomodeline> to separate function.
* updated for version 7.3.438v7.3.438Bram Moolenaar2012-02-121-6/+7
| | | | | Problem: There is no way to avoid ":doautoall" reading modelines. Solution: Add the <nomodeline> argument. Adjust documentation.
* updated for version 7.3.430v7.3.430Bram Moolenaar2012-02-051-3/+5
| | | | | | | Problem: When a custom filetype detection uses "augroup END" the conf fileytpe detection does not have the filetypedetect group. Solution: Always end the group and include filetypedetect in the conf autocommand. (Lech Lorens)
* updated for version 7.3.423v7.3.423Bram Moolenaar2012-02-0438-341/+816
| | | | | | | Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
* Update runtime files.Bram Moolenaar2012-01-2041-1242/+1443
|
* Updated runtime files.Bram Moolenaar2012-01-1024-103/+278
|
* Updated runtime files.Bram Moolenaar2011-12-3035-251/+453
|
* Update runtime files.Bram Moolenaar2011-12-1436-237/+908
|
* updated for version 7.3.377v7.3.377Bram Moolenaar2011-12-141-4/+36
| | | | | Problem: No support for bitwise AND, OR, XOR and invert. Solution: Add add(), or(), invert() and xor() functions.
* Updated runtime files.Bram Moolenaar2011-10-2025-354/+841
|
* updated for version 7.3.346v7.3.346Bram Moolenaar2011-10-201-5/+16
| | | | | Problem: It's hard to test netbeans commands. Solution: Process netbeans commands after :sleep. (Xavier de Gaye)
* updated for version 7.3.340v7.3.340Bram Moolenaar2011-10-201-3/+5
| | | | | | Problem: When 'verbosefile' is set ftplugof.vim can give an error. Solution: Only remove filetypeplugin autocommands when they exist. (Yasuhiro Matsumoto)
* Updated a few runtime files.Bram Moolenaar2011-09-218-122/+311
|
* Updated runtime files.Bram Moolenaar2011-09-1435-296/+902
|
* updated for version 7.3.259v7.3.259Bram Moolenaar2011-07-201-4/+2
| | | | | Problem: Equivalence classes only work for latin characters. Solution: Add the Unicode equivalence characters. (Dominique Pelle)
* updated for version 7.3.257v7.3.257Bram Moolenaar2011-07-201-0/+4
| | | | | | Problem: Not all completions are available to user commands. Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique Pelle)
* Updated runtime files.Bram Moolenaar2011-07-1818-126/+156
| | | | Add missing test82 files.
* updated for version 7.3.235v7.3.235Bram Moolenaar2011-06-262-2/+8
| | | | | Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2011-06-1947-535/+938
|
* updated for version 7.3.224v7.3.224Bram Moolenaar2011-06-191-2/+5
| | | | | Problem: Can't pass dict to sort function. Solution: Add the optional {dict} argument to sort(). (ZyX)
* updated for version 7.3.210v7.3.210Bram Moolenaar2011-06-122-0/+19
| | | | | Problem: Can't always find the file when using cscope. Solution: Add the 'cscoperelative' option. (Raghavendra D Prabhu)
* updated for version 7.3.203v7.3.203Bram Moolenaar2011-05-251-1/+30
| | | | | Problem: MS-Windows: Can't run an external command without a console window. Solution: Support ":!start /b cmd". (Xaizek)
* updated for version 7.3.202v7.3.202Bram Moolenaar2011-05-251-7/+58
| | | | | Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
* updated for version 7.3.196v7.3.196Bram Moolenaar2011-05-193-1/+15
| | | | | Problem: Can't intercept a character that is going to be inserted. Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
* Updated runtime files.Bram Moolenaar2011-05-1912-95/+718
|
* Updated runtime files.Bram Moolenaar2011-05-1015-249/+514
|
* updated for version 7.3.187v7.3.187Bram Moolenaar2011-05-101-313/+3
| | | | | Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
* updated for version 7.3.171v7.3.171Bram Moolenaar2011-05-051-2/+4
| | | | | | | Problem: When the clipboard isn't supported: ":yank*" gives a confusing error message. Solution: Specifically mention that the register name is invalid. (Jean-Rene David)
* Updated runtime files.Bram Moolenaar2011-04-2824-133/+501
|
* Updated runtime files.Bram Moolenaar2011-04-0120-921/+1391
|
* Updated runtime file. Fix Italian translations.Bram Moolenaar2011-03-227-290/+274
|
* updated for version 7.3.141v7.3.141Bram Moolenaar2011-03-221-0/+12
| | | | | Problem: When a key code is not set get a confusing error message. Solution: Change the error message to say the key code is not set.
* Updated runtime files.Bram Moolenaar2011-03-2218-102/+558
|