aboutsummaryrefslogtreecommitdiff
path: root/vim/config/join.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/join.vim')
-rw-r--r--vim/config/join.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/vim/config/join.vim b/vim/config/join.vim
deleted file mode 100644
index ebf42a8b..00000000
--- a/vim/config/join.vim
+++ /dev/null
@@ -1,10 +0,0 @@
-" Don't join lines with two spaces at the end of sentences; I don't two-space,
-" despite the noble Steve Losh's exhortations
-set nojoinspaces
-
-" Rebind normal J to run plugin-defined join that doesn't jump around, but
-" only if we have the eval feature, because otherwise this mapping won't exist
-" and we should keep the default behaviour
-if has('eval')
- nmap J <Plug>FixedJoin
-endif