Bram Moolenaar
dfef15481d
updated for version 7.3.600
...
Problem: <f-args> is not expanded properly with DBCS encoding.
Solution: Skip over character instead of byte. (Yukihiro Nakadaira)
2012-07-10 19:25:10 +02:00
Bram Moolenaar
8cb8dca2f0
updated for version 7.3.591
...
Problem: Can only move to a tab by absolute number.
Solution: Move a number of tabs to the left or the right. (Lech Lorens)
2012-07-06 18:27:39 +02:00
Bram Moolenaar
362ce48048
updated for version 7.3.545
...
Problem: When closing a window or buffer autocommands may close it too,
causing problems for where the autocommand was invoked from.
Solution: Add the w_closing and b_closing flags. When set disallow ":q" and
":close" to prevent recursive closing.
2012-06-06 19:02:45 +02:00
Bram Moolenaar
3b53dfb3b0
updated for version 7.3.544
...
Problem: There is no good way to close a quickfix window when closing the
last ordinary window.
Solution: Add the QuitPre autocommand.
2012-06-06 18:03:07 +02:00
Bram Moolenaar
8134039744
updated for version 7.3.541
...
Problem: When joining lines comment leaders need to be removed manually.
Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-06-06 16:12:59 +02:00
Bram Moolenaar
5ae636b9bb
updated for version 7.3.514
...
Problem: No completion for :history command.
Solution: Add the completion and update the docs. Also fix ":behave"
completion. (Dominique Pelle)
2012-04-30 18:48:53 +02:00
Bram Moolenaar
60542ac9fd
updated for version 7.3.442
...
Problem: Still read modelines for ":doautocmd".
Solution: Move check for <nomodeline> to separate function.
2012-02-12 20:14:01 +01:00
Bram Moolenaar
7d550fbde5
updated for version 7.3.419
...
Problem: DBCS encoding in a user command does not always work.
Solution: Skip over DBCS characters. (Yasuhiro Matsumoto)
2012-01-26 20:41:26 +01:00
Bram Moolenaar
b38e9ab4af
updated for version 7.3.374
...
Problem: ++encoding does not work properly.
Solution: Recognize ++encoding before ++enc. (Charles Cooper)
2011-12-14 14:49:45 +01:00
Bram Moolenaar
e3cc6d4223
updated for version 7.3.346
...
Problem: It's hard to test netbeans commands.
Solution: Process netbeans commands after :sleep. (Xavier de Gaye)
2011-10-20 21:58:34 +02:00
Bram Moolenaar
250912918e
updated for version 7.3.329
...
Problem: When skipping over code from ":for" to ":endfor" get an error for
calling a dict function. (Yasuhiro Matsumoto)
Solution: Ignore errors when skipping over :call command.
2011-09-30 18:35:57 +02:00
Bram Moolenaar
a6f4d61af7
updated for version 7.3.320
...
Problem: When a 0xa0 character is in a sourced file the error message for
unrecognized command does not show the problem.
Solution: Display 0xa0 as <a0>.
2011-09-21 19:10:46 +02:00
Bram Moolenaar
e9edd7fbdd
updated for version 7.3.257
...
Problem: Not all completions are available to user commands.
Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique
Pelle)
2011-07-20 16:37:24 +02:00
Bram Moolenaar
b560983d2f
updated for version 7.3.255
...
Problem: When editing a file such as "File[2010-08-15].vim" an E16 error is
given. (Manuel Stol)
Solution: Don't give an error for failing to compile the regexp.
2011-07-20 15:04:58 +02:00
Bram Moolenaar
12bde494a5
updated for version 7.3.217
...
Problem: Inside an "if" a ":wincmd" causes problems.
Solution: When skipping commands let ":wincmd" skip over its argument.
2011-06-13 01:19:56 +02:00
Bram Moolenaar
a660dc8f30
updated for version 7.3.200
...
Problem: CTRL-D doesn't complete :lang.
Solution: Add the missing part of the change. (Dominique Pelle)
2011-05-25 12:51:22 +02:00
Bram Moolenaar
9bd1a7ea28
updated for version 7.3.193
...
Problem: In the command line window ":close" doesn't work properly. (Tony
Mechelynck)
Solution: Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene
David)
2011-05-19 14:50:54 +02:00
Bram Moolenaar
e60acc180b
updated for version 7.3.187
...
Problem: The RISC OS port has obvious errors and is not being maintained.
Solution: Remove the RISC OS files and code.
2011-05-10 16:41:25 +02:00
Bram Moolenaar
85de20665f
updated for version 7.3.171
...
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)
2011-05-05 14:26:41 +02:00
Bram Moolenaar
d9462e394a
updated for version 7.3.161
...
Problem: Items on the stack may be too big.
Solution: Make items static or allocate them.
2011-04-11 21:35:11 +02:00
Bram Moolenaar
ef9d6aa70d
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
2011-04-11 16:56:35 +02:00
Bram Moolenaar
f63c49d4e9
updated for version 7.3.138
...
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov)
Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
2011-03-03 15:54:50 +01:00
Bram Moolenaar
48ac02c9eb
updated for version 7.3.100
...
Problem: When using :normal v:count isn't set.
Solution: Call normal_cmd() with toplevel set to TRUE.
2011-01-17 19:50:06 +01:00
Bram Moolenaar
94950a9ee0
updated for version 7.3.072
...
Problem: Can't complete file names while ignoring case.
Solution: Add 'wildignorecase'.
2010-12-02 16:01:29 +01:00
Bram Moolenaar
4dbbff57ba
updated for version 7.3.065
...
Problem: Can't get current line number in a source file.
Solution: Add the <slnum> item, similar to <sfile>.
2010-11-24 15:50:59 +01:00
Bram Moolenaar
bf55e1442d
updated for version 7.3.056
...
Problem: "getline" argument in do_cmdline() shadows global.
Solution: Rename the argument.
Files: src/ex_docmd.c
2010-11-16 11:32:01 +01:00
Bram Moolenaar
a3e7b1f42b
updated for version 7.3.054
...
Problem: Can define a user command for :Print, but it doesn't work. (Aaron
Thoma)
Solution: Let user command :Print overrule the builtin command (Christian
Brabandt) Disallow :X and :Next as a user defined command.
2010-11-10 19:00:01 +01:00
Bram Moolenaar
78f74a91bf
updated for version 7.3.025
...
Problem: ":mksession" does not square brackets escape file name properly.
Solution: Improve escapging of file names. (partly by Peter Odding)
2010-10-13 17:50:07 +02:00
Bram Moolenaar
3368ea2152
updated for version 7.3.008
...
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset.
Solution: Reset 'cursorbind'.
2010-09-21 16:56:35 +02:00
Bram Moolenaar
c24b6977a1
updated for version 7.3.002
...
Problem: ":find" completion doesn't work when halfway an environment
variable. (Dominique Pelle)
Solution: Only use in-path completion when expanding file names. (Nazri
Ramliy)
2010-08-16 22:34:29 +02:00
Bram Moolenaar
c0cba4d9b1
Fixed: on MS-Windows completion of shell commands didn't work.
2010-08-07 17:07:21 +02:00
Bram Moolenaar
a26559b553
Support syntax and filetype completion for user commands. (Christian Brabandt)
2010-07-31 14:59:19 +02:00
Bram Moolenaar
1587a1e37d
Add completion for ":ownsyntax" and improve completion for ":filetype".
...
(Dominique Pelle)
2010-07-29 20:59:59 +02:00
Bram Moolenaar
904fb861e7
Add completion for :setfiletype. (Dominique Pelle)
2010-07-25 13:53:11 +02:00
Bram Moolenaar
22b306f3e0
Add completion for :lmap and :lunmap.
2010-07-25 13:50:33 +02:00
Bram Moolenaar
b65905262b
Fix that :py3file was not working.
2010-07-21 16:00:43 +02:00
Bram Moolenaar
49771f4fb0
Change 'cryptmethod' from a number to a string option. Make it global-local.
2010-07-20 17:32:38 +02:00
Bram Moolenaar
368373e909
Rename some "python3" symbols to "py3", as the command name.
...
Documentation updates.
2010-07-19 20:46:22 +02:00
Bram Moolenaar
6df6f47d6d
Make automatic prototype generation work with more interfaces.
2010-07-18 18:04:50 +02:00
Bram Moolenaar
85363abfb1
Build problem when using all interfaces except Lua.
2010-07-18 13:58:26 +02:00
Bram Moolenaar
55d5c0348c
Whitespace cleanup.
2010-07-17 23:52:29 +02:00
Bram Moolenaar
bd5e15fd5c
Added support for Python 3. (Roland Puntaier)
2010-07-17 21:19:38 +02:00
Bram Moolenaar
0ba042961f
Added Lua interfae. (Luis Carvalho)
2010-07-14 23:23:17 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
893eaab41f
Make joining a range of lines much faster. (Milan Vancura)
2010-07-10 17:51:46 +02:00
Bram Moolenaar
730cde924c
Added ":earlier 1f" and ":later 1f".
2010-06-27 05:18:54 +02:00
Bram Moolenaar
51f53dfe17
Fix that :mksession may generate "2argu" even though there is no such
...
argument. (Peter Odding)
2010-06-26 05:25:54 +02:00
Bram Moolenaar
883f5d08e4
Command line completion for :ownsyntax. (Dominique Pelle)
2010-06-21 06:24:34 +02:00
Bram Moolenaar
860cae1cec
Add the conceal patch from Vince Negri.
2010-06-05 23:22:07 +02:00
Bram Moolenaar
6ed8ed84f9
Made reading/writing undo info a bit more robust.
2010-05-30 20:40:11 +02:00