Bram Moolenaar
1b338d2022
updated for version 7.4.411
...
Problem: "foo bar" sorts before "foo" with sort(). (John Little)
Solution: Avoid putting quotes around strings before comparing them.
2014-08-22 13:13:27 +02:00
Bram Moolenaar
b5a7a8b545
updated for version 7.4.393
...
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some
multi-byte characters are not displayed, even though the same font
in Notepad can display them. (Srinath Avadhanula)
Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro
Muraoka)
2014-08-06 14:52:30 +02:00
Bram Moolenaar
8c1329cb59
updated for version 7.4.392
...
Problem: Not easy to detect type of command line window.
Solution: Add the getcmdwintype() function. (Jacob Niehus)
2014-08-06 13:36:59 +02:00
Bram Moolenaar
6bf5548df2
updated for version 7.4.358
...
Problem: Sort is not always stable.
Solution: Add an index instead of relying on the pointer to remain the same.
Idea by Jun Takimoto.
2014-07-09 17:51:51 +02:00
Bram Moolenaar
c35e3de8cc
updated for version 7.4.351
...
Problem: sort() is not stable.
Solution: When the items are identical, compare the pointers.
2014-07-02 19:06:18 +02:00
Bram Moolenaar
e8a3492548
updated for version 7.4.341
...
Problem: sort() doesn't handle numbers well.
Solution: Add an argument to specify sorting on numbers. (Christian Brabandt)
2014-06-25 17:31:09 +02:00
Bram Moolenaar
b3414595c7
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
8502c704ba
updated for version 7.4.327
...
Problem: When 'verbose' is set to display the return value of a function,
may get E724 repeatedly.
Solution: Do not give an error for verbose messages. Abort conversion to
string after an error.
2014-06-17 12:51:16 +02:00
Bram Moolenaar
8e7048ca4b
updated for version 7.4.323
...
Problem: Substitute() with zero width pattern breaks multi-byte character.
Solution: Take multi-byte character size into account. (Yukihiro Nakadaira)
2014-06-12 18:39:22 +02:00
Bram Moolenaar
6f6c0f8085
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
2d1fe05fc0
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
82c2585eb8
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
493c178a28
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
9a665ba296
updated for version 7.4.306
...
Problem: getchar(0) does not return Esc.
Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro
Matsumoto)
2014-05-22 18:59:58 +02:00
Bram Moolenaar
cbc67723bd
updated for version 7.4.298
...
Problem: Can't have a funcref start with "t:".
Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira)
2014-05-22 14:19:56 +02:00
Bram Moolenaar
59838520c7
updated for version 7.4.286
...
Problem: Error messages are inconsistant. (ZyX)
Solution: Change "Lists" to "list".
2014-05-13 13:46:33 +02:00
Bram Moolenaar
1b1063af58
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
3ec7f4e402
updated for version 7.4.278
...
Problem: list_remove() conflicts with function defined in Sun header file.
Solution: Rename the function. (Richard Palo)
2014-05-07 17:31:37 +02:00
Bram Moolenaar
e512c8c049
updated for version 7.4.272
...
Problem: Using just "$" does not cause an error message.
Solution: Check for empty environment variable name. (Christian Brabandt)
2014-04-29 17:41:22 +02:00
Bram Moolenaar
355a95a079
updated for version 7.4.268
...
Problem: Using exists() on a funcref for a script-local function does not
work.
Solution: Translate <SNR> to the special byte sequence. Add a test.
2014-04-29 14:03:02 +02:00
Bram Moolenaar
a4f317df89
updated for version 7.4.265
...
Problem: Can't call a global function with "g:" in an expression.
Solution: Skip the "g:" when looking up the function.
2014-04-24 17:12:33 +02:00
Bram Moolenaar
eccb7fc315
updated for version 7.4.264
...
Problem: Can't define a function starting with "g:". Can't assign a
funcref to a buffer-local variable.
Solution: Skip "g:" at the start of a function name. Don't check for colons
when assigning to a variable.
2014-04-23 20:43:41 +02:00
Bram Moolenaar
163d0da508
updated for version 7.4.263
...
Problem: GCC 4.8 compiler warning for hiding a declaration (Francois Gannaz)
Solution: Remove the second declaration.
2014-04-23 19:44:30 +02:00
Bram Moolenaar
9bdfb0025c
updated for version 7.4.260
...
Problem: It is possible to define a function with a colon in the name. It
is possible to define a function with a lower case character if a
"#" appears after the name.
Solution: Disallow using a colon other than with "s:". Ignore "#" after the
name.
2014-04-23 17:43:42 +02:00
Bram Moolenaar
b21a29be56
updated for version 7.4.256
...
Problem: Using systemlist() may cause a crash and does not handle NUL
characters properly.
Solution: Increase the reference count, allocate memory by length. (Yasuhiro
Matsumoto)
2014-04-11 10:22:53 +02:00
Bram Moolenaar
7d647820ed
updated for version 7.4.249
...
Problem: Using setreg() with a list of numbers does not work.
Solution: Use a separate buffer for numbers. (ZyX)
2014-04-05 21:28:56 +02:00
Bram Moolenaar
39c29ed511
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
57ebe6e2f9
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
5a50c2255c
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
b7cb42bc38
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
41571769c9
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
6716d9af11
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
7f3be402ce
updated for version 7.4.236
...
Problem: It's not that easy to check the Vim patch version.
Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
2014-04-01 22:08:54 +02:00
Bram Moolenaar
c7f025536e
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
a1706c958e
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
a392038db5
updated for version 7.4.229
...
Problem: Using ":let" for listing variables and the second one is a curly
braces expression may fail.
Solution: Check for an "=" in a better way. (ZyX)
2014-03-30 16:49:09 +02:00
Bram Moolenaar
327aa02dda
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
f7ff6e85e8
updated for version 7.4.212
...
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
2014-03-23 15:13:05 +01:00
Bram Moolenaar
47b8342abd
updated for version 7.4.192
...
Problem: Memory leak when giving E853.
Solution: Free the argument. (Dominique Pelle)
2014-02-24 03:32:00 +01:00
Bram Moolenaar
26df092843
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
f30caaf08d
updated for version 7.4.189
...
Problem: Compiler warning for unused argument.
Solution: Add UNUSED.
2014-02-23 22:54:58 +01:00
Bram Moolenaar
9feaf6206f
updated for version 7.4.184
...
Problem: match() does not work properly with a {count} argument.
Solution: Compute the length once and update it. Quit the loop when at the
end. (Hirohito Higashi)
2014-02-22 22:18:47 +01:00
Bram Moolenaar
f31ecce97e
updated for version 7.4.166
...
Problem: Auto-loading a function for code that won't be executed.
Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto)
2014-02-05 22:13:05 +01:00
Bram Moolenaar
8af269186c
updated for version 7.4.158
...
Problem: Pattern containing \zs is not handled correctly by substitute().
Solution: Change how an empty match is skipped. (Yukihiro Nakadaira)
2014-01-23 20:09:34 +01:00
Bram Moolenaar
8822a9c367
updated for version 7.4.154
...
Problem: Still a problem with auto-loading.
Solution: Pass no_autoload to deref_func_name(). (Yukihiro Nakadaira)
2014-01-14 19:44:34 +01:00
Bram Moolenaar
063a46ba77
updated for version 7.4.151
...
Problem: Python: slices with steps are not supported.
Solution: Support slices in Python vim.List. (ZyX)
2014-01-14 16:36:51 +01:00
Bram Moolenaar
6d977d6c1c
updated for version 7.4.149
...
Problem: Get E685 error when assigning a function to an autoload variable.
(Yukihiro Nakadaira)
Solution: Instead of having a global no_autoload variable, pass an autoload
flag down to where it is used. (ZyX)
2014-01-14 15:24:39 +01:00
Bram Moolenaar
5f4c8406a2
updated for version 7.4.133
...
Problem: Clang warns for using NUL.
Solution: Change NUL to NULL. (Dominique Pelle)
2014-01-06 06:19:11 +01:00
Bram Moolenaar
959a143f2e
updated for version 7.4.129
...
Problem: getline(-1) returns zero. (mvxxc)
Solution: Return an empty string.
2013-12-14 12:17:38 +01:00
Bram Moolenaar
0f8de8dfb2
updated for version 7.4.086
...
Problem: Skipping over an expression when not evaluating it does not work
properly for dict members.
Solution: Skip over unrecognized expression. (ZyX)
2013-11-11 04:25:53 +01:00