Bram Moolenaar
81cbb88872
Update runtime files. Make matchparen plugin backwards compatible.
...
Add json filetype.
2014-07-19 14:04:47 +02:00
Bram Moolenaar
f589277583
Updated runtime files.
2014-07-10 22:01:47 +02:00
Bram Moolenaar
89213905b2
Updated runtime files. Overhauled HTML indent script.
2014-07-04 16:43:17 +02:00
Bram Moolenaar
397b3e3865
updated for version 7.4.353
...
Problem: 'breakindent' doesn't work with the 'list' option.
Solution: Make it work. (Christian Brabandt)
2014-07-02 20:00:47 +02:00
Bram Moolenaar
1b9171f668
Updated runtime files.
2014-06-25 18:50:27 +02:00
Bram Moolenaar
39d6421292
updated for version 7.4.344
...
Problem: Unessecary initializations and other things related to
matchaddpos().
Solution: Code cleanup. (Alexey Radkov)
2014-06-25 18:15:22 +02:00
Bram Moolenaar
64a5c567ef
updated for version 7.4.338
...
Problem: Cannot wrap lines taking indent into account.
Solution: Add the 'breakindent' option. (many authors, final improvements by
Christian Brabandt)
2014-06-25 14:39:50 +02:00
Bram Moolenaar
4a506a793d
updated for version 7.4.336
...
Problem: Setting 'history' to a big value causes out-of-memory errors.
Solution: Limit the value to 10000. (Hirohito Higashi)
2014-06-25 11:48:54 +02:00
Bram Moolenaar
96e1ec11ad
updated for version 7.4.330
...
Problem: Using a regexp pattern to highlight a specific position can be
slow.
Solution: Add matchaddpos() to highlight specific positions efficiently.
(Alexey Radkov)
2014-06-17 17:48:32 +02:00
Bram Moolenaar
999af5d7c2
Update runtime files.
2014-06-12 21:46:14 +02:00
Bram Moolenaar
589afcfc75
updated for version 7.4.314
...
Problem: Completion messages can get in the way of a plugin.
Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
2014-05-28 21:40:52 +02:00
Bram Moolenaar
0ea3beb7e3
updated for version 7.4.313
...
Problem: Changing the return value of getpos() causes an error. (Jie Zhu)
Solution: Revert getpos() and add getcurpos().
2014-05-28 20:31:42 +02:00
Bram Moolenaar
7fb14c288b
updated for version 7.4.312
...
Problem: Cannot figure out what argument list is being used for a window.
Solution: Add the arglistid() function. (Marcin Szamotulski)
2014-05-28 18:22:57 +02:00
Bram Moolenaar
b001967241
updated for version 7.4.311
...
Problem: Can't use winrestview to only restore part of the view.
Solution: Handle missing items in the dict. (Christian Brabandt)
2014-05-28 16:47:16 +02:00
Bram Moolenaar
6a0fef14e8
updated for version 7.4.310
...
Problem: getpos()/setpos() don't include curswant.
Solution: Add a fifth number when getting/setting the cursor.
2014-05-28 14:34:46 +02:00
Bram Moolenaar
83d6328e6d
Runtime file updates.
2014-05-22 18:26:40 +02:00
Bram Moolenaar
367c81c352
Update runtime files.
2014-05-13 20:23:24 +02:00
Bram Moolenaar
09fe1ad539
updated for version 7.4.293
...
Problem: It is not possible to ignore composing characters at a specific
point in a pattern.
Solution: Add the %C item.
2014-05-13 19:37:29 +02:00
Bram Moolenaar
9968a1d725
updated for version 7.4.279
...
Problem: globpath() returns a string, making it difficult to get a list of
matches. (Greg Novack)
Solution: Add an optional argument like with glob(). (Adnan Zafar)
2014-05-07 18:35:30 +02:00
Bram Moolenaar
0da029a858
Runtime file updates.
2014-05-01 14:08:19 +02:00
Bram Moolenaar
421a5e7858
Updated runtime files.
2014-04-06 14:09:13 +02:00
Bram Moolenaar
2e12dd3e8f
Updated runtime files.
2014-04-05 22:55:53 +02:00
Bram Moolenaar
13b283f326
updated for version 7.4.248
...
Problem: Cannot distinguish between NL and NUL in output of system().
Solution: Add systemlist(). (ZyX)
2014-04-05 19:44:40 +02:00
Bram Moolenaar
f8bb9f9ddd
updated for version 7.4.247
...
Problem: When passing input to system() there is no way to keep NUL and
NL characters separate.
Solution: Optionally use a list for the system() input. (ZyX)
2014-04-05 18:55:46 +02:00
Bram Moolenaar
dd67b8eb8a
updated for version 7.4.243
...
Problem: Cannot use setreg() to add text that includes a NUL.
Solution: Make setreg() accept a list.
2014-04-02 22:17:10 +02:00
Bram Moolenaar
1a3d0c47ac
updated for version 7.4.242
...
Problem: getreg() does not distinguish between a NL used for a line break
and a NL used for a NUL character.
Solution: Add another argument to return a list. (ZyX)
2014-04-02 19:55:10 +02:00
Bram Moolenaar
9be58812a3
updated for version 7.4.241
...
Problem: The string returned by submatch() does not distinguish between a
NL from a line break and a NL that stands for a NUL character.
Solution: Add a second argument to return a list. (ZyX)
2014-04-02 19:00:58 +02:00
Bram Moolenaar
54b0b2be06
updated for version 7.4.237
...
Problem: When some patches was not included has("patch-7.4.123") may return
true falsely.
Solution: Check for the specific patch number.
2014-04-02 12:12:08 +02:00
Bram Moolenaar
a5cac34bde
updated for version 7.4.235
...
Problem: It is not easy to get the full path of a command.
Solution: Add the exepath() function.
2014-04-01 21:00:59 +02:00
Bram Moolenaar
5a99676871
updated for version 7.4.234
...
Problem: Can't get the command that was used to start Vim.
Solution: Add v:progpath. (Viktor Kojouharov)
2014-04-01 19:55:49 +02:00
Bram Moolenaar
2dd490411c
updated for version 7.4.230
...
Problem: Error when using ":options".
Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
2014-04-01 12:26:46 +02:00
Bram Moolenaar
7f2a8854f5
Update runtime files.
2014-03-27 22:30:07 +01:00
Bram Moolenaar
11332cbd4c
updated for version 7.4.218
...
Problem: It's not easy to remove duplicates from a list.
Solution: Add the uniq() function. (LCD)
2014-03-25 18:24:23 +01:00
Bram Moolenaar
9fe8c9fc52
updated for version 7.4.215
...
Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is
the current buffer. (Liang Li)
Solution: Do not reload the current buffer on a split command.
2014-03-25 13:03:48 +01:00
Bram Moolenaar
206f1fe028
updated for version 7.4.213
...
Problem: It's not possible to open a new buffer without creating a swap
file.
Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
2014-03-23 16:04:02 +01:00
Bram Moolenaar
1986c3419e
Updated runtime files.
2014-03-22 21:02:50 +01:00
Bram Moolenaar
2817291f94
updated for version 7.4.201
...
Problem: 'lispwords' is a global option.
Solution: Make 'lispwords' global-local. (Sung Pae)
2014-03-12 18:55:58 +01:00
Bram Moolenaar
9a7f1e7c2a
updated for version 7.4.197
...
Problem: Various problems on VMS.
Solution: Fix several VMS problems. (Zoltan Arpadffy)
2014-03-12 16:51:55 +01:00
Bram Moolenaar
7b938a31d4
Updated runtime files.
2014-03-08 18:38:28 +01:00
Bram Moolenaar
589c63479c
Update runtime files. Add Euphoria syntax files.
2014-02-24 02:51:51 +01:00
Bram Moolenaar
b134376d8d
updated for version 7.4.191
...
Problem: Escaping a file name for shell commands can't be done without a
function.
Solution: Add the :S file name modifier.
2014-02-23 23:39:13 +01:00
Bram Moolenaar
e0e5dfe614
Update runtime files. Add support for systemverilog.
2014-02-11 19:15:50 +01:00
Bram Moolenaar
cb537adb9e
updated for version 7.4.165
...
Problem: By default, after closing a buffer changes can't be undone.
Solution: In the example vimrc file set 'undofile'.
2014-02-05 22:02:01 +01:00
Bram Moolenaar
68ec8224a5
Updated runtime files.
2014-01-23 14:24:41 +01:00
Bram Moolenaar
7f1bf4156d
updated for version 7.4.145
...
Problem: getregtype() does not return zero for unknown register.
Solution: Adjust documention: return empty string for unknown register.
Check the register name to be valid. (Yukihiro Nakadaira)
2014-01-14 12:33:36 +01:00
Bram Moolenaar
a4484fcf09
Updated runtime files.
2014-01-07 06:09:28 +01:00
Bram Moolenaar
01331884a6
Runtime file updates.
2013-12-15 10:02:33 +01:00
Bram Moolenaar
277ddd53b1
Updated runtime files.
2013-12-11 18:53:29 +01:00
Bram Moolenaar
cc7d08e6c7
updated for version 7.4.109
...
Problem: ColorScheme autocommand matches with the current buffer name.
Solution: Match with the colorscheme name. (Christian Brabandt)
2013-11-28 18:53:52 +01:00
Bram Moolenaar
27b9026672
Updated runtime files.
2013-11-28 13:53:34 +01:00