From 795a51fc0bfdfc252805748ee0cb5cefb1c8fff1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 3 Jan 2020 03:55:28 +1300 Subject: Fix up some blank lines and comments --- vim/autoload/argument.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'vim/autoload/argument.vim') diff --git a/vim/autoload/argument.vim b/vim/autoload/argument.vim index 9e381000..85d75eb1 100644 --- a/vim/autoload/argument.vim +++ b/vim/autoload/argument.vim @@ -1,6 +1,8 @@ +" Escape a single argument for use on an Ex command line; essentially +" a backport of fnameescape() for versions before v7.1.299 +" function! argument#Escape(argument) abort return exists('*fnameescape') \ ? fnameescape(a:argument) \ : escape(a:argument, "\n\r\t".' *?[{`$\%#''"|!<') endfunction - -- cgit v1.2.3