- patchlevel 35

- allow remapping of 'g' (#140747)
This commit is contained in:
Karsten Hopp 2004-12-01 12:08:08 +00:00
parent 211ff4636d
commit d086bea354
3 changed files with 12 additions and 2 deletions

View File

@ -56,3 +56,5 @@ Individual patches for Vim 6.3:
1483 6.3.031 pressing Tab when entering a mapping may cause a display error 1483 6.3.031 pressing Tab when entering a mapping may cause a display error
2094 6.3.032 with Python 2.3 using threads doesn't work 2094 6.3.032 with Python 2.3 using threads doesn't work
1552 6.3.033 mapping ending in two-char command doesn't restart Insert mode 1552 6.3.033 mapping ending in two-char command doesn't restart Insert mode
1618 6.3.034 VMS: crash in RTL when using :help, caused by ? wildcard
7883 6.3.035 (extra) RISC OS: compilation problems, better Makefile

View File

@ -21,7 +21,7 @@
%define baseversion 6.3 %define baseversion 6.3
%define vimdir vim63 %define vimdir vim63
%define patchlevel 033 %define patchlevel 035
Summary: The VIM editor. Summary: The VIM editor.
Name: vim Name: vim
@ -83,6 +83,8 @@ Patch030: ftp://ftp.vim.org/pub/vim/patches/6.3.030
Patch031: ftp://ftp.vim.org/pub/vim/patches/6.3.031 Patch031: ftp://ftp.vim.org/pub/vim/patches/6.3.031
Patch032: ftp://ftp.vim.org/pub/vim/patches/6.3.032 Patch032: ftp://ftp.vim.org/pub/vim/patches/6.3.032
Patch033: ftp://ftp.vim.org/pub/vim/patches/6.3.033 Patch033: ftp://ftp.vim.org/pub/vim/patches/6.3.033
Patch034: ftp://ftp.vim.org/pub/vim/patches/6.3.034
Patch035: ftp://ftp.vim.org/pub/vim/patches/6.3.035
Patch3000: vim-6.1-syntax.patch Patch3000: vim-6.1-syntax.patch
Patch3001: vim-6.2-rh1.patch Patch3001: vim-6.2-rh1.patch
@ -236,6 +238,8 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch31 -p0 %patch31 -p0
%patch32 -p0 %patch32 -p0
%patch33 -p0 %patch33 -p0
%patch34 -p0
#%patch35 -p0
%patch3000 -p1 -b .syntx %patch3000 -p1 -b .syntx
%patch3001 -p1 -b .rh1 %patch3001 -p1 -b .rh1
@ -498,6 +502,10 @@ rm -rf $RPM_BUILD_ROOT
%endif %endif
%changelog %changelog
* Wed Dec 01 2004 Karsten Hopp <karsten@redhat.de> 6.3.035-1
- patchlevel 35
- allow remapping of 'g' (#140747)
* Fri Nov 19 2004 Karsten Hopp <karsten@redhat.de> 6.3.033-1 * Fri Nov 19 2004 Karsten Hopp <karsten@redhat.de> 6.3.033-1
- patchlevel 33 - patchlevel 33

2
vimrc
View File

@ -18,7 +18,7 @@ if has("autocmd")
" When editing a file, always jump to the last cursor position " When editing a file, always jump to the last cursor position
autocmd BufReadPost * autocmd BufReadPost *
\ if line("'\"") > 0 && line ("'\"") <= line("$") | \ if line("'\"") > 0 && line ("'\"") <= line("$") |
\ exe "normal g'\"" | \ exe "normal! g'\"" |
\ endif \ endif
endif endif