Bram Moolenaar [Thu, 8 Dec 2011 14:09:52 +0000 (15:09 +0100)]
updated for version 7.3.365
Problem: Crash when using a large Unicode character in a file that has
syntax highlighting. (ngollan)
Solution: Check for going past the end of the utf tables. (Dominique Pelle)
Bram Moolenaar [Wed, 30 Nov 2011 16:20:23 +0000 (17:20 +0100)]
updated for version 7.3.363
Problem: C indenting is wrong after #endif followed by a semicolon.
Solution: Add special handling for a semicolon in a line by itself. (Lech
Lorens)
Bram Moolenaar [Wed, 30 Nov 2011 16:01:58 +0000 (17:01 +0100)]
updated for version 7.3.362
Problem: ml_get error when using ":g" with folded lines.
Solution: Adjust the line number for changed_lines(). (Christian Brabandt)
Bram Moolenaar [Wed, 30 Nov 2011 14:40:56 +0000 (15:40 +0100)]
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)
Bram Moolenaar [Wed, 30 Nov 2011 14:19:28 +0000 (15:19 +0100)]
updated for version 7.3.360
Problem: Interrupting the load of an autoload function may cause a crash.
Solution: Do not use the hashitem when not valid. (Yukihiro Nakadaira)
Bram Moolenaar [Wed, 30 Nov 2011 10:15:47 +0000 (11:15 +0100)]
updated for version 7.3.354
Problem: ":set backspace+=eol" doesn't work when 'backspace' has a
backwards compatible value of 2.
Solution: Convert the number to a string. (Hirohito Higashi)
Bram Moolenaar [Wed, 26 Oct 2011 20:02:15 +0000 (22:02 +0200)]
updated for version 7.3.352
Problem: When completing methods dict functions and script-local functions
get in the way.
Solution: Sort function names starting with "<" to the end. (Yasuhiro
Matsumoto)
Bram Moolenaar [Wed, 26 Oct 2011 15:04:29 +0000 (17:04 +0200)]
updated for version 7.3.351
Problem: Text formatting uses start of insert position when it should not.
(Peter Wagenaar)
Solution: Do not use Insstart when intentionally formatting.
Bram Moolenaar [Wed, 26 Oct 2011 11:19:27 +0000 (13:19 +0200)]
updated for version 7.3.350
Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert)
Solution: Recognize the ":lua" command, skip to EOF.
Bram Moolenaar [Wed, 26 Oct 2011 09:44:18 +0000 (11:44 +0200)]
updated for version 7.3.349
Problem: When running out of memory during startup trying to open a
swapfile will loop forever.
Solution: Let findswapname() set dirp to NULL if out of memory.
Bram Moolenaar [Wed, 26 Oct 2011 09:36:25 +0000 (11:36 +0200)]
updated for version 7.3.347
Problem: When dropping text from a browser on Vim it receives HTML even
though "html" is excluded from 'clipboard'. (Andrei Avk)
Solution: Fix the condition for TARGET_HTML.
Bram Moolenaar [Thu, 20 Oct 2011 19:28:01 +0000 (21:28 +0200)]
updated for version 7.3.344
Problem: Problem with GUI startup related to XInitThreads.
Solution: Use read() and write() instead of fputs() and fread(). (James
Vega)
Bram Moolenaar [Thu, 20 Oct 2011 16:17:42 +0000 (18:17 +0200)]
updated for version 7.3.341
Problem: Local help files are only listed in help.txt, not in translated
help files.
Solution: Also find translated help files. (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 20 Oct 2011 16:12:32 +0000 (18:12 +0200)]
updated for version 7.3.340
Problem: When 'verbosefile' is set ftplugof.vim can give an error.
Solution: Only remove filetypeplugin autocommands when they exist. (Yasuhiro
Matsumoto)
Bram Moolenaar [Wed, 12 Oct 2011 20:02:14 +0000 (22:02 +0200)]
updated for version 7.3.338
Problem: Using getchar() in an expression mapping doesn't work well.
Solution: Don't save and restore the typeahead. (James Vega)
Bram Moolenaar [Wed, 12 Oct 2011 19:04:20 +0000 (21:04 +0200)]
updated for version 7.3.337
Problem: Screen doesn't update after resizing the xterm until a character
is typed.
Solution: When the select call is interrupted check do_resize. (Taylor
Hedberg)
Bram Moolenaar [Wed, 12 Oct 2011 17:53:52 +0000 (19:53 +0200)]
updated for version 7.3.336
Problem: When a tags file specifies an encoding different from 'enc' it
may hang and using a pattern doesn't work.
Solution: Convert the whole line. Continue reading the header after the
SORT tag. Add test83. (Yukihiro Nakadaira)
Bram Moolenaar [Wed, 12 Oct 2011 14:57:13 +0000 (16:57 +0200)]
updated for version 7.3.335
Problem: When 'imdisable' is reset from an autocommand in Insert mode it
doesn't take effect.
Solution: Call im_set_active() in Insert mode. (Taro Muraoka)
Bram Moolenaar [Tue, 4 Oct 2011 19:22:44 +0000 (21:22 +0200)]
updated for version 7.3.333
Problem: Using "." to repeat a Visual delete counts the size in bytes, not
characters. (Connor Lane Smith)
Solution: Store the virtual column numbers instead of byte positions.
Bram Moolenaar [Tue, 4 Oct 2011 16:03:47 +0000 (18:03 +0200)]
updated for version 7.3.332
Problem: Indent after "public:" is not increased in C++ code. (Lech Lorens)
Solution: Check for namespace after the regular checks. (partly by Martin
Gieseking)
Bram Moolenaar [Tue, 4 Oct 2011 15:00:20 +0000 (17:00 +0200)]
updated for version 7.3.331
Problem: "vit" selects wrong text when a tag name starts with the same text
as an outer tag name. (Ben Fritz)
Solution: Add "\>" to the pattern to check for word boundary.
Bram Moolenaar [Tue, 4 Oct 2011 14:43:53 +0000 (16:43 +0200)]
updated for version 7.3.330
Problem: When longjmp() is invoked if the X server gives an error the state
is not properly restored.
Solution: Reset vgetc_busy. (Yukihiro Nakadaira)
updated for version 7.3.329
Problem: When skipping over code from ":for" to ":endfor" get an error for
calling a dict function. (Yasuhiro Matsumoto)
Solution: Ignore errors when skipping over :call command.
updated for version 7.3.328
Problem: When command line wraps the cursor may be displayed wrong when
there are multi-byte characters.
Solution: Position the cursor before drawing the text. (Yasuhiro Matsumoto)
updated for version 7.3.326
Problem: MingW 4.6 no longer supports the -mno-cygwin option.
Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
updated for version 7.3.325
Problem: A duplicated function argument gives an internal error.
Solution: Give a proper error message. (based on patch by Tyru)
updated for version 7.3.323
Problem: The default 'errorformat' does not ignore some "included from"
lines.
Solution: Add a few more patterns. (Ben Boeckel)
updated for version 7.3.322
Problem: #ifdef for PDP_RETVAL doesn't work, INT_PTR can be a typedef.
Solution: Check the MSC version and 64 bit flags. (Sergiu Dotenco)
updated for version 7.3.320
Problem: When a 0xa0 character is in a sourced file the error message for
unrecognized command does not show the problem.
Solution: Display 0xa0 as <a0>.
updated for version 7.3.319
Problem: Redobuff doesn't always include changes of the completion leader.
Solution: Insert backspaces as needed. (idea by Taro Muraoka)
updated for version 7.3.318
Problem: "C" on the last line deletes that line if it's blank.
Solution: Only delete the last line for a delete operation. (James Vega)
updated for version 7.3.317
Problem: Calling debug.debug() in Lua may cause Vim to hang.
Solution: Add a better debug method. (Rob Hoelz, Luis Carvalho)
updated for version 7.3.315
Problem: Opening a window before forking causes problems for GTK.
Solution: Fork first, create the window in the child and report back to the
parent process whether it worked. If successful the parent exits,
if unsuccessful the child exits and the parent continues in the
terminal. (Tim Starling)
updated for version 7.3.311
Problem: Complete function isn't called when the leader changed.
Solution: Allow the complete function to return a dictionary with a flag
that indicates ins_compl_restart() is to be called when the leader
changes. (Taro Muraoka)
updated for version 7.3.308
Problem: Writing to 'verbosefile' has problems, e.g. for :highlight.
Solution: Do not use a separate verbose_write() function but write with the
same code that does redirecting. (Yasuhiro Matsumoto)
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.
updated for version 7.3.305
Problem: Auto-loading a function while editing the command line causes
scrolling up the display.
Solution: Don't set msg_scroll when defining a function and the user is not
typing. (Yasuhiro Matsumoto)
updated for version 7.3.301
Problem: When 'smartindent' and 'copyindent' are set a Tab is used even
though 'expandtab' is set.
Solution: Do not insert Tabs. Add a test. (Christian Brabandt)
updated for version 7.3.296
Problem: When writing to an external command a zombie process may be left
behind.
Solution: Wait on the process. (James Vega)
updated for version 7.3.295
Problem: When filtering text with an external command Vim may not read all
the output.
Solution: When select() is interrupted loop and try again. (James Vega)
updated for version 7.3.292
Problem: Crash when using fold markers and selecting a visual block that
includes a folded line and goes to end of line. (Sam Lidder)
Solution: Check for the column to be MAXCOL. (James Vega)
updated for version 7.3.291
Problem: Configure doesn't work properly with Python3.
Solution: Put -ldl before $LDFLAGS. Add PY3_NO_RTLD_GLOBAL. (Roland
Puntaier)
updated for version 7.3.290
Problem: When a BufWriteCmd autocommand resets 'modified' this doesn't
change older buffer states to be marked as 'modified' like
":write" does. (Yukihiro Nakadaira)
Solution: When the BufWriteCmd resets 'modified' then adjust the undo
information like ":write" does.
Bram Moolenaar [Sun, 28 Aug 2011 14:02:28 +0000 (16:02 +0200)]
updated for version 7.3.289
Problem: Complete function isn't called when the leader changed.
Solution: Call ins_compl_restart() when the leader changed. (Taro Muraoka)
Bram Moolenaar [Sun, 28 Aug 2011 14:00:19 +0000 (16:00 +0200)]
updated for version 7.3.288
Problem: has('python') may give an error message for not being able to load
the library after using python3.
Solution: Only give the error when the verbose argument is true.
Bram Moolenaar [Fri, 26 Aug 2011 14:13:00 +0000 (16:13 +0200)]
updated for version 7.3.286
Problem: Crash when using "zd" on a large number of folds. (Sam King)
Solution: Recompute pointer after reallocating array. Move fewer entries
when making room.
Bram Moolenaar [Wed, 17 Aug 2011 18:33:22 +0000 (20:33 +0200)]
updated for version 7.3.284
Problem: The str2special() function doesn't handle multi-byte characters
properly.
Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
Bram Moolenaar [Wed, 17 Aug 2011 15:18:20 +0000 (17:18 +0200)]
updated for version 7.3.283
Problem: An expression mapping with a multi-byte character containing a
0x80 byte gets messed up. (ZyX)
Solution: Unescape the expression before evaluating it (Yukihiro Nakadaira)
Bram Moolenaar [Wed, 17 Aug 2011 14:25:48 +0000 (16:25 +0200)]
updated for version 7.3.282
Problem: When using input() and :echo in a loop the displayed text is
incorrect. (Benjamin Fritz)
Solution: Only restore the cursor position when there is a command line.
(Ben Schmidt)
Bram Moolenaar [Wed, 17 Aug 2011 13:23:23 +0000 (15:23 +0200)]
updated for version 7.3.281
Problem: After using "expand('%:8')" the buffer name is changed.
Solution: Make a copy of the file name before shortening it.
Bram Moolenaar [Wed, 10 Aug 2011 15:44:45 +0000 (17:44 +0200)]
updated for version 7.3.279
Problem: With GTK, when gvim is full-screen and a tab is opened and using a
specific monitor configuration the window is too big.
Solution: Adjust the window size like on MS-Windows. (Yukihiro Nakadaira)
Bram Moolenaar [Wed, 10 Aug 2011 15:25:51 +0000 (17:25 +0200)]
updated for version 7.3.278
Problem: Passing the file name to open in VisVim doesn't work.
Solution: Adjust the index and check for end of buffer. (Jiri Sedlak)
Bram Moolenaar [Wed, 10 Aug 2011 11:21:46 +0000 (13:21 +0200)]
updated for version 7.3.273
Problem: A BOM in an error file is seen as text. (Aleksey Baibarin)
Solution: Remove the BOM from the text before evaluating. (idea by Christian
Brabandt)
Bram Moolenaar [Wed, 10 Aug 2011 10:38:08 +0000 (12:38 +0200)]
updated for version 7.3.272
Problem: ":put =list" does not add an empty line for a trailing empty
item.
Solution: Add a trailing NL when turning a list into a string.