- Update to patchlevel 456, fixes the following problems
* Using many continuation lines can be slow. * Pasting in the command line is slow. * Undo broken when pasting close to the last line. * Crash when a BufWinLeave autocommand closes the only other window. * ":all!" and ":sall!" give error E477, even though the documentation says these are valid commands. * Vim does not support UTF8_STRING for the X selection. * Compiler warnings to size casts in Perl interface. * Search history lines are duplicated. * "it" and "at" don't work properly with a dash in the tag name. * DBCS encoding in a user command does not always work. * When a user complete function returns -1 an error message is given. * Completion of functions stops once a dictionary is encountered. * Storing a float in a session file has an additional '&'. * Pasting in Visual mode using the "" register does not work. * Multi-byte characters in b:browsefilter are not handled correctly. * ":helpgrep" does not trigger QuickFixCmd* autocommands. * ":cd" doesn't work when the path contains wildcards. * When placing a mark while starting up a screen redraw messes up the screen. * Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary completion. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=89
This commit is contained in:
parent
6ae471b0c2
commit
d37297561f
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:952d3169e13434e875588d158ed4da890f3fd0aa2de015593bdd4657fb91cab8
|
oid sha256:f7fd00083725faa417f68ff2588009144c052078f1d070a35b417d094a49941d
|
||||||
size 366696
|
size 425054
|
||||||
|
30
vim.changes
30
vim.changes
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 28 12:58:08 UTC 2012 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Update to patchlevel 456, fixes the following problems
|
||||||
|
* Using many continuation lines can be slow.
|
||||||
|
* Pasting in the command line is slow.
|
||||||
|
* Undo broken when pasting close to the last line.
|
||||||
|
* Crash when a BufWinLeave autocommand closes
|
||||||
|
the only other window.
|
||||||
|
* ":all!" and ":sall!" give error E477, even though the
|
||||||
|
documentation says these are valid commands.
|
||||||
|
* Vim does not support UTF8_STRING for the X selection.
|
||||||
|
* Compiler warnings to size casts in Perl interface.
|
||||||
|
* Search history lines are duplicated.
|
||||||
|
* "it" and "at" don't work properly
|
||||||
|
with a dash in the tag name.
|
||||||
|
* DBCS encoding in a user command does not always work.
|
||||||
|
* When a user complete function returns -1 an error message
|
||||||
|
is given.
|
||||||
|
* Completion of functions stops once a dictionary is encountered.
|
||||||
|
* Storing a float in a session file has an additional '&'.
|
||||||
|
* Pasting in Visual mode using the "" register does not work.
|
||||||
|
* Multi-byte characters in b:browsefilter are not handled correctly.
|
||||||
|
* ":helpgrep" does not trigger QuickFixCmd* autocommands.
|
||||||
|
* ":cd" doesn't work when the path contains wildcards.
|
||||||
|
* When placing a mark while starting up a screen redraw messes up
|
||||||
|
the screen.
|
||||||
|
* Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary
|
||||||
|
completion.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 19 19:00:03 UTC 2012 - coolo@suse.com
|
Sun Feb 19 19:00:03 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
9
vim.spec
9
vim.spec
@ -29,16 +29,15 @@ BuildRequires: gtk2-devel
|
|||||||
%if 0%{?suse_version} > 1200
|
%if 0%{?suse_version} > 1200
|
||||||
BuildRequires: pkgconfig(xt)
|
BuildRequires: pkgconfig(xt)
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: libacl-devel
|
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: ruby-devel
|
BuildRequires: ruby-devel
|
||||||
|
BuildRequires: systemd
|
||||||
BuildRequires: tcl-devel
|
BuildRequires: tcl-devel
|
||||||
BuildRequires: update-alternatives
|
BuildRequires: update-alternatives
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
BuildRequires: systemd
|
|
||||||
#
|
#
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} > 1130
|
%if 0%{?suse_version} > 1130
|
||||||
@ -48,7 +47,7 @@ BuildRequires: gpm
|
|||||||
%endif
|
%endif
|
||||||
#
|
#
|
||||||
%define pkg_version 7.3
|
%define pkg_version 7.3
|
||||||
%define official_ptchlvl 382
|
%define official_ptchlvl 456
|
||||||
%define VIM_SUBDIR vim73
|
%define VIM_SUBDIR vim73
|
||||||
%define site_runtimepath /usr/share/vim/site
|
%define site_runtimepath /usr/share/vim/site
|
||||||
#
|
#
|
||||||
@ -220,9 +219,9 @@ Summary: dummy package for a subpackage only build in the buildservice
|
|||||||
Group: Productivity/Editors/Vi
|
Group: Productivity/Editors/Vi
|
||||||
PreReq: %{gvim_prereq}
|
PreReq: %{gvim_prereq}
|
||||||
PreReq: update-alternatives
|
PreReq: update-alternatives
|
||||||
Provides: vim_client
|
|
||||||
Provides: gvim_client
|
Provides: gvim_client
|
||||||
Provides: vi
|
Provides: vi
|
||||||
|
Provides: vim_client
|
||||||
|
|
||||||
%description -n gvim-enhanced
|
%description -n gvim-enhanced
|
||||||
dummy package for a subpackage only build in the buildservice
|
dummy package for a subpackage only build in the buildservice
|
||||||
@ -240,8 +239,8 @@ Requires: gvim_client
|
|||||||
Provides: gvim-base = %{version}
|
Provides: gvim-base = %{version}
|
||||||
Provides: gvim-enhanced = %{version}
|
Provides: gvim-enhanced = %{version}
|
||||||
Provides: gvim_client
|
Provides: gvim_client
|
||||||
Provides: vim_client
|
|
||||||
Provides: vi
|
Provides: vi
|
||||||
|
Provides: vim_client
|
||||||
|
|
||||||
%description -n gvim
|
%description -n gvim
|
||||||
Copy and modify /usr/share/vim/current/gvimrc to ~/.gvimrc if needed.
|
Copy and modify /usr/share/vim/current/gvimrc to ~/.gvimrc if needed.
|
||||||
|
Loading…
Reference in New Issue
Block a user