Author: Daniel Baumann 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