SHA256
8
0
forked from pool/vim

- Use mercurial tags instead of applying patches one by one. This

reduces unexpected failures.
- Updated to revision 417, fixes the following problems
  * Can't build with Perl on Fedora 20.
  * Fold does not open after search when there is a CmdwinLeave
    autocommand.
  * "foo bar" sorts before "foo" with sort(). (John Little)
  * Cannot define a command only when it's used.
  * Cannot build.  Warning for shadowed variable. (John Little)
  * Problem with breakindent/showbreak and tabs.
  * After splitting a window and setting 'breakindent' the default
    minimum with is not respected.
  * Screen updating is slow when using matches.
  * Inserting text for Visual block mode, with cursor movement,
    repeats the wrong text. (Aleksandar Ivanov)
  * Visual block insert breaks a multi-byte character.
  * Compiler warning for unused argument and unused variable.
  * Character after "fb" command not mapped if it might be a composing
    character.
  * Test 63 fails when run with GUI-only Vim.
  * Popup menu flickers too much.
  * When 'equalalways' is set a split may report "no room" even though
    there is plenty of room.
  * Title of quickfist list is not kept for setqflist(list, 'r').
  * Accessing freed memory after using setqflist(list, 'r'). (Lcd)
  * Loading python may cause Vim to exit.
  * Get u_undo error when backspacing in Insert mode deletes more than
    one line break. (Ayberk Ozgur)
  * Mapping characters may not work after typing Esc in Insert mode.
  * Bad interaction between preview window and omnifunc.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=224
This commit is contained in:
Ismail Dönmez
2014-08-25 11:50:01 +00:00
committed by Git OBS Bridge
parent d3ab86f6ad
commit 0c332ead23
6 changed files with 74 additions and 28 deletions

View File

@@ -1,3 +1,57 @@
-------------------------------------------------------------------
Mon Aug 25 11:05:19 UTC 2014 - idonmez@suse.com
- Use mercurial tags instead of applying patches one by one. This
reduces unexpected failures.
- Updated to revision 417, fixes the following problems
* Can't build with Perl on Fedora 20.
* Fold does not open after search when there is a CmdwinLeave
autocommand.
* "foo bar" sorts before "foo" with sort(). (John Little)
* Cannot define a command only when it's used.
* Cannot build. Warning for shadowed variable. (John Little)
* Problem with breakindent/showbreak and tabs.
* After splitting a window and setting 'breakindent' the default
minimum with is not respected.
* Screen updating is slow when using matches.
* Inserting text for Visual block mode, with cursor movement,
repeats the wrong text. (Aleksandar Ivanov)
* Visual block insert breaks a multi-byte character.
* Compiler warning for unused argument and unused variable.
* Character after "fb" command not mapped if it might be a composing
character.
* Test 63 fails when run with GUI-only Vim.
* Popup menu flickers too much.
* When 'equalalways' is set a split may report "no room" even though
there is plenty of room.
* Title of quickfist list is not kept for setqflist(list, 'r').
* Accessing freed memory after using setqflist(list, 'r'). (Lcd)
* Loading python may cause Vim to exit.
* Get u_undo error when backspacing in Insert mode deletes more than
one line break. (Ayberk Ozgur)
* Mapping characters may not work after typing Esc in Insert mode.
* Bad interaction between preview window and omnifunc.
* Test 102 fails when compiled with small features.
* When building with tiny or small features building the .mo files
fails.
* When splitting a window the changelist position is wrong.
* "4gro" replaces one character then executes "ooo". (Urtica Dioica)
* With 'linebreak' set and 'list' unset a Tab is not counted
properly. (Kent Sibilev)
* Still sometimes Vim enters Replace mode when starting up.
* Advancing pointer over end of a string.
* No 'cursorline' highlighting when the cursor is on a line with
diff highlighting. (Benjamin Fritz)
* Not easy to detect type of command line window.
* C indent is wrong below an if with wrapped condition followed by
curly braces. (Trevor Powell)
* When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful)
* Matchparen only uses the topmost syntax item.
* Encryption implementation is messy. Blowfish encryption has a
weakness.
* Test 72 crashes under certain conditions. (Kazunobu Kuriyama)
* Valgrind reports errors when running test 72. (Dominique Pelle)
-------------------------------------------------------------------
Tue Jul 22 09:04:57 UTC 2014 - idonmez@suse.com