aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-05 23:54:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-05 23:54:41 +1200
commit4c9e1258bdd8306bbe29bc73907842a1df3ccf11 (patch)
treee13da24fac49b5b865d53b7cdfef49e2791a2dd3 /plugin
parentMerge branch 'release/v0.2.0' (diff)
parentBump VERSION (diff)
downloadvim-shebang-change-filetype-master.tar.gz
vim-shebang-change-filetype-master.zip
Merge branch 'hotfix/v0.2.1'HEADv0.2.1master
* hotfix/v0.2.1: Specify autocmd group for TextChanged event
Diffstat (limited to 'plugin')
-rw-r--r--plugin/shebang_change_filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/shebang_change_filetype.vim b/plugin/shebang_change_filetype.vim
index 03f5830..b900042 100644
--- a/plugin/shebang_change_filetype.vim
+++ b/plugin/shebang_change_filetype.vim
@@ -17,6 +17,6 @@ augroup shebang_change_filetype
\ call shebang_change_filetype#()
if exists('##TextChanged')
autocmd TextChanged *
- \ doautocmd InsertLeave
+ \ doautocmd shebang_change_filetype InsertLeave
endif
augroup END