26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
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
|
|
@@ -85,19 +85,6 @@ if 1
|
|
augroup vimStartup
|
|
autocmd!
|
|
|
|
- " When editing a file, always jump to the last known cursor position.
|
|
- " Don't do it when the position is invalid, when inside an event handler
|
|
- " (happens when dropping a file on gvim), for a commit or rebase message
|
|
- " (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) or when running the new tutor
|
|
- autocmd BufReadPost *
|
|
- \ let line = line("'\"")
|
|
- \ | if line >= 1 && line <= line("$") && &filetype !~# 'commit'
|
|
- \ && index(['xxd', 'gitrebase', 'tutor'], &filetype) == -1
|
|
- \ | execute "normal! g`\""
|
|
- \ | endif
|
|
-
|
|
" Set the default background for putty to dark. Putty usually sets the
|
|
" $TERM to xterm and by default it starts with a dark background which
|
|
" makes syntax highlighting often hard to read with bg=light
|