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
6fa41fb374
updated for version 7.3.969
...
Problem: Can't built with Python 3 and without Python 2.
Solution: Adjust #ifdef. (Xavier de Gaye)
2013-05-18 20:55:35 +02:00
Bram Moolenaar
105bc355a6
updated for version 7.3.963
...
Problem: Setting curbuf without curwin causes trouble.
Solution: Add switch_buffer() and restore_buffer(). Block autocommands to
avoid trouble.
2013-05-17 16:03:57 +02:00
Bram Moolenaar
07729b25bf
updated for version 7.3.960
...
Problem: Compiler warning for unused variable.
Solution: Put declaration in #ifdef.
2013-05-15 23:13:10 +02:00
Bram Moolenaar
5e538ecd5e
updated for version 7.3.949
...
Problem: Python: no easy access to tabpages.
Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
2013-05-15 15:12:29 +02:00
Bram Moolenaar
6d21645f46
updated for version 7.3.938
...
Problem: Python: not easy to get to window number.
Solution: Add vim.window.number. (ZyX)
2013-05-12 19:00:41 +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
4c7e9db0d6
updated for version 7.3.902
...
Problem: When deleting last buffer in other tab the tabline is not updated.
Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
2013-04-15 15:55:19 +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
530e7dfafd
updated for version 7.3.801
...
Problem: ":window set nu?" displays the cursor line. (Nazri Ramliy)
Solution: Do not update the cursor line when conceallevel is zero or the
screen has scrolled. (partly by Christian Brabandt)
2013-02-06 13:38:02 +01:00
Bram Moolenaar
802418d5eb
updated for version 7.3.765
...
Problem: Segfault when doing "cclose" on BufUnload in a python function.
(Sean Reifschneider)
Solution: Skip window with NULL buffer. (Christian Brabandt)
2013-01-17 14:00:11 +01:00
Bram Moolenaar
8f91399366
updated for version 7.3.642
...
Problem: Segfault with specific autocommands. Was OK after 7.3.449 and
before 7.3.545. (Richard Brown)
Solution: Pass TRUE for abort_if_last in the call to close_buffer().
(Christian Brabandt)
2012-08-29 15:50:26 +02:00
Bram Moolenaar
6763c140d6
updated for version 7.3.608
...
Problem: winrestview() does not always restore the view correctly.
Solution: Call win_new_height() and win_new_width(). (Lech Lorens)
2012-07-19 18:05:44 +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
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
756287da38
updated for version 7.3.588
...
Problem: Crash on NULL pointer.
Solution: Fix the immediate problem by checking for NULL. (Lech Lorens)
2012-07-06 16:39:47 +02:00
Bram Moolenaar
795ec43112
updated for version 7.3.554
...
Problem: Compiler warning for unused argument.
Solution: Add UNUSED.
2012-06-13 18:15:19 +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
bef1c36ab6
updated for version 7.3.528
...
Problem: Crash when closing last window in a tab. (Alex Efros)
Solution: Use common code in close_last_window_tabpage(). (Christian
Brabandt)
2012-05-25 12:39:00 +02:00
Bram Moolenaar
5ad15df9ce
updated for version 7.3.472
...
Problem: Crash when using ":redraw" in a BufEnter autocommand and
switching to another tab. (驼峰)
Solution: Move triggering the the autocommands to after correcting the
option values. Also check the row value to be out of bounds.
(Christian Brabandt, Sergey Khorev)
2012-03-16 19:07:58 +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
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
fc57380c3f
updated for version 7.3.390
...
Problem: Using NULL buffer pointer in a window.
Solution: Check for w_buffer being NULL in more places. (Bjorn Winckler)
2011-12-30 15:01:59 +01: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
13d831ff0c
updated for version 7.3.099
...
Problem: Crash when splitting a window with zero height. (Yukihiro
Nakadaira)
Solution: Don't set the fraction in a window with zero height.
2011-01-08 14:46:03 +01:00
Bram Moolenaar
0215e8e15b
updated for version 7.3.084
...
Problem: When splitting the window, the new one scrolls with the cursor at
the top.
Solution: Compute w_fraction before setting the new height.
2010-12-17 17:35:10 +01: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
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
23c347c66b
Fix: cursor line not properly concealed when moving between windows.
...
(Vince Negri)
2010-07-14 20:57:00 +02:00
Bram Moolenaar
1a38442dbc
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
2010-07-14 19:53:30 +02:00
Bram Moolenaar
4d770fb566
updated for version 7.2.446
...
Problem: Crash in GUI when closing the last window in a tabpage. (ryo7000)
Solution: Remove the tabpage from the list before freeing the window.
2010-07-12 21:38:19 +02:00
Bram Moolenaar
debe25a2a5
One more fix for conceal patch.
2010-06-06 17:41:24 +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
1950c3529b
Fixed memory leak in ":ownsyntax".
2010-06-06 15:21:10 +02:00
Bram Moolenaar
860cae1cec
Add the conceal patch from Vince Negri.
2010-06-05 23:22:07 +02:00
Bram Moolenaar
c6af8125c7
Other solution for GTK not changing the locale.
2010-05-21 12:04:55 +02:00
Bram Moolenaar
9b73a78ed7
updated for version 7.2.398
...
Problem: When moving windows the cursor ends up in the wrong line.
Solution: Set the window width and height properly. (Lech Lorens)
2010-03-17 16:54:57 +01:00
Bram Moolenaar
6d1dcffc35
updated for version 7.2.349
...
Problem: CTRL-W gf doesn't put the new tab in the same place as "tab split"
and "gf". (Tony Mechelynck)
Solution: Store the tab number in cmdmod.tab.
2010-01-27 20:26:46 +01:00
Bram Moolenaar
f061e0befb
updated for version 7.2-215
2009-06-24 15:32:01 +00:00
Bram Moolenaar
746ebd3b6a
updated for version 7.2-203
2009-06-16 14:01:43 +00:00
Bram Moolenaar
4bdbbf7066
updated for version 7.2-184
2009-05-21 21:27:43 +00:00
Bram Moolenaar
884ae6446f
updated for version 7.2-120
2009-02-22 01:37:59 +00:00
Bram Moolenaar
28e8d27868
updated for version 7.2-109
2009-02-21 19:28:48 +00:00
Bram Moolenaar
fe86f2d7cd
updated for version 7.2-055
2008-11-28 20:29:07 +00:00
Bram Moolenaar
701f7afcdf
updated for version 7.2-041
2008-11-15 13:12:07 +00:00
Bram Moolenaar
e37d50a5de
updated for version 7.2c-000
2008-08-06 17:06:04 +00:00
Bram Moolenaar
990d95c079
updated for version 7.2a-016
2008-07-07 19:23:37 +00:00