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
Bram Moolenaar
f233048a12
updated for version 7.2a
2008-06-24 20:19:36 +00:00
Bram Moolenaar
cb4cef2206
updated for version 7.1-283
2008-03-16 15:04:34 +00:00
Bram Moolenaar
78ab331e0d
updated for version 7.1-125
2007-09-29 12:16:41 +00:00
Bram Moolenaar
719939c888
updated for version 7.1-119
2007-09-25 12:51:28 +00:00
Bram Moolenaar
61abfd1171
updated for version 7.1-104
2007-09-13 16:26:47 +00:00
Bram Moolenaar
67f7131efa
updated for version 7.1-068
2007-08-12 14:55:56 +00:00
Bram Moolenaar
48cc5fe8b6
updated for version 7.1-060
2007-08-11 11:39:45 +00:00
Bram Moolenaar
0963cd95f5
updated for version 7.1-052
2007-08-05 16:49:43 +00:00
Bram Moolenaar
6ee10162b2
updated for version 7.1-040
2007-07-26 20:58:42 +00:00
Bram Moolenaar
b6799acd2d
updated for version 7.1b
2007-05-10 16:44:05 +00:00
Bram Moolenaar
ee79cbc7af
updated for version 7.0-240
2007-05-02 19:50:14 +00:00
Bram Moolenaar
053b9fa9c2
updated for version 7.0-227
2007-04-26 14:09:42 +00:00
Bram Moolenaar
d326ce83d5
updated for version 7.0-216
2007-03-11 14:48:29 +00:00