1
0
forked from aniani/vim

Commit Graph

  • 22189a4bd6 updated for version 7.3.566 Problem: Redo after completion does not work correctly when refresh: always is not used. (Raymond Ko) Solution: Check the compl_opt_refresh_always flag. (Christian Brabandt) v7.3.566 Bram Moolenaar 2012-06-20 22:56:02 +02:00
  • 3943156034 updated for version 7.3.565 Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS. v7.3.565 Bram Moolenaar 2012-06-20 18:39:15 +02:00
  • d12f811816 updated for version 7.3.564 Problem: Warning for pointer conversion. Solution: Add type cast. v7.3.564 Bram Moolenaar 2012-06-20 17:56:09 +02:00
  • 50a12b4078 updated for version 7.3.563 Problem: Can't build with tiny features. Solution: Add #ifdef. v7.3.563 Bram Moolenaar 2012-06-20 17:54:38 +02:00
  • 38bdbd6c6f updated for version 7.3.562 Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto) v7.3.562 Bram Moolenaar 2012-06-20 15:48:57 +02:00
  • 5e1a0a9a65 updated for version 7.3.561 Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer. (Yasuhiro Matsumoto) v7.3.561 Bram Moolenaar 2012-06-20 14:26:35 +02:00
  • ed46560bf0 updated for version 7.3.560 Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira) v7.3.560 Bram Moolenaar 2012-06-20 14:13:06 +02:00
  • 9158f9e423 updated for version 7.3.559 Problem: home_replace() does not work with 8.3 filename. Solution: Make ":p" expand 8.3 name to full path. (Yasuhiro Matsumoto) v7.3.559 Bram Moolenaar 2012-06-20 14:02:27 +02:00
  • dc7e85ee5d updated for version 7.3.558 Problem: Memory access error. (Gary Johnson) Solution: Allocate one more byte. (Dominique Pelle) v7.3.558 Bram Moolenaar 2012-06-20 12:40:08 +02:00
  • 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) v7.3.557 Bram Moolenaar 2012-06-20 11:55:01 +02:00
  • 36105782d2 updated for version 7.3.556 Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams) v7.3.556 Bram Moolenaar 2012-06-14 20:59:25 +02:00
  • 77c193579b updated for version 7.3.555 Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy) v7.3.555 Bram Moolenaar 2012-06-13 19:19:41 +02:00
  • 795ec43112 updated for version 7.3.554 Problem: Compiler warning for unused argument. Solution: Add UNUSED. v7.3.554 Bram Moolenaar 2012-06-13 18:15:19 +02:00
  • 5641f38d41 updated for version 7.3.553 Problem: With double-width characters and 'listchars' containing "precedes" the text is displayed one cell off. Solution: Check for double-width character being overwritten by the "precedes" character. (Yasuhiro Matsumoto) v7.3.553 Bram Moolenaar 2012-06-13 18:06:36 +02:00
  • bfe3bf806a updated for version 7.3.552 Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins) v7.3.552 Bram Moolenaar 2012-06-13 17:28:55 +02:00
  • 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) v7.3.551 Bram Moolenaar 2012-06-13 14:28:20 +02:00
  • e04a48f204 updated for version 7.3.550 Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens) v7.3.550 Bram Moolenaar 2012-06-13 14:01:41 +02:00
  • 48d279215f updated for version 7.3.549 Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens) v7.3.549 Bram Moolenaar 2012-06-13 13:40:48 +02:00
  • 27ba088549 updated for version 7.3.548 Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams) v7.3.548 Bram Moolenaar 2012-06-07 21:09:39 +02:00
  • 802053f14a updated for version 7.3.547 Problem: Compiler warning for uninitialized variable. Solution: Initialize it. v7.3.547 Bram Moolenaar 2012-06-06 23:08:38 +02:00
  • 3b393a0b53 updated for version 7.3.546 Problem: Bogus line break. Solution: Remove the line break. v7.3.546 Bram Moolenaar 2012-06-06 19:05:50 +02:00
  • 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. v7.3.545 Bram Moolenaar 2012-06-06 19:02:45 +02:00
  • 3b53dfb3b0 updated for version 7.3.544 Problem: There is no good way to close a quickfix window when closing the last ordinary window. Solution: Add the QuitPre autocommand. v7.3.544 Bram Moolenaar 2012-06-06 18:03:07 +02:00
  • ab984db296 updated for version 7.3.543 Problem: The cursor is in the wrong line after using ":copen". (John Beckett) Solution: Invoke more drastic redraw method. v7.3.543 Bram Moolenaar 2012-06-06 16:29:10 +02:00
  • 08bc274e88 updated for version 7.3.542 Problem: Function is sometimes unused. Solution: Add #ifdef. v7.3.542 Bram Moolenaar 2012-06-06 16:14:40 +02:00
  • 8134039744 updated for version 7.3.541 Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens) v7.3.541 Bram Moolenaar 2012-06-06 16:12:59 +02:00
  • bc256d91ea updated for version 7.3.540 Problem: Cursor is left on the text instead of the command line. Solution: Don't call setcursor() in command line mode. v7.3.540 Bram Moolenaar 2012-06-06 12:06:15 +02:00
  • 64fdf5ceae updated for version 7.3.539 Problem: Redrawing a character on the command line does not work properly for multi-byte charactes. Solution: Count the number of bytes in a character. (Yukihiro Nakadaira) v7.3.539 Bram Moolenaar 2012-06-06 12:03:06 +02:00
  • c873442b15 Updated runtime files. Bram Moolenaar 2012-06-01 22:38:45 +02:00
  • f13de07e49 updated for version 7.3.538 Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens) v7.3.538 Bram Moolenaar 2012-06-01 18:34:41 +02:00
  • 24ee83b0a0 updated for version 7.3.537 Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call. v7.3.537 Bram Moolenaar 2012-06-01 17:49:55 +02:00
  • 88178de99f updated for version 7.3.536 Problem: When spell checking the German sharp s is not seen as a word character. (Aexl Bender) Solution: In utf_islower() return true for the sharp s. Note: also need updated spell file for this to take effect. v7.3.536 Bram Moolenaar 2012-06-01 17:46:59 +02:00
  • 9a920d8c31 updated for version 7.3.535 Problem: Many #ifdefs for MB_MAXBYTES. Solution: Also define MB_MAXBYTES without the +multi_byte feature. Fix places where the buffer didn't include space for a NUL byte. v7.3.535 Bram Moolenaar 2012-06-01 15:21:02 +02:00
  • 704984ac87 updated for version 7.3.534 Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov) v7.3.534 Bram Moolenaar 2012-06-01 14:57:51 +02:00
  • d2aed44c77 updated for version 7.3.533 Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle) v7.3.533 Bram Moolenaar 2012-06-01 13:46:12 +02:00
  • 112f318551 updated for version 7.3.532 Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle) v7.3.532 Bram Moolenaar 2012-06-01 13:18:53 +02:00
  • ae084bb97c updated for version 7.3.531 Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery) v7.3.531 Bram Moolenaar 2012-05-27 00:37:51 +02:00
  • 6a3c1b44e5 updated for version 7.3.530 Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto) v7.3.530 Bram Moolenaar 2012-05-25 14:06:36 +02:00
  • 6057b9c658 updated for version 7.3.529 Problem: Using a count before "v" and "V" does not work (Kikyous) Solution: Make the count select that many characters or lines. (Christian Brabandt) v7.3.529 Bram Moolenaar 2012-05-25 13:12:36 +02:00
  • 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) v7.3.528 Bram Moolenaar 2012-05-25 12:39:00 +02:00
  • 936347b6bf updated for version 7.3.527 Problem: Clang complains about non-ASCII characters in a string. Solution: Change to \x88 form. (Dominique Pelle) v7.3.527 Bram Moolenaar 2012-05-25 11:56:22 +02:00
  • 0c50a6ba59 updated for version 7.3.526 Problem: Confusing indenting for #ifdef. Solution: Remove and add indent. (Elias Diem) v7.3.526 Bram Moolenaar 2012-05-25 11:04:38 +02:00
  • 17bd9dc2bd updated for version 7.3.525 Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams) v7.3.525 Bram Moolenaar 2012-05-25 11:02:41 +02:00
  • 1763969e5c updated for version 7.3.524 Problem: Missing comma. Solution: Add the comma. v7.3.524 Bram Moolenaar 2012-05-18 21:54:13 +02:00
  • 8e52a59376 Fix more 'cpo' issues in runtime files. Bram Moolenaar 2012-05-18 21:49:28 +02:00
  • bd1d560895 updated for version 7.3.523 Problem: ":diffupdate" doesn't check for files changed elsewhere. Solution: Add the ! flag. (Christian Brabandt) v7.3.523 Bram Moolenaar 2012-05-18 18:47:17 +02:00
  • 455981e69b updated for version 7.3.522 Problem: Crash in vim_realloc() when using MEM_PROFILE. Solution: Avoid using a NULL argument. (Dominique Pelle) v7.3.522 Bram Moolenaar 2012-05-18 18:34:19 +02:00
  • f9de140e7f updated for version 7.3.521 Problem: Using "z=" on a multi-byte character may cause a crash. Solution: Don't use strlen() on an int pointer. v7.3.521 Bram Moolenaar 2012-05-18 18:08:01 +02:00
  • 2969570036 updated for version 7.3.520 Problem: Gvim starts up slow on Unbuntu 12.04. Solution: Move the call to gui_mch_init_check() to after fork(). (Yasuhiro Matsumoto) Do check $DISPLAY being set. v7.3.520 Bram Moolenaar 2012-05-18 17:03:18 +02:00
  • 8a4c136a90 updated for version 7.3.519 Problem: When completefunction returns it cannot indicate end of completion mode. Solution: Recognize completefunction returning -3. (Mtsushita Shougo) v7.3.519 Bram Moolenaar 2012-05-18 16:35:21 +02:00
  • a0149c7401 updated for version 7.3.518 Problem: When 'encoding' is a double-byte encoding ":helptags" may not find tags correctly. Solution: Use vim_strbyte() instead of vim_strchr(). (Yasuhiro Matsumoto) v7.3.518 Bram Moolenaar 2012-05-18 16:24:11 +02:00
  • 1aeaf8c0e0 Updated runtime files. Bram Moolenaar 2012-05-18 13:46:39 +02:00
  • dbb4a42cdc Ignore file generated by tests. Bram Moolenaar 2012-05-18 13:14:26 +02:00
  • 18e00d2c86 updated for version 7.3.517 Problem: Crash when using "vipvv". (Alexandre Provencio) Solution: Don't let the text length become negative. v7.3.517 Bram Moolenaar 2012-05-18 12:49:40 +02:00
  • 2fc8802fcc updated for version 7.3.516 Problem: extend(o, o) may crash Vim. Solution: Fix crash and add test. (Thinca and Hirohito Higashi) v7.3.516 Bram Moolenaar 2012-05-18 12:07:05 +02:00
  • 8071607aa5 More runtime file fixes for 'compatible' mode. Bram Moolenaar 2012-05-01 21:14:34 +02:00
  • 2d0b92f8f9 updated for version 7.3.515 Problem: 'wildignorecase' only applies to the last part of the path. Solution: Also ignore case for letters earlier in the path. v7.3.515 Bram Moolenaar 2012-04-30 21:09:43 +02:00
  • 5ae636b9bb updated for version 7.3.514 Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle) v7.3.514 Bram Moolenaar 2012-04-30 18:48:53 +02:00
  • 8320da42bc updated for version 7.3.513 Problem: Cannot use CTRL-E and CTRL-Y with "r". Solution: Make CTRL-E and CTRL-Y work like in Insert mode. (Christian Brabandt) v7.3.513 Bram Moolenaar 2012-04-30 18:18:47 +02:00
  • b41d9689f1 updated for version 7.3.512 Problem: undofile() returns a useless name when passed an empty string. Solution: Return an empty string. (Christian Brabandt) v7.3.512 Bram Moolenaar 2012-04-30 17:35:48 +02:00
  • 7da9c37a17 updated for version 7.3.511 Problem: Using a FileReadCmd autocommand that does ":e! {file}" may cause a crash. (Christian Brabandt) Solution: Properly restore curwin->w_s. v7.3.511 Bram Moolenaar 2012-04-30 17:04:52 +02:00
  • 9a7224b5a0 Fixed compatible mode in most runtime files. Bram Moolenaar 2012-04-30 15:56:52 +02:00
  • e8938e507e updated for version 7.3.510 Problem: Test 77 fails on Solaris 7. (Michael Soyka) Solution: Replace any tabs with spaces. v7.3.510 Bram Moolenaar 2012-04-30 11:34:28 +02:00
  • ddbb5550b4 Updated runtime files, include fixes for line continuation. Bram Moolenaar 2012-04-26 20:17:03 +02:00
  • d38b055ab8 Updated runtime files. Bram Moolenaar 2012-04-25 19:07:41 +02:00
  • 7f51a82c1b updated for version 7.3.509 Problem: ":vimgrep" fails when 'autochdir' is set. Solution: A more generic solution for changing directory. (Ben Fritz) v7.3.509 Bram Moolenaar 2012-04-25 18:57:21 +02:00
  • b429cdeb6e updated for version 7.3.508 Problem: Default for v:register is not set. Solution: Init v:register in eval_init(). Correct for 'clipboard' before the main loop. (Ingo Karkat) v7.3.508 Bram Moolenaar 2012-04-25 18:24:29 +02:00
  • 8218f60b61 updated for version 7.3.507 Problem: When exiting with unsaved changes, selecting an existing file in the file dialog, there is no dialog to ask whether the existing file should be overwritten. (Felipe G. Nievinski) Solution: Call check_overwrite() before writing. (Christian Brabandt) v7.3.507 Bram Moolenaar 2012-04-25 17:32:18 +02:00
  • 68fb5dcd13 updated for version 7.3.506 Problem: GTK gives an error when selecting a non-existent file. Solution: Add a handler to avoid the error. (Christian Brabandt) v7.3.506 Bram Moolenaar 2012-04-25 17:10:16 +02:00
  • 68a33fc704 updated for version 7.3.505 Problem: Test 11 fails on MS-Windows in some versions. Solution: Fix #ifdefs for whether filtering through a pipe is possible. Move setting b_no_eol_lnum back to where it was before patch 7.3.124. (David Pope) v7.3.505 Bram Moolenaar 2012-04-25 16:50:48 +02:00
  • 720ce53af0 updated for version 7.3.504 Problem: Commands in help files are not highlighted. Solution: Allow for commands in backticks. Adjust CTRL-] to remove the backticks. v7.3.504 Bram Moolenaar 2012-04-25 12:57:28 +02:00
  • 6217cdcec3 updated for version 7.3.503 Problem: Warning for unused argument. Solution: Add UNUSED. v7.3.503 Bram Moolenaar 2012-04-25 12:28:09 +02:00
  • e436528e04 updated for version 7.3.502 Problem: Netbeans insert halfway a line actually appends to the line. Solution: Insert halfway the line. (Brian Victor) v7.3.502 Bram Moolenaar 2012-04-20 19:47:05 +02:00
  • 35df7d2d99 updated for version 7.3.501 Problem: Error for "flush" not being defined when using Ruby command. Solution: Defined "flush" as a no-op method. (Kent Sibilev) v7.3.501 Bram Moolenaar 2012-04-20 18:05:47 +02:00
  • a6cdc99152 updated for version 7.3.500 Problem: Ming makefile unconditionally sets WINVER. Solution: Only defined when not already defined. (Yasuhiro Matsumoto) v7.3.500 Bram Moolenaar 2012-04-20 16:13:25 +02:00
  • 6be120e7f5 updated for version 7.3.499 Problem: When using any interface language when Vim is waiting for a child process it gets confused by a child process started through the interface. Solution: Always used waitpid() instead of wait(). (Yasuhiro Matsumoto) v7.3.499 Bram Moolenaar 2012-04-20 15:55:16 +02:00
  • 84298db3a4 updated for version 7.3.498 Problem: The behavior of the "- register changes depending on value of the 'clipboard' option. (Szamotulski) Solution: Also set the "- register when the register is "*" or "+". (Christian Brabandt) v7.3.498 Bram Moolenaar 2012-04-20 13:46:08 +02:00
  • b830f0c7df updated for version 7.3.497 Problem: Crash when doing ":python print" and compiled with gcc and the optimizer enabled. Solution: Avoid the crash, doesn't really fix the problem. (Christian Brabandt) v7.3.497 Bram Moolenaar 2012-04-20 13:31:21 +02:00
  • 53bfca22f1 Updated runtime files. Bram Moolenaar 2012-04-13 23:04:47 +02:00
  • 09210ac93c updated for version 7.3.496 Problem: MS-DOS: When "diff" trips over difference in line separators some tests fail. Solution: Make some .ok files use unix line separators. (David Pope) v7.3.496 Bram Moolenaar 2012-04-13 19:11:20 +02:00
  • b345d49e06 updated for version 7.3.495 Problem: Compiler warnings. Solution: Add function declaration. Remove "offset" argument. v7.3.495 Bram Moolenaar 2012-04-09 20:42:26 +02:00
  • bd2f3c3ec6 updated for version 7.3.494 Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho) v7.3.494 Bram Moolenaar 2012-04-06 14:31:00 +02:00
  • b0d7a15d3a updated for version 7.3.493 Problem: Two unused variables. Solution: Remove them. (Hong Xu) v7.3.493 Bram Moolenaar 2012-04-06 13:56:04 +02:00
  • 5b435d671e Updated runtime files. Bram Moolenaar 2012-04-05 17:33:26 +02:00
  • 3675fa09a7 updated for version 7.3.492 Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens) v7.3.492 Bram Moolenaar 2012-04-05 17:17:42 +02:00
  • 98411e57ab updated for version 7.3.491 Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho) v7.3.491 Bram Moolenaar 2012-04-05 16:56:52 +02:00
  • 1dced5727f updated for version 7.3.490 Problem: Member confusion in Lua interface. Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho) v7.3.490 Bram Moolenaar 2012-04-05 16:54:08 +02:00
  • e0ebfd7507 updated for version 7.3.489 Problem: CTRL-] in Insert mode does not expand abbreviation when used in a mapping. (Yichao Zhou) Solution: Special case using CTRL-]. (Christian Brabandt) v7.3.489 Bram Moolenaar 2012-04-05 16:07:06 +02:00
  • 3dbde6226d updated for version 7.3.488 Problem: ":help!" in a help file does not work as document. Solution: When in a help file don't give an error message. (thinca) v7.3.488 Bram Moolenaar 2012-04-05 16:05:05 +02:00
  • 61d35bd020 Updated runtime files. Bram Moolenaar 2012-03-28 20:51:51 +02:00
  • 913077c37c updated for version 7.3.487 Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical movement is reset unnecessarily. Solution: Do not set w_set_curswant for every option. Add a test for this. (Kana Natsuno) Add the P_CURSWANT flag for options. v7.3.487 Bram Moolenaar 2012-03-28 19:59:04 +02:00
  • ca628610c0 updated for version 7.3.486 Problem: Build error with mingw64 on Windows 7. Solution: Avoid the step of going through vimres.res. (Guopeng Wen) v7.3.486 Bram Moolenaar 2012-03-28 17:43:11 +02:00
  • da5a4970a9 updated for version 7.3.485 Problem: When building Vim LDFLAGS isn't passed on to building xxd. Solution: Pass the LDFLAGS value. (James McCoy) v7.3.485 Bram Moolenaar 2012-03-28 17:17:48 +02:00
  • f99bc6d002 updated for version 7.3.484 Problem: The -E and --echo-wid command line arguments are not mentioned in "vim --help". Solution: Add the help lines. (Dominique Pelle) v7.3.484 Bram Moolenaar 2012-03-28 17:10:31 +02:00
  • 6df5e5ae42 updated for version 7.3.483 Problem: More prompt shows up too often. Solution: Instead of adding a line break, only start a new line in the message history. (Christian Brabandt) v7.3.483 Bram Moolenaar 2012-03-28 16:49:29 +02:00
  • 524780d69f updated for version 7.3.482 Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson) v7.3.482 Bram Moolenaar 2012-03-28 14:19:50 +02:00
  • 61d281a4c0 updated for version 7.3.481 Problem: Changing 'virtualedit' in an operator function to "all" does not have the desired effect. (Aaron Bohannon) Solution: Save, reset and restore virtual_op when executing an operator function. v7.3.481 Bram Moolenaar 2012-03-28 12:59:57 +02:00
  • 970a1b82ec updated for version 7.3.480 Problem: When using ":qa" and there is a changed buffer picking the buffer to jump to is not very good. Solution: Consider current and other tab pages. (Hirohito Higashi) v7.3.480 Bram Moolenaar 2012-03-23 18:39:18 +01:00
  • 06ca513e2c updated for version 7.3.479 Problem: When 'cursorline' is set the line number highlighting can't be set separately. Solution: Add "CursorLineNr". (Howard Buchholz) v7.3.479 Bram Moolenaar 2012-03-23 16:25:17 +01:00
  • 507cc8acf1 updated for version 7.3.478 Problem: Memory leak using the ':rv!' command when reading dictionary or list global variables i.e. with 'viminfo' containing !. Solution: Free the typeval. (Dominique Pelle) v7.3.478 Bram Moolenaar 2012-03-23 15:37:02 +01:00