From 0350f6c03d8b9d31e25999a31e230722b3815080 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 5 Apr 2020 21:59:14 +1200 Subject: Vim: Use more correct method of escaping :set RHS --- vim/autoload/argument.vim | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 vim/autoload/argument.vim (limited to 'vim/autoload/argument.vim') diff --git a/vim/autoload/argument.vim b/vim/autoload/argument.vim deleted file mode 100644 index 85d75eb1..00000000 --- a/vim/autoload/argument.vim +++ /dev/null @@ -1,8 +0,0 @@ -" 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