Bram Moolenaar [Wed, 30 Jan 2013 11:31:36 +0000 (12:31 +0100)]
updated for version 7.3.787
Problem: With 'relativenumber' set it is not possible to see the absolute
line number.
Solution: For the cursor line show the absolute line number instead of a
zero. (Nazri Ramliy)
Bram Moolenaar [Wed, 23 Jan 2013 16:17:10 +0000 (17:17 +0100)]
updated for version 7.3.780
Problem: char2nr() and nr2char() always use 'encoding'.
Solution: Add argument to use utf-8 characters. (Yasuhiro Matsumoto)
Bram Moolenaar [Wed, 23 Jan 2013 15:43:11 +0000 (16:43 +0100)]
updated for version 7.3.779
Problem: Backwards search lands in wrong place when started on a multibyte
character.
Solution: Do not set extra_col for a backwards search. (Sung Pae)
Bram Moolenaar [Wed, 23 Jan 2013 12:41:00 +0000 (13:41 +0100)]
updated for version 7.3.774
Problem: Tiny GUI version misses console dialog feature.
Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
Bram Moolenaar [Thu, 17 Jan 2013 17:34:05 +0000 (18:34 +0100)]
updated for version 7.3.772
Problem: Cursor is at the wrong location and below the end of the file
after doing substitutions with confirm flag: %s/x/y/c
(Dominique Pelle)
Solution: Update the cursor position. (Christian Brabandt & Dominique)
Bram Moolenaar [Thu, 17 Jan 2013 14:37:01 +0000 (15:37 +0100)]
updated for version 7.3.768
Problem: settabvar() and setwinvar() may move the cursor.
Solution: Save and restore the cursor position when appropriate. (idea by
Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 17 Jan 2013 13:00:11 +0000 (14:00 +0100)]
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)
Bram Moolenaar [Thu, 17 Jan 2013 12:24:08 +0000 (13:24 +0100)]
updated for version 7.3.763
Problem: Jumping to a mark does not open a fold if it is in the same line.
(Wiktor Ruben)
Solution: Also compare the column after the jump. (Christian Brabandt)
Bram Moolenaar [Wed, 12 Dec 2012 17:20:32 +0000 (18:20 +0100)]
updated for version 7.3.761
Problem: In Visual mode a "-p does not work. (Marcin Szamotulski)
Solution: Avoid writing to "- before putting it. (Christian Brabandt)
Bram Moolenaar [Wed, 12 Dec 2012 16:33:32 +0000 (17:33 +0100)]
updated for version 7.3.760
Problem: dv_ deletes the white space before the line.
Solution: Move the cursor to the first non-white. (Christian Brabandt)
Bram Moolenaar [Wed, 12 Dec 2012 16:12:25 +0000 (17:12 +0100)]
updated for version 7.3.759
Problem: MS-Windows: Updating the tabline is slow when there are many tabs.
Solution: Disable redrawing while performing the update. (Arseny Kapoulkine)
Bram Moolenaar [Wed, 12 Dec 2012 15:43:58 +0000 (16:43 +0100)]
updated for version 7.3.758
Problem: Matchit plugin does not handle space in #ifdef.
Solution: Change matching pattern to allow spaces. (Mike Morearty)
Bram Moolenaar [Wed, 12 Dec 2012 15:11:36 +0000 (16:11 +0100)]
updated for version 7.3.757
Problem: Issue 96: May access freed memory when a put command triggers
autocommands. (Dominique Pelle)
Solution: Call u_save() before getting y_array.
Bram Moolenaar [Wed, 12 Dec 2012 14:55:20 +0000 (15:55 +0100)]
updated for version 7.3.756
Problem: A location list can get a wrong count in :lvimgrep.
Solution: Check if the list was changed by autocommands. (mostly by
Christian Brabandt)
Bram Moolenaar [Wed, 12 Dec 2012 13:25:05 +0000 (14:25 +0100)]
updated for version 7.3.755
Problem: Autoconf doesn't find Python 3 if it's called "python".
Solution: Search for "python2" and "python3" first, then "python".
Bram Moolenaar [Wed, 5 Dec 2012 18:13:18 +0000 (19:13 +0100)]
updated for version 7.3.753
Problem: When there is a QuitPre autocommand using ":q" twice does not work
for exiting when there are more files to edit.
Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
Bram Moolenaar [Wed, 5 Dec 2012 15:10:42 +0000 (16:10 +0100)]
updated for version 7.3.748
Problem: Cannot properly test conceal mode.
Solution: Add the screencol() and screenrow() functions. Use them in
test88. (Simon Ruderich)
Bram Moolenaar [Wed, 5 Dec 2012 14:32:30 +0000 (15:32 +0100)]
updated for version 7.3.747
Problem: When characters are concealed text aligned with tabs are no longer
aligned, e.g. at ":help :index".
Solution: Compensate space for tabs for concealed characters. (Dominique
Pelle)
Bram Moolenaar [Wed, 28 Nov 2012 16:34:48 +0000 (17:34 +0100)]
updated for version 7.3.737
Problem: When using do_cmdline() recursively did_endif is not reset,
causing messages to be overwritten.
Solution: Reset did_endif. (Christian Brabandt)
Bram Moolenaar [Wed, 28 Nov 2012 15:49:58 +0000 (16:49 +0100)]
updated for version 7.3.736
Problem: File name completion in input() escapes white space. (Frederic
Hardy)
Solution: Do not escape white space. (Christian Brabandt)
Bram Moolenaar [Tue, 20 Nov 2012 16:21:52 +0000 (17:21 +0100)]
updated for version 7.3.724
Problem: Building with Ruby and Tcl on MS-Windows does not work.
Solution: Remove Ruby and Tcl from the big MS-Windows build.
Bram Moolenaar [Tue, 20 Nov 2012 16:03:27 +0000 (17:03 +0100)]
updated for version 7.3.722
Problem: Perl flags may contain "-g", which breaks "make proto".
Solution: Filter out the "-g" flag for cproto. (Ken Takata)
Bram Moolenaar [Tue, 20 Nov 2012 11:16:58 +0000 (12:16 +0100)]
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)
Bram Moolenaar [Tue, 20 Nov 2012 11:03:06 +0000 (12:03 +0100)]
updated for version 7.3.717
Problem: When changing the font size, only MS-Windows limits the window
size.
Solution: Also limit the window size on other systems. (Roland Puntaier)
Bram Moolenaar [Wed, 14 Nov 2012 21:38:08 +0000 (22:38 +0100)]
updated for version 7.3.715
Problem: Crash when calling setloclist() in BufUnload autocmd. (Marcin
Szamotulski)
Solution: Set w_llist to NULL when it was freed. Also add a test.
(Christian Brabandt)
Bram Moolenaar [Wed, 14 Nov 2012 19:52:28 +0000 (20:52 +0100)]
updated for version 7.3.714
Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and
:setglobal cannot. (Michael Henry)
Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt)
Bram Moolenaar [Tue, 23 Oct 2012 03:17:37 +0000 (05:17 +0200)]
updated for version 7.3.711
Problem: vim.current.buffer is not available. (lilydjwg)
Solution: Use py3_PyUnicode_AsUTF8 instead of py3_PyUnicode_AsUTF8String.
(Ken Takata)
Bram Moolenaar [Sun, 21 Oct 2012 20:18:21 +0000 (22:18 +0200)]
updated for version 7.3.708
Problem: Filler lines above the first line may be hidden when opening Vim.
Solution: Change how topfill is computed. (Christian Brabandt)
Bram Moolenaar [Sun, 21 Oct 2012 19:38:45 +0000 (21:38 +0200)]
updated for version 7.3.707
Problem: Problems loading a library for a file name with non-latin
characters.
Solution: Use wide system functions when possible. (Ken Takata)
Bram Moolenaar [Sun, 21 Oct 2012 01:46:05 +0000 (03:46 +0200)]
updated for version 7.3.703
Problem: When 'undofile' is reset the hash is computed unnecessarily.
Solution: Only compute the hash when the option was set. (Christian Brabandt)
Bram Moolenaar [Sun, 21 Oct 2012 00:37:10 +0000 (02:37 +0200)]
updated for version 7.3.701
Problem: MS-Windows: Crash with stack overflow when setting 'encoding'.
Solution: Handle that loading the iconv library may be called recursively.
(Jiri Sedlak)
Bram Moolenaar [Sun, 21 Oct 2012 00:10:24 +0000 (02:10 +0200)]
updated for version 7.3.699
Problem: When 'ttymouse' is set to "sgr" manually, it is overruled by
automatic detection.
Solution: Do not use automatic detection when 'ttymouse' was set manually.
(Hayaki Saito)
Bram Moolenaar [Sat, 20 Oct 2012 23:21:59 +0000 (01:21 +0200)]
updated for version 7.3.696
Problem: Message about added spell language can be wrong.
Solution: Give correct message. Add g:menutrans_set_lang_to to allow for
translation. (Jiri Sedlak)
Bram Moolenaar [Sat, 20 Oct 2012 22:45:18 +0000 (00:45 +0200)]
updated for version 7.3.694
Problem: Now that 'shiftwidth' may use the value of 'tabstop' it is not so
easy to use in indent files.
Solution: Add the shiftwidth() function. (so8res)
Bram Moolenaar [Sat, 20 Oct 2012 22:10:39 +0000 (00:10 +0200)]
updated for version 7.3.693
Problem: Can't make 'softtabstop' follow 'shiftwidth'.
Solution: When 'softtabstop' is negative use the value of 'shiftwidth'.
(so8res)
Bram Moolenaar [Thu, 18 Oct 2012 03:18:32 +0000 (05:18 +0200)]
updated for version 7.3.692
Problem: Can't build GTK version with GTK 2.0.
Solution: Put GtkFileFilter declaration in the right place. (Yegappan
Lakshmanan)