summaryrefslogtreecommitdiffstats
path: root/debian/patches/progress-linux/0003-disable-BufReadPost.patch
blob: c783e6a1fff2fccc6af0c6dc33934a82d295ec64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
@@ -108,12 +108,12 @@ if 1
     " (likely a different one than last time), and when using xxd(1) to filter
     " and edit binary files (it transforms input files back and forth, causing
     " them to have dual nature, so to speak)
-    autocmd BufReadPost *
-      \ let line = line("'\"")
-      \ | if line >= 1 && line <= line("$") && &filetype !~# 'commit'
-      \      && index(['xxd', 'gitrebase'], &filetype) == -1
-      \ |   execute "normal! g`\""
-      \ | endif
+    "autocmd BufReadPost *
+    "  \ let line = line("'\"")
+    "  \ | if line >= 1 && line <= line("$") && &filetype !~# 'commit'
+    "  \      && index(['xxd', 'gitrebase'], &filetype) == -1
+    "  \ |   execute "normal! g`\""
+    "  \ | endif
 
   augroup END