aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-12 23:30:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-12 23:30:58 +1300
commitc53b11072fc2de94b1bc6d13fb1c308b1002efc8 (patch)
treeb33e0f35be103bc159af18ddca86e7ec707f045a
parentMerge branch 'feature/vim-plug-maint' into develop (diff)
downloaddotfiles-c53b11072fc2de94b1bc6d13fb1c308b1002efc8.tar.gz
dotfiles-c53b11072fc2de94b1bc6d13fb1c308b1002efc8.zip
Document each 'backspace' flag in Vim config
-rw-r--r--vim/config/backspace.vim11
1 files changed, 8 insertions, 3 deletions
diff --git a/vim/config/backspace.vim b/vim/config/backspace.vim
index a4089a68..db842e12 100644
--- a/vim/config/backspace.vim
+++ b/vim/config/backspace.vim
@@ -1,3 +1,8 @@
-" Let me backspace over pretty much anything, even if it's not text I inserted
-" in the current session
-set backspace=indent,eol,start
+" Let me backspace over pretty much anything
+set backspace=
+" Allow backspacing over autoindent
+set backspace+=indent
+" Allow backspacing over line breaks
+set backspace+=eol
+" Allow backspacing over the start of the insert operation
+set backspace+=start