aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-05 23:55:32 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-05 23:55:32 +1200
commitb94dc89321e039f6a616b0774cf3bc53f9994988 (patch)
treee13da24fac49b5b865d53b7cdfef49e2791a2dd3
parentMerge branch 'release/v0.2.0' into develop (diff)
parentBump VERSION (diff)
downloadvim-shebang-change-filetype-develop.tar.gz
vim-shebang-change-filetype-develop.zip
Merge branch 'hotfix/v0.2.1' into developdevelop
* hotfix/v0.2.1: Specify autocmd group for TextChanged event
-rw-r--r--VERSION2
-rw-r--r--plugin/shebang_change_filetype.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 0ea3a94..0c62199 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2.0
+0.2.1
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