From bb24000fda64191de973de8b263682bbe2ad3209 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 23:26:37 +1200 Subject: Switch to two-spacing --- README.md | 2 +- doc/shebang_create_exec.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7dd6da8..45eba31 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ successful save. License ------- -Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself. +Copyright (c) [Tom Ryder][1]. Distributed under the same terms as Vim itself. See `:help license`. [1]: https://sanctum.geek.nz/ diff --git a/doc/shebang_create_exec.txt b/doc/shebang_create_exec.txt index 1cf16be..d5995d4 100644 --- a/doc/shebang_create_exec.txt +++ b/doc/shebang_create_exec.txt @@ -10,7 +10,7 @@ successful save. REQUIREMENTS *shebang_create_exec-requirements* This plugin only loads if 'compatible' is not set, and requires the |+autocmd| -and |+unix| features. It also requires the |shellescape()| function that was +and |+unix| features. It also requires the |shellescape()| function that was added in |version-7.0| patch 111. AUTHOR *shebang_create_exec-author* -- cgit v1.2.3 From e949a0316e00333f322f23fc90f14b00fb58e910 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 23:27:44 +1200 Subject: Remove unneeded variable scoping --- plugin/shebang_create_exec.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/shebang_create_exec.vim b/plugin/shebang_create_exec.vim index 401a23b..91d2f84 100644 --- a/plugin/shebang_create_exec.vim +++ b/plugin/shebang_create_exec.vim @@ -5,13 +5,13 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_shebang_create_exec') || &compatible +if exists('loaded_shebang_create_exec') || &compatible finish endif if !has('autocmd') || !has('unix') || !exists('*shellescape') finish endif -let g:loaded_shebang_create_exec = 1 +let loaded_shebang_create_exec = 1 " Set up hook for before writes to check the buffer for new shebangs augroup shebang_create_exec -- cgit v1.2.3 From c43a3e4902ad8c53f80b6a1d0261be4a22e4db8d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 23:28:41 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 17e51c3..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 +0.2.0 -- cgit v1.2.3