- Updated to revision 560, fixes the following problems
* Tests fail with small features plus Python. * Crash when computing buffer count. Problem with range for user commands. Line range wrong in Visual area. * Cannot build with tiny and small features. (Taro Muraoka) * Crash when doing a range assign. * Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. * Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. (Eliseo Martínez) Issue 287 * Warnings for unused arguments when compiling with a combination of features. * Highlighting for multi-line matches is not correct. * Repeated use of vim_snprintf() with a number. * Using "vit" does not select a multi-byte character at the end correctly. * Function name not recognized correctly when inside a function. * curs_rows() function is always called with the second argument false. * "ygn" may yank too much. (Fritzophrenic) Issue 295. * Langmap applies to Insert mode expression mappings. * Various small issues. * Missing part of patch 7.4.519. * test_close_count may fail for some combination of features. * Failed commands in Python interface not handled correctly. * One more small issue. * When the X server restarts Vim may get stuck. * Appending a block in the middle of a tab does not work correctly when virtualedit is set. * Memory leak using :wviminfo. Issue 296. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=247
This commit is contained in:
parent
665d61215d
commit
11674da42f
4
_service
4
_service
@ -3,8 +3,8 @@
|
||||
<param name="scm">hg</param>
|
||||
<param name="url">https://code.google.com/p/vim</param>
|
||||
<param name="filename">vim</param>
|
||||
<param name="versionprefix">7.4.537.hg</param>
|
||||
<param name="revision">v7-4-537</param>
|
||||
<param name="versionprefix">7.4.560.hg</param>
|
||||
<param name="revision">v7-4-560</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="compression">xz</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe51761099406c84e1ab209ea3545da95eca836faf3dea38777fffb77d227e59
|
||||
size 7756892
|
3
vim-7.4.560.hg.6462.tar.xz
Normal file
3
vim-7.4.560.hg.6462.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:360147f442c7317a0e0b3e231b70b4523f9a190dc464662b5de792fdaa487c45
|
||||
size 7760132
|
32
vim.changes
32
vim.changes
@ -1,3 +1,35 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 09:54:11 UTC 2015 - idonmez@suse.com
|
||||
|
||||
- Updated to revision 560, fixes the following problems
|
||||
* Tests fail with small features plus Python.
|
||||
* Crash when computing buffer count. Problem with range for user
|
||||
commands. Line range wrong in Visual area.
|
||||
* Cannot build with tiny and small features. (Taro Muraoka)
|
||||
* Crash when doing a range assign.
|
||||
* Using a range for window and buffer commands has a few problems.
|
||||
Cannot specify the type of range for a user command.
|
||||
* Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three.
|
||||
(Eliseo Martínez) Issue 287
|
||||
* Warnings for unused arguments when compiling with a combination of
|
||||
features.
|
||||
* Highlighting for multi-line matches is not correct.
|
||||
* Repeated use of vim_snprintf() with a number.
|
||||
* Using "vit" does not select a multi-byte character at the end correctly.
|
||||
* Function name not recognized correctly when inside a function.
|
||||
* curs_rows() function is always called with the second argument false.
|
||||
* "ygn" may yank too much. (Fritzophrenic) Issue 295.
|
||||
* Langmap applies to Insert mode expression mappings.
|
||||
* Various small issues.
|
||||
* Missing part of patch 7.4.519.
|
||||
* test_close_count may fail for some combination of features.
|
||||
* Failed commands in Python interface not handled correctly.
|
||||
* One more small issue.
|
||||
* When the X server restarts Vim may get stuck.
|
||||
* Appending a block in the middle of a tab does not work correctly
|
||||
when virtualedit is set.
|
||||
* Memory leak using :wviminfo. Issue 296.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 16 21:55:48 UTC 2014 - lars@linux-schulserver.de
|
||||
|
||||
|
6
vim.spec
6
vim.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package vim
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
%define pkg_version 7.4
|
||||
%define patchlevel 537
|
||||
%define revision 6413
|
||||
%define patchlevel 560
|
||||
%define revision 6462
|
||||
%define VIM_SUBDIR vim74
|
||||
%define site_runtimepath /usr/share/vim/site
|
||||
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||
|
Loading…
Reference in New Issue
Block a user