aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/argument.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/argument.vim')
-rw-r--r--vim/autoload/argument.vim8
1 files changed, 0 insertions, 8 deletions
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