- Updated to revision 627, fixes the following problems
* Call for requesting color and ambiwidth is too early. (Hirohito Higashi) * "1gd" may hang. * Bracketed paste is still enabled when executing a shell command. (Michael Smith) * Can't run make with several jobs, creating directories has a race condition. * The cursor line number becomes negative when using :z^ in an empty buffer. (neovim #6557) * Building the command table requires Perl. * Running parallel make after distclean fails. (Manuel Ortega) * Get only one quickfix list after :caddbuf. * Using freed memory when resetting 'indentexpr' while evaluating it. (Dominique Pelle) * Can't build when configure choses "install-sh". (Daniel Hahler) * Warning for uninitialized variable. (John Marriott) * :simalt on MS-Windows does not work properly. * Duplicate test case for quickfix. * Cannot set the valid flag with setqflist(). * Moving folded text is sometimes not correct. * Illegal memory access with z= command. (Dominique Pelle) * Fold test hangs on MS-Windows. * Memory leak when executing quickfix tests. * Test_options fails when run in the GUI. * No test for mapping timing out. * Configure check for return value of tgetent is skipped. * job_stop() often assumes the channel will be closed, while the job may not actually be stopped. (Martin Gammelsæter) * :simalt still does not work. * Cannot add a context to locations. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=442
This commit is contained in:
parent
63b27f8dfc
commit
00ed5ea980
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e292777fc41e1971ad59187dd8f45eb3f14213121153a8d49f51873490bc0963
|
||||
size 13074061
|
3
vim-8.0.0627.tar.gz
Normal file
3
vim-8.0.0627.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95ce59cd03813a8be16bda5834b2ef43e7b703eaf5087149454d238b670c1804
|
||||
size 13117898
|
87
vim.changes
87
vim.changes
@ -1,3 +1,90 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 6 10:22:14 UTC 2017 - idonmez@suse.com
|
||||
|
||||
- Updated to revision 627, fixes the following problems
|
||||
* Call for requesting color and ambiwidth is too early. (Hirohito Higashi)
|
||||
* "1gd" may hang.
|
||||
* Bracketed paste is still enabled when executing a shell command.
|
||||
(Michael Smith)
|
||||
* Can't run make with several jobs, creating directories has a race
|
||||
condition.
|
||||
* The cursor line number becomes negative when using :z^ in an empty
|
||||
buffer. (neovim #6557)
|
||||
* Building the command table requires Perl.
|
||||
* Running parallel make after distclean fails. (Manuel Ortega)
|
||||
* Get only one quickfix list after :caddbuf.
|
||||
* Using freed memory when resetting 'indentexpr' while evaluating
|
||||
it. (Dominique Pelle)
|
||||
* Can't build when configure choses "install-sh". (Daniel Hahler)
|
||||
* Warning for uninitialized variable. (John Marriott)
|
||||
* :simalt on MS-Windows does not work properly.
|
||||
* Duplicate test case for quickfix.
|
||||
* Cannot set the valid flag with setqflist().
|
||||
* Moving folded text is sometimes not correct.
|
||||
* Illegal memory access with z= command. (Dominique Pelle)
|
||||
* Fold test hangs on MS-Windows.
|
||||
* Memory leak when executing quickfix tests.
|
||||
* Test_options fails when run in the GUI.
|
||||
* No test for mapping timing out.
|
||||
* Configure check for return value of tgetent is skipped.
|
||||
* job_stop() often assumes the channel will be closed, while the job
|
||||
may not actually be stopped. (Martin Gammelsæter)
|
||||
* :simalt still does not work.
|
||||
* Cannot add a context to locations.
|
||||
* Changes to eval functionality not documented.
|
||||
* If a job writes to a buffer and the user is typing a command, the screen
|
||||
isn't updated. When a message is displayed the changed buffer
|
||||
may cause it to be cleared. (Ramel Eshed)
|
||||
* Duplication of code for adding a list or dict return value.
|
||||
* Build failure when windows feature is missing.
|
||||
* Coverity warning for not checking return value of dict_add().
|
||||
* Crash when complete() is called after complete_add() in
|
||||
'completefunc'. (Lifepillar)
|
||||
* Off-by-one error in buffer size computation.
|
||||
* Building with gcc 7.1 yields new warnings.
|
||||
* diff mode is insufficiently tested
|
||||
* test_recover fails on some systems.
|
||||
* No test coverage for :spellrepall.
|
||||
* When gF fails to edit the file the cursor still moves to the found
|
||||
line number.
|
||||
* gF test fails on MS-Windows.
|
||||
* gF test fails still on MS-Windows.
|
||||
* The buffer that quickfix caches for performance may become invalid. (Daniel
|
||||
Hahler)
|
||||
* Cannot set the context for a specified quickfix list.
|
||||
* When creating a bufref, then using :bwipe and :new it might get the same
|
||||
memory and bufref_valid() returns true.
|
||||
* Cannot manipulate other than the current quickfix list.
|
||||
* For some people the hint about quitting is not sufficient.
|
||||
* The screen is redrawn when t_BG is set and used to detect the value for
|
||||
'background'.
|
||||
* When t_u7 is sent a few characters in the second screen line are
|
||||
overwritten and not redrawn later. (Rastislav Barlik)
|
||||
* Package directories are added to 'runtimepath' only after loading
|
||||
non-package plugins.
|
||||
* The conf filetype detection is done before ftdetect scripts from packages
|
||||
that are added later.
|
||||
* float2nr() is not exactly right.
|
||||
* Using % with :hardcopy wrongly escapes spaces. (Alexey Muranov)
|
||||
* When setting the cterm background with ":hi Normal" the value of
|
||||
'background' may be set wrongly.
|
||||
* Hardcopy test hangs on MS-Windows.
|
||||
* NFA regex engine handles [0-z] incorrectly.
|
||||
* In the GUI, when a timer uses feedkeys(), it still waits for an
|
||||
event. (Raymond Ko)
|
||||
* Since we only support GTK versions that have it, the ckeck for
|
||||
HAVE_GTK_MULTIHEAD is no longer needed.
|
||||
* The ":stag" command does not respect 'switchbuf'.
|
||||
* Using a text object to select quoted text fails when 'selection' is set to
|
||||
"exclusive". (Guraga)
|
||||
* The message "Invalid range" is used for multiple errors.
|
||||
* Warning for unused variable in tiny build. (Tony Mechelynck)
|
||||
* shellescape() always escapes a newline, which does not work with some
|
||||
shells. (Harm te Hennepe)
|
||||
* In the GUI the cursor may flicker.
|
||||
* When 'wrapscan' is off "gn" does not select the whole pattern when it's
|
||||
the last one in the text. (KeyboardFire)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 28 10:58:31 UTC 2017 - werner@suse.de
|
||||
|
||||
|
8
vim.spec
8
vim.spec
@ -17,8 +17,8 @@
|
||||
|
||||
|
||||
%define pkg_version 8.0
|
||||
%define patchlevel 0566
|
||||
%define patchlevel_compact 566
|
||||
%define patchlevel 0627
|
||||
%define patchlevel_compact 627
|
||||
%define VIM_SUBDIR vim80
|
||||
%define site_runtimepath %{_datadir}/vim/site
|
||||
%define make make VIMRCLOC=%{_sysconfdir} VIMRUNTIMEDIR=%{_datadir}/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||
@ -90,7 +90,7 @@ Obsoletes: vim-base < %{version}-%{release}
|
||||
Obsoletes: vim-enhanced < %{version}-%{release}
|
||||
Obsoletes: vim-python < %{version}-%{release}
|
||||
Provides: vim_client
|
||||
Conflicts: vim < 8.0
|
||||
Conflicts: vim-base < 8.0
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%{?libperl_requires}
|
||||
%if 0%{?suse_version} > 1200
|
||||
@ -106,8 +106,8 @@ file name completion, block operations, and editing of binary data.
|
||||
|
||||
%package data
|
||||
Summary: Vi IMproved
|
||||
Group: Productivity/Editors/Vi
|
||||
# Used to be in vim-plugins package
|
||||
Group: Productivity/Editors/Vi
|
||||
Obsoletes: vim-plugin-matchit <= 1.13.2
|
||||
Provides: vim-plugin-matchit = 1.13.2
|
||||
BuildArch: noarch
|
||||
|
Loading…
Reference in New Issue
Block a user