From d219a51b4f7749d3ddc4b13538ba54e7e6113a94 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 16:42:44 +1200 Subject: Switch to two-spacing --- README.md | 2 +- doc/redact_pass.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eeee26b..d0b4fdb 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ whenever you `pass edit`: 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/redact_pass.txt b/doc/redact_pass.txt index f2e6fff..03e30f5 100644 --- a/doc/redact_pass.txt +++ b/doc/redact_pass.txt @@ -15,13 +15,13 @@ printed whenever you `pass edit`: REQUIREMENTS *redact_pass-requirements* -This plugin is only available if 'compatible' is not set. It also requires the -|+autocmd| feature. +This plugin is only available if 'compatible' is not set. It also requires +the |+autocmd| feature. IMPLEMENTATION *redact_pass-implementation* The options are disabled globally rather than attempting to set them local to -the buffer only, which was the flawed approach of previous versions. This is +the buffer only, which was the flawed approach of previous versions. This is mostly because of the 'viminfo' option; it's global, and there's no meaningful way to exclude information from the sensitive buffer from appearing in it. -- cgit v1.2.3 From 45994608884047cb2d549389c442d818ed254575 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 16:43:44 +1200 Subject: Remove unneeded variable scoping --- plugin/redact_pass.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/redact_pass.vim b/plugin/redact_pass.vim index a3d67e8..47c422d 100644 --- a/plugin/redact_pass.vim +++ b/plugin/redact_pass.vim @@ -8,13 +8,13 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_redact_pass') || &compatible +if exists('loaded_redact_pass') || &compatible finish endif if !has('autocmd') || v:version < 600 finish endif -let g:loaded_redact_pass = 1 +let loaded_redact_pass = 1 " Check whether we should set redacting options or not function! s:CheckArgsRedact() -- cgit v1.2.3 From d9a69da56341fb9ba54b36efa91fdc113f0ca372 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 May 2019 16:45:45 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 26aaba0..f0bb29e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.3.0 -- cgit v1.2.3