aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-08 17:24:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-08 17:24:41 +1200
commitcbb65c137e969cae4d442411c6796a6027316a2e (patch)
treee380d0125a23ea905652c37ca335317997b28529 /vim/autoload
parentUse stridx() for shebang check (diff)
downloaddotfiles-cbb65c137e969cae4d442411c6796a6027316a2e.tar.gz
dotfiles-cbb65c137e969cae4d442411c6796a6027316a2e.zip
Move shebang updating into filetype.vim
Much more logical location.
Diffstat (limited to 'vim/autoload')
-rw-r--r--vim/autoload/shebang.vim7
1 files changed, 0 insertions, 7 deletions
diff --git a/vim/autoload/shebang.vim b/vim/autoload/shebang.vim
deleted file mode 100644
index f39fcf48..00000000
--- a/vim/autoload/shebang.vim
+++ /dev/null
@@ -1,7 +0,0 @@
-" If the first line was changed in the last insert operation, re-run script
-" detection
-function! shebang#Update() abort
- if line("'[") == 1
- runtime scripts.vim
- endif
-endfunction