Bram Moolenaar
e25865a7f3
updated for version 7.3.587
...
Problem: Compiler warning for local var shadowing global var.
Solution: Rename the var and move it to an inner block. (Christian Brabandt)
2012-07-06 16:22:02 +02:00
Bram Moolenaar
50a12b4078
updated for version 7.3.563
...
Problem: Can't build with tiny features.
Solution: Add #ifdef.
2012-06-20 17:54:38 +02:00
Bram Moolenaar
9e931224db
updated for version 7.3.557
...
Problem: Crash when an autocommand wipes out a buffer when it is hidden.
Solution: Restore the current window when needed. (Christian Brabandt)
2012-06-20 11:55:01 +02:00
Bram Moolenaar
a8596c4772
updated for version 7.3.551
...
Problem: When using :tablose a TabEnter autocommand is triggered too early.
(Karthick)
Solution: Don't trigger *Enter autocommands before closing the tab.
(Christian Brabandt)
2012-06-13 14:28:20 +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
1c0b03e857
updated for version 7.3.471
...
Problem: Can't abort listing placed signs.
Solution: Check "got_int". (Christian Brabandt)
2012-03-16 14:32:15 +01:00
Bram Moolenaar
5fbe699390
updated for version 7.3.469
...
Problem: Compiler warning for unused argument without some features.
Solution: Add UNUSED.
2012-03-07 22:52:36 +01:00
Bram Moolenaar
52379eadfb
updated for version 7.3.456
...
Problem: ":tab drop file" has several problems, including moving the
current window and opening a new tab for a file that already has a
window.
Solution: Refactor ":tab drop" handling. (Hirohito Higashi)
2012-02-22 19:13:08 +01:00
Bram Moolenaar
42ec656524
updated for version 7.3.449
...
Problem: Crash when a BufWinLeave autocommand closes the only other window.
(Daniel Hunt)
Solution: Abort closing a buffer when it becomes the only one.
2012-02-22 14:58:37 +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
83bac4c31a
updated for version 7.3.388
...
Problem: Crash on exit when EXITFREE is defined and using tiny features.
Solution: Check for NULL window pointer. (Dominique Pelle)
2011-12-30 13:39:10 +01:00
Bram Moolenaar
89c7122c05
updated for version 7.3.361
...
Problem: Accessing memory after it is freed when EXITFREE is defined.
Solution: Don't access curwin when firstwin is NULL. (Dominique Pelle)
2011-11-30 15:40:56 +01:00
Bram Moolenaar
ddab33232a
updated for version 7.3.312
...
Problem: Can't compile with tiny features.
Solution: Add #ifdef around win_valid().
2011-09-14 17:50:14 +02:00
Bram Moolenaar
a971b82b16
updated for version 7.3.306
...
Problem: When closing a window there is a chance that deleting a scrollbar
triggers a GUI resize, which uses the window while it is not in a
valid state.
Solution: Set the buffer pointer to NULL to be able to detect the invalid
situation. Fix a few places that used the buffer pointer
incorrectly.
2011-09-14 14:43:25 +02:00
Bram Moolenaar
b07269a548
updated for version 7.3.191
...
Problem: Still some RISC OS stuff to remove.
Solution: Remove files and lines. (Hong Xu)
Remove the 'osfiletype' option code.
2011-05-19 13:41:14 +02:00
Bram Moolenaar
1701e4069b
updated for version 7.3.175
...
Problem: When 'colorcolumn' is set locally to a window, ":new" opens a
window with the same highlighting but 'colorcolumn' is empty.
(Tyru)
Solution: Call check_colorcolumn() after clearing and copying options.
(Christian Brabandt)
2011-05-05 17:32:44 +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
b75d09d42b
updated for version 7.3.121
...
Problem: Complicated 'statusline' causes a crash. (Christian Brabandt)
Solution: Check that the number of items is not too big.
2011-02-15 14:24:46 +01:00
Bram Moolenaar
1d87f516f2
updated for version 7.3.112
...
Problem: Setting 'statusline' to "%!'asdf%' reads uninitialized memory.
Solution: Check for NUL after %.
2011-02-01 21:55:01 +01:00
Bram Moolenaar
beca055b0c
updated for version 7.3.042
...
Problem: No spell highlighting when re-using an empty buffer.
Solution: Clear the spell checking info only when clearing the options for a
buffer. (James Vega)
2010-10-27 16:18:00 +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
2f1e050414
Avoid warnings from the clang compiler. (Dominique Pelle)
2010-08-13 11:18:02 +02:00
Bram Moolenaar
09092155a6
Remove unused code.
2010-08-08 16:38:42 +02:00
Bram Moolenaar
7fd7320014
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
2010-07-25 16:58:46 +02:00
Bram Moolenaar
bed7beca58
Fix: when resetting both 'title' and 'icon' the title would be set after a
...
shell command.
Reset 'title' and 'icon' in test47 to avoid the xterm title getting messed up.
2010-07-25 13:42:29 +02:00
Bram Moolenaar
59f931ef54
Add the 'undoreload' option to be able to undo a file reload.
2010-07-24 20:27:03 +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
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
a800b42975
Add file save counter to undo information. Add undotree() function.
2010-06-27 01:15:55 +02:00
Bram Moolenaar
fd29f4628e
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
2010-06-06 16:11:09 +02:00
Bram Moolenaar
860cae1cec
Add the conceal patch from Vince Negri.
2010-06-05 23:22:07 +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
89c0ea4ea1
updated for version 7.2.375
...
Problem: ml_get errors when using ":bprevious" in a BufEnter autocmd.
(Dominique Pelle)
Solution: Clear w_valid when entering another buffer.
2010-02-24 16:58:36 +01:00
Bram Moolenaar
2660c0ea9b
updated for version 7.2.333
...
Problem: Warnings from static code analysis.
Solution: Small changes to various lines. (Dominique Pelle)
2010-01-19 14:59:56 +01:00
Bram Moolenaar
2c4278fc73
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
Bram Moolenaar
0c094b9d7f
updated for version 7.2-173
2009-05-14 20:20:33 +00:00
Bram Moolenaar
f1726cc8d6
updated for version 7.2-170
2009-05-13 18:48:16 +00:00
Bram Moolenaar
0ab2a8870c
updated for version 7.2-168
2009-05-13 10:51:08 +00:00
Bram Moolenaar
bb9c7d1cc5
updated for version 7.2-117
2009-02-21 23:03:09 +00:00
Bram Moolenaar
d7f8f5c847
updated for version 7.2-079
2009-01-06 15:14:30 +00:00
Bram Moolenaar
f4f664c50e
updated for version 7.2-062
2008-12-03 10:21:57 +00:00
Bram Moolenaar
d4153d4a62
updated for version 7.2-042
2008-11-15 15:06:17 +00:00
Bram Moolenaar
701f7afcdf
updated for version 7.2-041
2008-11-15 13:12:07 +00:00
Bram Moolenaar
9381ab7761
updated for version 7.2-034
2008-11-12 11:52:19 +00:00
Bram Moolenaar
5bd266c96d
updated for version 7.2-008
2008-09-01 15:33:17 +00:00
Bram Moolenaar
e37d50a5de
updated for version 7.2c-000
2008-08-06 17:06:04 +00:00
Bram Moolenaar
f233048a12
updated for version 7.2a
2008-06-24 20:19:36 +00:00
Bram Moolenaar
b561a6171d
updated for version 7.1-274
2008-03-12 12:46:13 +00:00