aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/redact_pass.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/autoload/redact_pass.vim b/autoload/redact_pass.vim
index da1c101..8703213 100644
--- a/autoload/redact_pass.vim
+++ b/autoload/redact_pass.vim
@@ -2,7 +2,8 @@
function! redact_pass#CheckArgsRedact() abort
" Ensure there's one argument and it's the matched file
- if argc() != 1 || fnamemodify(argv(0), ':p') !=# expand('<afile>:p')
+ if argc() != 1
+ \ || fnamemodify(argv(0), ':p') !=# expand('<afile>:p')
return
endif