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
Bram Moolenaar
7db5fc838a
Fix uninit memory read in undo code. Fix uint32_t in proto file.
...
A few minor changes.
2010-05-24 11:59:29 +02:00
Bram Moolenaar
55debbe384
Included patch for persistent undo. Lots of changes and added test.
2010-05-23 23:34:36 +02:00
Bram Moolenaar
b26e6327e6
Add :nbstart and :nbclose.
2010-05-22 21:34:09 +02:00
Bram Moolenaar
40e6a71c67
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
2010-05-16 22:32:54 +02:00
Bram Moolenaar
34b4daf2b7
updated for version 7.2.435
...
Problem: Crash when using bad_char_idx uninitialized. (Patrick Texier)
Solution: Don't use bad_char_idx, reproduce the ++bad argument from bad_char.
2010-05-16 13:26:25 +02:00
Bram Moolenaar
9c0044df7c
updated for version 7.2.430
...
Problem: The ++bad argument is handled wrong, resulting in an invalid
memory access.
Solution: Use the bad_char field only for the replacement character, add
bad_char_idx to store the position. (Dominique Pelle)
2010-05-14 20:41:05 +02:00
Bram Moolenaar
e685079848
updated for version 7.2.424
...
Problem: ":colorscheme" without an argument doesn't do anything.
Solution: Make it echo the current color scheme name. (partly by Christian
Brabandt)
2010-05-14 15:28:44 +02:00
Bram Moolenaar
42b4ddab95
updated for version 7.2.381
...
Problem: No completion for :behave.
Solution: Add :behave completion. Minor related fixes. (Dominique Pelle)
2010-03-02 15:56:05 +01:00
Bram Moolenaar
f86f26c06a
updated for version 7.2.353
...
Problem: No command line completion for ":profile".
Solution: Complete the subcommand and file name.
2010-02-03 15:14:22 +01:00
Bram Moolenaar
60462877cb
updated for version 7.2-270
2009-11-03 11:40:19 +00:00
Bram Moolenaar
becf428bc0
updated for version 7.2-265
2009-09-30 11:24:36 +00:00
Bram Moolenaar
fcfbc670c7
updated for version 7.2-227
2009-07-09 18:13:49 +00:00
Bram Moolenaar
cdcaa58929
updated for version 7.2-226
2009-07-09 18:06:49 +00:00
Bram Moolenaar
8e258a4a94
updated for version 7.2-223
2009-07-09 13:55:43 +00:00
Bram Moolenaar
8d5946760b
updated for version 7.2-222
2009-07-01 18:18:57 +00:00