diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:28:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:28:41 +0000 |
commit | 5d81f50b44ecd1959c7f33ce0c851e456ffcf491 (patch) | |
tree | 76c34dc376017ea0bc8fc9dbd768f07f6cc311ea /debian/patches/progress-linux/0004-disable-BufReadPost.patch | |
parent | Disabling mouse. (diff) | |
download | vim-5d81f50b44ecd1959c7f33ce0c851e456ffcf491.tar.xz vim-5d81f50b44ecd1959c7f33ce0c851e456ffcf491.zip |
Disabling BufReadPost.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/progress-linux/0004-disable-BufReadPost.patch')
-rw-r--r-- | debian/patches/progress-linux/0004-disable-BufReadPost.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/progress-linux/0004-disable-BufReadPost.patch b/debian/patches/progress-linux/0004-disable-BufReadPost.patch new file mode 100644 index 0000000..84265a7 --- /dev/null +++ b/debian/patches/progress-linux/0004-disable-BufReadPost.patch @@ -0,0 +1,21 @@ +Author: Daniel Baumann <daniel.baumann@progress-linux.org> +Description: Disabling BufReadPost. + +diff -Naurp vim.orig/runtime/defaults.vim vim/runtime/defaults.vim +--- vim.orig/runtime/defaults.vim ++++ vim/runtime/defaults.vim +@@ -109,10 +109,10 @@ if 1 + " Don't do it when the position is invalid, when inside an event handler + " (happens when dropping a file on gvim) and for a commit message (it's + " likely a different one than last time). +- autocmd BufReadPost * +- \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit' +- \ | exe "normal! g`\"" +- \ | endif ++ "autocmd BufReadPost * ++ " \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit' ++ " \ | exe "normal! g`\"" ++ " \ | endif + + augroup END + |