diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 10:07:55 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 10:07:55 +1200 |
commit | e9b47ddd71ab97c2ca608d26e10eb3d818e68cc6 (patch) | |
tree | 887095ce03eae8efec0c7f0ed21531f2f945d3ff /vim | |
parent | Add .vimrc reload binding (diff) | |
download | dotfiles-e9b47ddd71ab97c2ca608d26e10eb3d818e68cc6.tar.gz dotfiles-e9b47ddd71ab97c2ca608d26e10eb3d818e68cc6.zip |
Restore 'esckeys' setting
I remember now; otherwise things hang at the end of insert mode, which
is a bit rubbish.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -56,6 +56,9 @@ set comments= " column with @ symbols instead, which I don't find very helpful set display=lastline +" Don't wait to see if Escape in insert mode precedes a key for an Alt binding +set noesckeys + " Try to set the 'j' flag for 'formatoptions', to automatically delete comment " leaders when joining lines, if supported if v:version >= 704 || v:version == 703 && has('patch541') |