aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/shebang_create_exec.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/plugin/shebang_create_exec.vim')
-rw-r--r--vim/plugin/shebang_create_exec.vim21
1 files changed, 0 insertions, 21 deletions
diff --git a/vim/plugin/shebang_create_exec.vim b/vim/plugin/shebang_create_exec.vim
deleted file mode 100644
index 401a23b8..00000000
--- a/vim/plugin/shebang_create_exec.vim
+++ /dev/null
@@ -1,21 +0,0 @@
-"
-" shebang_create_exec.vim: Make a file executable on first save if it starts with a
-" shebang.
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-" License: Same as Vim itself
-"
-if exists('g:loaded_shebang_create_exec') || &compatible
- finish
-endif
-if !has('autocmd') || !has('unix') || !exists('*shellescape')
- finish
-endif
-let g:loaded_shebang_create_exec = 1
-
-" Set up hook for before writes to check the buffer for new shebangs
-augroup shebang_create_exec
- autocmd!
- autocmd BufWritePre *
- \ call shebang_create_exec#Check(expand('<afile>:p'))
-augroup END