1
0
forked from aniani/vim

Commit Graph

  • 9c7d98d7c2 updated for version 7.4.498 Problem: Typo in DOS makefile. Solution: Change exists to exist. (Ken Takata) v7.4.498 Bram Moolenaar 2014-11-05 15:46:09 +01:00
  • fda3729a06 updated for version 7.4.497 Problem: With some regexp patterns the NFA engine uses many states and becomes very slow. To the user it looks like Vim freezes. Solution: When the number of states reaches a limit fall back to the old engine. (Christian Brabandt) v7.4.497 Bram Moolenaar 2014-11-05 14:27:36 +01:00
  • 4f7e821f26 updated for version 7.4.496 Problem: Many lines are both in Make_cyg.mak and Make_ming.mak Solution: Move the common parts to one file. (Ken Takata) v7.4.496 Bram Moolenaar 2014-11-05 13:53:32 +01:00
  • 666578b539 updated for version 7.4.495 Problem: XPM isn't used correctly in the Cygwin Makefile. Solution: Include the rules like in Make_ming.mak. (Ken Takata) v7.4.495 Bram Moolenaar 2014-11-05 13:43:21 +01:00
  • eda73607a7 updated for version 7.4.494 Problem: Cursor shape is wrong after a CompleteDone autocommand. Solution: Update the cursor and mouse shape after ":normal" restores the state. (Jacob Niehus) v7.4.494 Bram Moolenaar 2014-11-05 09:53:23 +01:00
  • 086329d3f6 updated for version 7.4.493 Problem: A TextChanged autocommand is triggered when saving a file. (William Gardner) Solution: Update last_changedtick after calling unchanged(). (Christian Brabandt) v7.4.493 Bram Moolenaar 2014-10-31 19:51:36 +01:00
  • 2f31e39978 updated for version 7.4.492 Problem: In Insert mode, after inserting a newline that inserts a comment leader, CTRL-O moves to the right. (ZyX) Issue 57. Solution: Correct the condition for moving the cursor back to the NUL. (Christian Brabandt) v7.4.492 Bram Moolenaar 2014-10-31 19:20:36 +01:00
  • b851a96d5c updated for version 7.4.491 Problem: When winrestview() has a negative "topline" value there are display errors. Solution: Correct a negative value to 1. (Hirohito Higashi) v7.4.491 Bram Moolenaar 2014-10-31 15:45:52 +01:00
  • 6a64365c95 updated for version 7.4.490 Problem: Cannot specify the buffer to use for "do" and "dp", making them useless for three-way diff. Solution: Use the count as the buffer number. (James McCoy) v7.4.490 Bram Moolenaar 2014-10-31 13:54:25 +01:00
  • fe3c410098 updated for version 7.4.489 Problem: Cursor movement still wrong when 'lbr' is set and there is a number column. (Hirohito Higashi) Solution: Add correction for number column. (Hiroyuki Takagi) v7.4.489 Bram Moolenaar 2014-10-31 12:42:01 +01:00
  • 7a373dd0d4 updated for version 7.4.488 Problem: test_mapping fails for some people. Solution: Set the 'encoding' option. (Ken Takata) v7.4.488 Bram Moolenaar 2014-10-22 22:09:01 +02:00
  • a94618e16c Add the missing test files. Bram Moolenaar 2014-10-21 22:36:31 +02:00
  • 482a2b5c9d updated for version 7.4.487 Problem: ":sign jump" may use another window even though the file is already edited in the current window. Solution: First check if the file is in the current window. (James McCoy) v7.4.487 Bram Moolenaar 2014-10-21 20:57:15 +02:00
  • 958636c406 updated for version 7.4.486 Problem: Check for writing to a yank register is wrong. Solution: Negate the check. (Zyx). Also clean up the #ifdefs. v7.4.486 Bram Moolenaar 2014-10-21 20:01:58 +02:00
  • 4920a44271 updated for version 7.4.485 Problem: Abbreviations don't work. (Toothpik) Solution: Move the length computation inside the for loop. Compare against the unescaped key. v7.4.485 Bram Moolenaar 2014-10-21 19:35:31 +02:00
  • cb5ea1401a updated for version 7.4.484 Problem: Compiler warning on MS-Windows. (Ken Takata) Solution: Add type cast. v7.4.484 Bram Moolenaar 2014-10-21 18:17:09 +02:00
  • bdef518b0a updated for version 7.4.483 Problem: A 0x80 byte is not handled correctly in abbreviations. Solution: Unescape special characters. Add a test. (Christian Brabandt) v7.4.483 Bram Moolenaar 2014-10-21 16:22:17 +02:00
  • f1b4622366 updated for version 7.4.482 Problem: When 'balloonexpr' results in a list, the text has a trailing newline. (Lcd) Solution: Remove one trailing newline. v7.4.482 Bram Moolenaar 2014-10-21 14:15:17 +02:00
  • 861d80a671 updated for version 7.4.481 Problem: Compiler warning on MS-Windows. Solution: Add type casts. (Ken Takata) v7.4.481 Bram Moolenaar 2014-10-16 20:35:36 +02:00
  • 799d6abf3e updated for version 7.4.480 Problem: MS-Windows: Can't build. Solution: Remove goto, use a flag instead. v7.4.480 Bram Moolenaar 2014-10-16 16:16:37 +02:00
  • 7d76c804af Update runtime files and translations. Bram Moolenaar 2014-10-15 22:51:52 +02:00
  • 1df52d798f updated for version 7.4.479 Problem: MS-Windows: The console title can be wrong. Solution: Take the encoding into account. When restoring the title use the right function. (Yasuhiro Matsumoto) v7.4.479 Bram Moolenaar 2014-10-15 22:50:10 +02:00
  • 1c85210d6d updated for version 7.4.478 Problem: Using byte length instead of character length for 'showbreak'. Solution: Compute the character length. (Marco Hinz) v7.4.478 Bram Moolenaar 2014-10-15 21:26:40 +02:00
  • e962c6795b updated for version 7.4.477 Problem: When using ":%diffput" and the other file is empty an extra empty line remains. Solution: Set the buf_empty flag. v7.4.477 Bram Moolenaar 2014-10-15 12:56:49 +02:00
  • dcc1ce2f5a updated for version 7.4.476 Problem: MingW: compiling with "XPM=no" doesn't work. Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken Takata) v7.4.476 Bram Moolenaar 2014-10-15 12:07:11 +02:00
  • cbc246a331 updated for version 7.4.475 Problem: Can't compile on a system where Xutf8SetWMProperties() is not in the X11 library. Issue 265. Solution: Add a configure check. v7.4.475 Bram Moolenaar 2014-10-11 14:47:26 +02:00
  • 2a9853925b updated for version 7.4.474 Problem: AIX compiler can't handle // comment. Issue 265. Solution: Remove that line. v7.4.474 Bram Moolenaar 2014-10-11 12:48:26 +02:00
  • e5ead831a2 updated for version 7.4.473 Problem: Cursor movement is incorrect when there is a number column/sign/fold column and 'sbr' is displayed. Solution: Adjust the column for 'sbr'. (Christian Brabandt) v7.4.473 Bram Moolenaar 2014-10-10 15:34:33 +02:00
  • 7425b938cb updated for version 7.4.472 Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak is set and list is not. Solution: Only draw this character when 'list' is on. (Christian Brabandt) v7.4.472 Bram Moolenaar 2014-10-10 15:28:46 +02:00
  • f191d55ede updated for version 7.4.471 Problem: MS-Windows: When printer name contains multi-byte, the name is displayed as ???. Solution: Convert the printer name from the active codepage to 'encoding'. (Yasuhiro Matsumoto) v7.4.471 Bram Moolenaar 2014-10-09 17:05:56 +02:00
  • 6885694e82 updated for version 7.4.470 Problem: Test 11 and 100 do not work properly on Windows. Solution: Avoid using feedkeys(). (Ken Takata) v7.4.470 Bram Moolenaar 2014-10-09 15:37:06 +02:00
  • 4697ae00a7 updated for version 7.4.469 Problem: Can't build with MSVC. (Ken Takata) Solution: Move the assignment after the declarations. v7.4.469 Bram Moolenaar 2014-10-09 14:48:30 +02:00
  • 9a95bdc52a updated for version 7.4.468 Problem: Issue 26: CTRL-C does not interrupt after it was mapped and then unmapped. Solution: Reset mapped_ctrl_c. (Christian Brabandt) v7.4.468 Bram Moolenaar 2014-10-09 13:36:16 +02:00
  • 404406ad6b updated for version 7.4.467 v7.4.467 Bram Moolenaar 2014-10-09 13:24:43 +02:00
  • 56095e1ceb updated for version 7.4.466 Problem: CTRL-W } does not open preview window. (Erik Falor) Solution: Don't set g_do_tagpreview for CTRL-W }. v7.4.466 Bram Moolenaar 2014-10-09 10:44:37 +02:00
  • 21d89b610f updated for version 7.4.465 Problem: Crash when expanding a very long string. Solution: Use wsncpy() instead of wcscpy(). (Ken Takata) v7.4.465 Bram Moolenaar 2014-10-07 10:38:40 +02:00
  • 0f519a02c5 updated for version 7.4.464 Problem: Compiler warning. Solution: Add type cast. (Ken Takata) v7.4.464 Bram Moolenaar 2014-10-06 18:10:09 +02:00
  • 3a991dd001 Update runtime files. Bram Moolenaar 2014-10-02 01:41:41 +02:00
  • 56f6227224 updated for version 7.4.463 Problem: Test 86 and 87 may hang on MS-Windows. Solution: Call inputrestore() after inputsave(). (Ken Takata) v7.4.463 Bram Moolenaar 2014-09-29 18:08:59 +02:00
  • 84d17a6f9e updated for version 7.4.462 Problem: Setting the local value of 'backupcopy' empty gives an error. (Peter Mattern) Solution: When using an empty value set the flags to zero. (Hirohito Higashi) v7.4.462 Bram Moolenaar 2014-09-29 17:15:18 +02:00
  • 7ddc642a0c updated for version 7.4.461 Problem: MS-Windows: When collate is on the number of copies is too high. Solution: Only set the collated/uncollated count when collate is on. (Yasuhiro Matsumoto) v7.4.461 Bram Moolenaar 2014-09-27 11:18:19 +02:00
  • da014b9441 updated for version 7.4.460 Problem: Can't build without the quickfix feature. (Erik Falor) Solution: Add a #ifdef. v7.4.460 Bram Moolenaar 2014-09-24 13:26:44 +02:00
  • cddc91ccb4 updated for version 7.4.459 Problem: Can't change the icon after building Vim. Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto) v7.4.459 Bram Moolenaar 2014-09-23 21:53:41 +02:00
  • cfc216e7b0 updated for version 7.4.458 Problem: Issue 252: Cursor moves in a zero-height window. Solution: Check for zero height. (idea by Christian Brabandt) v7.4.458 Bram Moolenaar 2014-09-23 18:37:56 +02:00
  • 1db60c47d9 updated for version 7.4.457 Problem: Using getchar() in an expression mapping may result in K_CURSORHOLD, which can't be recognized. Solution: Add the <CursorHold> key. (Hirohito Higashi) v7.4.457 Bram Moolenaar 2014-09-23 16:49:46 +02:00
  • b8ee25acab updated for version 7.4.456 Problem: 'backupcopy' is global, cannot write only some files in a different way. Solution: Make 'backupcopy' global-local. (Christian Brabandt) v7.4.456 Bram Moolenaar 2014-09-23 15:45:08 +02:00
  • 4b9d637e9c updated for version 7.4.455 Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H) Solution: Pass the 'wildignorecase' flag around. v7.4.455 Bram Moolenaar 2014-09-23 14:24:40 +02:00
  • d355c50a2a updated for version 7.4.454 Problem: When using a Visual selection of multiple words and doing CTRL-W_] it jumps to the tag matching the word under the cursor, not the selected text. (Patrick hemmer) Solution: Do not reset Visual mode. (idea by Christian Brabandt) v7.4.454 Bram Moolenaar 2014-09-23 13:48:43 +02:00
  • 91e15e13da Updated runtime files. Bram Moolenaar 2014-09-19 22:38:48 +02:00
  • 3fa57e0d50 updated for version 7.4.453 Problem: Still can't build with tiny features. Solution: Add #ifdef. v7.4.453 Bram Moolenaar 2014-09-19 22:23:26 +02:00
  • eb21e4ccf5 updated for version 7.4.452 Problem: Can't build with tiny features. (Tony Mechelynck) Solution: Use "return" instead of "break". v7.4.452 Bram Moolenaar 2014-09-19 22:05:53 +02:00
  • 1ecfd9cb09 updated for version 7.4.451 Problem: Calling system() with empty input gives an error for writing the temp file. Solution: Do not try writing if the string length is zero. (Olaf Dabrunz) v7.4.451 Bram Moolenaar 2014-09-19 20:45:23 +02:00
  • 9c8d9e1952 updated for version 7.4.450 Problem: Not all commands that edit another buffer support the +cmd argument. Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski) v7.4.450 Bram Moolenaar 2014-09-19 20:07:26 +02:00
  • 5bfa2ed6e4 updated for version 7.4.449 Problem: Can't easily close the help window. (Chris Gaal) Solution: Add ":helpclose". (Christian Brabandt) v7.4.449 Bram Moolenaar 2014-09-19 19:39:34 +02:00
  • 4ee40b0515 updated for version 7.4.448 Problem: Using ETO_IGNORELANGUAGE causes problems. Solution: Remove this flag. (Paul Moore) v7.4.448 Bram Moolenaar 2014-09-19 16:13:53 +02:00
  • b4b43bb572 updated for version 7.4.447 Problem: Spell files from Hunspell may generate a lot of errors. Solution: Add the IGNOREEXTRA flag. v7.4.447 Bram Moolenaar 2014-09-19 16:04:11 +02:00
  • 5d2bae8b1c updated for version 7.4.446 Problem: In some situations, when setting up an environment to trigger an autocommand, the environment is not properly restored. Solution: Check the return value of switch_win() and call restore_win() always. (Daniel Hahler) v7.4.446 Bram Moolenaar 2014-09-19 14:26:36 +02:00
  • 714db3bb81 updated for version 7.4.445 Problem: Clipboard may be cleared on startup. Solution: Set clip_did_set_selection to -1 during startup. (Christian Brabandt) v7.4.445 Bram Moolenaar 2014-09-19 13:46:52 +02:00
  • 103650de90 updated for version 7.4.444 Problem: Reversed question mark not recognized as punctuation. (Issue 258) Solution: Add the Supplemental Punctuation range. v7.4.444 Bram Moolenaar 2014-09-15 14:25:54 +02:00
  • 3516928c75 updated for version 7.4.443 Problem: Error reported by ubsan when running test 72. Solution: Add type cast to unsigned. (Dominique Pelle) v7.4.443 Bram Moolenaar 2014-09-11 22:50:09 +02:00
  • 3089a1068d updated for version 7.4.442 Problem: Using unitinialized variable. Solution: Pass the first window of the tabpage. v7.4.442 Bram Moolenaar 2014-09-09 23:11:49 +02:00
  • 6e932461cb Update runtime files. Bram Moolenaar 2014-09-09 18:48:09 +02:00
  • 58da707d24 updated for version 7.4.441 Problem: Endless loop and other problems when 'cedit' is set to CTRL-C. Solution: Do not call ex_window() when ex_normal_busy or got_int was set. (Yasuhiro Matsumoto) v7.4.441 Bram Moolenaar 2014-09-09 18:45:49 +02:00
  • 834def3872 updated for version 7.4.440 Problem: Omni complete popup drawn incorrectly. Solution: Call validate_cursor() instead of check_cursor(). (Hirohito Higashi) v7.4.440 Bram Moolenaar 2014-09-09 18:29:33 +02:00
  • f638cbce76 updated for version 7.4.439 Problem: Duplicate message in message history. Some quickfix messages appear twice. (Gary Johnson) Solution: Do not reset keep_msg too early. (Hirohito Higashi) v7.4.439 Bram Moolenaar 2014-09-09 17:47:38 +02:00
  • 5a4eceb02a updated for version 7.4.438 Problem: Cached values for 'cino' not reset for ":set all&". Solution: Call parse_cino(). (Yukihiro Nakadaira) v7.4.438 Bram Moolenaar 2014-09-09 17:33:07 +02:00
  • fb03140730 updated for version 7.4.437 Problem: New and old regexp engine are not consistent. Solution: Also give an error for "\ze*" for the old regexp engine. v7.4.437 Bram Moolenaar 2014-09-09 17:18:49 +02:00
  • 371932a775 updated for version 7.4.436 Problem: ml_get error for autocommand that moves the cursor of the current window. Solution: Check the cursor position after switching back to the current buffer. (Christian Brabandt) v7.4.436 Bram Moolenaar 2014-09-09 16:59:38 +02:00
  • 0026d47d8c updated for version 7.4.435 Problem: Line formatting behaves differently when 'linebreak' is set. (mvxxc) Solution: Disable 'linebreak' temporarily. (Christian Brabandt) v7.4.435 Bram Moolenaar 2014-09-09 16:32:39 +02:00
  • 0e2ea1beb4 updated for version 7.4.434 Problem: gettabvar() is not consistent with getwinvar() and getbufvar(). Solution: Return a dict with all variables when the varname is empty. (Yasuhiro Matsumoto) v7.4.434 Bram Moolenaar 2014-09-09 16:13:08 +02:00
  • 13e2a0af66 updated for version 7.4.433 Problem: Test 75 fails on MS-Windows. Solution: Use ":normal" instead of feedkeys(). (Michael Soyka) v7.4.433 Bram Moolenaar 2014-09-09 13:52:58 +02:00
  • 14993322b1 updated for version 7.4.432 Problem: When the startup code expands command line arguments, setting 'encoding' will not properly convert the arguments. Solution: Call get_cmd_argsW() early in main(). (Yasuhiro Matsumoto) v7.4.432 Bram Moolenaar 2014-09-09 12:25:33 +02:00
  • 120f4a878f updated for version 7.4.431 Problem: Compiler warning. Solution: Add type cast. (Mike Williams) v7.4.431 Bram Moolenaar 2014-09-09 12:22:06 +02:00
  • 5d5fbe7a2b updated for version 7.4.430 Problem: test_listlbr fails when compiled with normal features. Solution: Check for the +conceal feature. v7.4.430 Bram Moolenaar 2014-08-30 18:10:18 +02:00
  • 84d8cdd769 updated for version 7.4.429 Problem: Build fails with fewer features. (Elimar Riesebieter) Solution: Add #ifdef. v7.4.429 Bram Moolenaar 2014-08-30 13:32:06 +02:00
  • c40bdee42a updated for version 7.4.428 Problem: executable() may return a wrong result on MS-Windows. Solution: Change the way SearchPath() is called. (Yasuhiro Matsumoto, Ken Takata) v7.4.428 Bram Moolenaar 2014-08-29 17:45:32 +02:00
  • 52a7246f01 updated for version 7.4.427 Problem: When an InsertCharPre autocommand executes system() typeahead may be echoed and messes up the display. (Jacob Niehus) Solution: Do not set cooked mode when invoked from ":silent". v7.4.427 Bram Moolenaar 2014-08-29 15:53:52 +02:00
  • 96f3a49b3b updated for version 7.4.426 Problem: README File missing from list of files. Solution: Update the list of files. v7.4.426 Bram Moolenaar 2014-08-29 15:12:54 +02:00
  • 34401cca5a Update runtime files. Bram Moolenaar 2014-08-29 15:12:19 +02:00
  • 773b158de8 updated for version 7.4.425 Problem: When 'showbreak' is used "gj" may move to the wrong position. (Nazri Ramliy) Solution: Adjust virtcol when 'showbreak' is set. (Christian Brabandt) v7.4.425 Bram Moolenaar 2014-08-29 14:20:51 +02:00
  • d7408fa0ce updated for version 7.4.424 Problem: Get ml_get error when using Python to delete lines in a buffer that is not in a window. issue 248. Solution: Do not try adjusting the cursor for a different buffer. v7.4.424 Bram Moolenaar 2014-08-29 13:49:52 +02:00
  • e4df164692 updated for version 7.4.423 Problem: expand("$shell") does not work as documented. Solution: Do not escape the $ when expanding environment variables. v7.4.423 Bram Moolenaar 2014-08-29 12:58:44 +02:00
  • 49f9dd7b91 updated for version 7.4.422 Problem: When using conceal with linebreak some text is not displayed correctly. (Grüner Gimpel) Solution: Check for conceal mode when using linebreak. (Christian Brabandt) v7.4.422 Bram Moolenaar 2014-08-29 12:08:43 +02:00
  • 2d46e6075b updated for version 7.4.421 Problem: Crash when searching for "\ze*". (Urtica Dioica) Solution: Disallow a multi after \ze and \zs. v7.4.421 Bram Moolenaar 2014-08-29 11:56:32 +02:00
  • a9537d238e updated for version 7.4.420 Problem: It's not obvious how to add a new test. Solution: Add a README file. (Christian Brabandt) v7.4.420 Bram Moolenaar 2014-08-29 10:04:47 +02:00
  • f2d912e8bc updated for version 7.4.419 Problem: Whan part of a list is locked it's possible to make changes. Solution: Check if any of the list items is locked before make a change. (ZyX) v7.4.419 Bram Moolenaar 2014-08-29 09:46:10 +02:00
  • 26f08b06b6 updated for version 7.4.418 Problem: When leaving ":append" the cursor shape is like in Insert mode. (Jacob Niehus) Solution: Do not have State set to INSERT when calling getline(). v7.4.418 Bram Moolenaar 2014-08-29 09:02:27 +02:00
  • 285ed7e049 updated for version 7.4.417 Problem: After splitting a window and setting 'breakindent' the default minimum with is not respected. Solution: Call briopt_check() when copying options to a new window. v7.4.417 Bram Moolenaar 2014-08-24 21:39:49 +02:00
  • 9576508975 updated for version 7.4.416 Problem: Problem with breakindent/showbreak and tabs. Solution: Handle tabs differently. (Christian Brabandt) v7.4.416 Bram Moolenaar 2014-08-24 21:19:25 +02:00
  • 7b61a546d8 Runtime file updates. Bram Moolenaar 2014-08-23 15:31:19 +02:00
  • 92f4baace8 Update version number to 7.4.415 v7.4.415 Bram Moolenaar 2014-08-23 14:18:52 +02:00
  • 5a31b46bff updated for version 7.4.415 Problem: Cannot build. Warning for shadowed variable. (John Little) Solution: Add missing change. Remove declaration. Bram Moolenaar 2014-08-23 14:16:20 +02:00
  • d5005164e1 updated for version 7.4.414 Problem: Cannot define a command only when it's used. Solution: Add the CmdUndefined autocommand event. (partly by Yasuhiro Matsumoto) v7.4.414 Bram Moolenaar 2014-08-22 23:05:54 +02:00
  • fb539273c9 Updated runtime files. Bram Moolenaar 2014-08-22 19:21:47 +02:00
  • d2e8087b53 updated for version 7.4.413 Problem: MS-Windows: Using US international keyboard layout, inserting dead key by pressing space does not always work. Issue 250. Solution: Let MS-Windows translate the message. (John Wellesz) v7.4.413 Bram Moolenaar 2014-08-22 18:44:33 +02:00
  • ce2f2e061d updated for version 7.4.412 Problem: Can't build on Windows XP with MSVC. Solution: Add SUBSYSTEM_VER to the Makefile. (Yongwei Wu) v7.4.412 Bram Moolenaar 2014-08-22 18:12:57 +02:00
  • 1b338d2022 updated for version 7.4.411 Problem: "foo bar" sorts before "foo" with sort(). (John Little) Solution: Avoid putting quotes around strings before comparing them. v7.4.411 Bram Moolenaar 2014-08-22 13:13:27 +02:00
  • 42f06f9dbc updated for version 7.4.410 Problem: Fold does not open after search when there is a CmdwinLeave autocommand. Solution: Restore KeyTyped. (Jacob Niehus) v7.4.410 Bram Moolenaar 2014-08-17 17:24:07 +02:00
  • d5f62b14e1 updated for version 7.4.409 Problem: Can't build with Perl on Fedora 20. Solution: Find xsubpp in another directory. (Michael Henry) v7.4.409 Bram Moolenaar 2014-08-17 17:05:44 +02:00
  • 2a5868ab1e Add files missing from 7.4.408. Bram Moolenaar 2014-08-16 19:45:02 +02:00