From d086bea354fb4c9d336715e08845df5af56c1d32 Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Dec 01 2004 12:08:08 +0000 Subject: - patchlevel 35 - allow remapping of 'g' (#140747) --- diff --git a/README.patches b/README.patches index 0a6fac2..94e545d 100644 --- a/README.patches +++ b/README.patches @@ -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 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 + 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 diff --git a/vim.spec b/vim.spec index 3b0f4d5..a891333 100644 --- a/vim.spec +++ b/vim.spec @@ -21,7 +21,7 @@ %define baseversion 6.3 %define vimdir vim63 -%define patchlevel 033 +%define patchlevel 035 Summary: The VIM editor. 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 Patch032: ftp://ftp.vim.org/pub/vim/patches/6.3.032 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 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 %patch32 -p0 %patch33 -p0 +%patch34 -p0 +#%patch35 -p0 %patch3000 -p1 -b .syntx %patch3001 -p1 -b .rh1 @@ -498,6 +502,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Dec 01 2004 Karsten Hopp 6.3.035-1 +- patchlevel 35 +- allow remapping of 'g' (#140747) + * Fri Nov 19 2004 Karsten Hopp 6.3.033-1 - patchlevel 33 diff --git a/vimrc b/vimrc index cc198a1..fb957ee 100644 --- a/vimrc +++ b/vimrc @@ -18,7 +18,7 @@ if has("autocmd") " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if line("'\"") > 0 && line ("'\"") <= line("$") | - \ exe "normal g'\"" | + \ exe "normal! g'\"" | \ endif endif