Bram Moolenaar
165bc69d1b
patch 7.4.793
...
Problem: Can't specify when not to ring the bell.
Solution: Add the 'belloff' option. (Christian Brabandt)
2015-07-21 17:53:25 +02:00
Bram Moolenaar
73284b973a
patch 7.4.722
...
Problem: 0x202f is not recognized as a non-breaking space character.
Solution: Add 0x202f to the list. (Christian Brabandt)
2015-05-04 17:28:22 +02:00
Bram Moolenaar
1510f996c5
patch 7.4.712
...
Problem: Missing change in another file.
Solution: Also change message.c
2015-04-22 22:18:22 +02:00
Bram Moolenaar
caad4f0a0b
updated for version 7.4.553
...
Problem: Various small issues.
Solution: Fix those issues.
2014-12-17 14:36:14 +01:00
Bram Moolenaar
a2aa31a926
updated for version 7.4.188
...
Problem: SIZEOF_LONG clashes with similar defines in header files.
Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
2014-02-23 22:52:40 +01:00
Bram Moolenaar
332a2cadcd
updated for version 7.4.065
...
Problem: When recording, the character typed at the hit-enter prompt is
recorded twice. (Urtica Dioica)
Solution: Avoid recording the character twice. (Christian Brabandt)
2013-11-04 02:01:01 +01:00
Bram Moolenaar
b09129684b
updated for version 7.4b.021
...
Problem: Pressing "u" after an external command results in multiple
press-enter messages. (glts)
Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian
Brabandt)
2013-08-09 20:38:26 +02:00
Bram Moolenaar
1a4a75c5dc
updated for version 7.4a.047
...
Problem: Some comments are not so nice.
Solution: Change the comments.
2013-07-28 16:03:06 +02:00
Bram Moolenaar
3798519b9e
updated for version 7.3.1143
...
Problem: When mapping NUL it is displayed as an X.
Solution: Check for KS_ZERO instead of K_ZERO. (Yasuhiro Matsumoto)
2013-06-07 19:53:10 +02:00
Bram Moolenaar
ec38d6932c
updated for version 7.3.912
...
Problem: Typing a ":" command at the hit-enter dialog does not work if the
"file changed" dialog happens next.
Solution: Check for changed files before giving the hit-enter dialog.
2013-04-24 15:12:32 +02:00
Bram Moolenaar
b59494cab1
updated for version 7.3.868
...
Problem: When at the hit-return prompt and using "k" while no text has
scrolled off screen, then using "j", an empty line is displayed.
Solution: Only act on "k" when text scrolled off screen. Also accept
page-up and page-down. (cptstubing)
2013-03-19 13:56:08 +01:00
Bram Moolenaar
3ab72c5c72
updated for version 7.3.713
...
Problem: printf() can only align to bytes, not characters.
Solution: Add the "S" item. (Christian Brabandt)
2012-11-14 18:10:56 +01:00
Bram Moolenaar
6df5e5ae42
updated for version 7.3.483
...
Problem: More prompt shows up too often.
Solution: Instead of adding a line break, only start a new line in the
message history. (Christian Brabandt)
2012-03-28 16:49:29 +02:00
Bram Moolenaar
38f5f9529a
updated for version 7.3.413
...
Problem: Build warnings on MS-Windows.
Solution: Add type casts. (Mike Williams)
2012-01-26 13:01:59 +01:00
Bram Moolenaar
33c1b198c6
updated for version 7.3.410
...
Problem: Compiler error for // comment. (Joachim Schmitz)
Solution: Turn into /* comment */.
2012-01-23 20:48:40 +01:00
Bram Moolenaar
f31b764c23
updated for version 7.3.407
...
Problem: ":12verbose call F()" may duplicate text while trying to truncate.
(Thinca)
Solution: Only truncate when there is not enough room. Also check the byte
length of the buffer.
2012-01-20 20:44:43 +01:00
Bram Moolenaar
70b2a56d5a
updated for version 7.3.400
...
Problem: Compiler warnings for shadowed variables.
Solution: Remove or rename the variables.
2012-01-10 22:26:17 +01:00
Bram Moolenaar
5d6f75e17e
updated for version 7.3.389
...
Problem: After typing at a prompt the "MORE" message appears too soon.
Solution: reset lines_left in msg_end_prompt(). (Eswald)
2011-12-30 14:14:29 +01:00
Bram Moolenaar
b5b5b895f7
updated for version 7.3.308
...
Problem: Writing to 'verbosefile' has problems, e.g. for :highlight.
Solution: Do not use a separate verbose_write() function but write with the
same code that does redirecting. (Yasuhiro Matsumoto)
2011-09-14 15:39:29 +02:00
Bram Moolenaar
b8bf541f89
updated for version 7.3.284
...
Problem: The str2special() function doesn't handle multi-byte characters
properly.
Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
2011-08-17 20:33:22 +02:00
Bram Moolenaar
fd30cd41dc
updated for version 7.3.139
...
Problem: When 'lazyredraw' is set ":ver" output can't be read.
Solution: Don't redraw the screen when at a prompt or command line.
2011-03-22 13:07:26 +01:00
Bram Moolenaar
acf1728ef5
updated for version 7.3.110
...
Problem: The "nbsp" item in 'listchars' isn't used for ":list".
Solution: Make it work. (Christian Brabandt)
2011-02-01 17:12:25 +01:00
Bram Moolenaar
d2c340a6a6
updated for version 7.3.102
...
Problem: When using ":make", typing the next command and then getting the
"reload" prompt the next command is (partly) eaten by the reload
prompt.
Solution: Accept ':' as a special character at the reload prompt to accept
the default choice and execute the command.
2011-01-17 20:08:11 +01:00
Bram Moolenaar
fd0e75683f
updated for version 7.3.098
...
Problem: Function that ignores error still causes called_emsg to be set.
E.g. when expand() fails the status line is disabled.
Solution: Move check for emsg_not_now() up. (James Vega)
2011-01-04 19:25:50 +01:00
Bram Moolenaar
bd74325960
updated for version 7.3.032
...
Problem: maparg() doesn't return the flags, such as <buffer>, <script>,
<silent>. These are needed to save and restore a mapping.
Solution: Improve maparg(). (also by Christian Brabandt)
2010-10-20 21:23:33 +02:00
Bram Moolenaar
e4ce65d445
After entering a crypt key would need to hit return to continue.
...
When silencing a message it would still clear a kept message.
2010-08-04 20:12:32 +02:00
Bram Moolenaar
8d9b40e71a
Add support for horizontal scroll wheel. (Bjorn Winckler)
2010-07-25 15:49:07 +02:00
Bram Moolenaar
cc448b373d
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
2010-07-14 16:52:17 +02:00
Bram Moolenaar
a800b42975
Add file save counter to undo information. Add undotree() function.
2010-06-27 01:15:55 +02:00
Bram Moolenaar
0eda7ac7f8
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
2010-06-26 05:38:18 +02:00
Bram Moolenaar
bbc936bebe
updated for version 7.2-221
2009-07-01 16:04:58 +00:00
Bram Moolenaar
2c4278fc73
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
Bram Moolenaar
77ab2801c7
updated for version 7.2-152
2009-04-22 12:44:48 +00:00
Bram Moolenaar
51306d2d8f
updated for version 7.2-127
2009-02-24 03:38:04 +00:00
Bram Moolenaar
2a9e4df9fb
updated for version 7.2-118
2009-02-21 23:59:19 +00:00
Bram Moolenaar
8de49e183d
updated for version 7.2-107
2009-02-11 17:47:54 +00:00
Bram Moolenaar
c937213e08
updated for version 7.2-081
2009-01-13 15:38:37 +00:00
Bram Moolenaar
fe86f2d7cd
updated for version 7.2-055
2008-11-28 20:29:07 +00:00
Bram Moolenaar
c236c16d08
updated for version 7.2b-000
2008-07-13 17:41:49 +00:00
Bram Moolenaar
b3c722a015
updated for version 7.2a-015
2008-07-06 17:16:02 +00:00
Bram Moolenaar
89bf0927af
updated for version 7.2a-010
2008-06-29 14:16:06 +00:00
Bram Moolenaar
c4a87015f7
updated for version 7.2a-008
2008-06-28 14:10:11 +00:00
Bram Moolenaar
a7241f5f19
updated for version 7.2a
2008-06-24 20:39:31 +00:00
Bram Moolenaar
9f10875ed0
updated for version 7.1-160
2007-11-24 14:44:58 +00:00
Bram Moolenaar
5c2e0f27c5
updated for version 7.1-106
2007-09-13 20:05:18 +00:00
Bram Moolenaar
c27c8d5c59
updated for version 7.1-096
2007-09-06 10:54:51 +00:00
Bram Moolenaar
1b0b07f29e
updated for version 7.1-056
2007-08-07 20:00:31 +00:00
Bram Moolenaar
57b7fe808f
updated for version 7.1-053
2007-08-05 17:20:43 +00:00
Bram Moolenaar
6a51606966
updated for version 7.1-020
2007-07-05 08:11:42 +00:00
Bram Moolenaar
f1dc4965b5
updated for version 7.1b
2007-05-10 16:50:23 +00:00