Bram Moolenaar
4a3aef7b28
updated for version 7.4a.030
...
Problem: Missing find_win_for_buf(). (toothpik)
Solution: Add missing changes.
2013-07-17 19:12:57 +02:00
Bram Moolenaar
630a730f9b
updated for version 7.3.1265
...
Problem: Accepting "Vim:" for a modeline causes errors too often.
Solution: Require "Vim:" to be followed by "set".
2013-06-29 15:07:22 +02:00
Bram Moolenaar
c14621eafb
updated for version 7.3.1249
...
Problem: Modeline not recognized when using "Vim" instead of "vim".
Solution: Also accept "Vim".
2013-06-26 20:04:35 +02:00
Bram Moolenaar
8c0e322f18
updated for version 7.3.1213
...
Problem: Can't build with small features and Python.
Solution: Adjust #ifdefs.
2013-06-16 17:32:40 +02:00
Bram Moolenaar
473de61b04
updated for version 7.3.1149
...
Problem: New regexp engine: Matching plain text could be faster.
Solution: Detect a plain text match and handle it specifically. Add
vim_regfree().
2013-06-08 18:19:48 +02:00
Bram Moolenaar
2358403363
updated for version 7.3.1144
...
Problem: "RO" is not translated everywhere.
Solution: Put inside _(). (Sergey Alyoshin)
2013-06-07 20:17:11 +02:00
Bram Moolenaar
49e649fc2e
updated for version 7.3.926
...
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter
on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of
events for :tablose and :tabnew.
Solution: Fix these autocommand events. (Zyx)
2013-05-06 04:50:35 +02:00
Bram Moolenaar
84a05acc8c
updated for version 7.3.925
...
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
2013-05-06 04:24:17 +02:00
Bram Moolenaar
567199b68f
updated for version 7.3.916
...
Problem: Using freed memory when pasting with the mouse (Issue 130).
Solution: Get the byte value early. (hint by Dominique Pelle)
2013-04-24 16:52:36 +02:00
Bram Moolenaar
429fa85392
updated for version 7.3.893
...
Problem: Crash when using b:, w: or t: after closing the buffer, window or
tabpage.
Solution: Allocate the dictionary instead of having it part of the
buffer/window/tabpage struct. (Yukihiro Nakadaira)
2013-04-15 12:27:36 +02:00
Bram Moolenaar
71afbfe6cd
updated for version 7.3.872
...
Problem: On some systems case of file names is always ignored, on others
never.
Solution: Add the 'fileignorecase' option to control this at runtime.
Implies 'wildignorecase'.
2013-03-19 16:49:16 +01:00
Bram Moolenaar
0c279bbb9c
updated for version 7.3.869
...
Problem: bufwinnr() matches buffers in other tabs.
Solution: For bufwinnr() and ? only match buffers in the current tab.
(Alexey Radkov)
2013-03-19 14:25:54 +01:00
Bram Moolenaar
6d47df7ca0
updated for version 7.3.822
...
Problem: Crash when accessing freed buffer.
Solution: Get 'textwidth' in caller of enter_buffer(). (Christian Brabandt)
2013-02-17 15:45:37 +01:00
Bram Moolenaar
fffcfea984
updated for version 7.3.804
...
Problem: Compiler warning for tiny build. (Tony Mechelynck)
Solution: Add #ifdefs around variable.
2013-02-06 18:45:01 +01:00
Bram Moolenaar
9c2e6cc6ed
updated for version 7.3.799
...
Problem: The color column is not correct when entering a buffer. (Ben
Fritz)
Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian
Brabandt)
2013-02-06 12:14:48 +01:00
Bram Moolenaar
0ac24e1ef4
updated for version 7.3.718
...
Problem: When re-using the current buffer the buffer-local options stay.
Solution: Re-initialize the buffer-local options. (Christian Brabandt)
2012-11-20 12:16:58 +01:00
Bram Moolenaar
e1704bada4
updated for version 7.3.677
...
Problem: buf_spname() is used inconsistently.
Solution: Make the return type a char_u pointer. Check the size of the
returned string.
2012-10-03 18:25:00 +02:00
Bram Moolenaar
ec3cfeb199
updated for version 7.3.675
...
Problem: Using uninitialized memory with very long file name.
Solution: Put NUL after text when it is truncated. (ZyX)
2012-10-03 17:12:47 +02:00
Bram Moolenaar
2c66669c33
updated for version 7.3.648
...
Problem: Crash when using a very long file name. (ZyX)
Solution: Properly check length of buffer space.
2012-09-05 13:30:40 +02:00
Bram Moolenaar
bdb620560b
updated for version 7.3.603
...
Problem: It is possible to add replace builtin functions by calling
extend() on g:.
Solution: Add a flag to a dict to indicate it is a scope. Check for
existing functions. (ZyX)
2012-07-16 17:31:53 +02:00
Bram Moolenaar
f65e5667df
updated for version 7.3.596
...
Problem: Can't remove all signs for a file or buffer.
Solution: Support "*" for the sign id. (Christian Brabandt)
2012-07-10 15:18:22 +02:00
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