aboutsummaryrefslogtreecommitdiffstats
path: root/autoload/xolox/misc/str.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/xolox/misc/str.vim')
-rw-r--r--autoload/xolox/misc/str.vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/autoload/xolox/misc/str.vim b/autoload/xolox/misc/str.vim
deleted file mode 100644
index 901696c..0000000
--- a/autoload/xolox/misc/str.vim
+++ /dev/null
@@ -1,18 +0,0 @@
-" String handling.
-"
-" Author: Peter Odding <peter@peterodding.com>
-" Last Change: May 19, 2013
-" URL: http://peterodding.com/code/vim/misc/
-
-function! xolox#misc#str#compact(s)
- " Compact whitespace in the string given as the first argument.
- return join(split(a:s), " ")
-endfunction
-
-function! xolox#misc#str#trim(s)
- " Trim all whitespace from the start and end of the string given as the
- " first argument.
- return substitute(a:s, '^\_s*\(.\{-}\)\_s*$', '\1', '')
-endfunction
-
-" vim: ts=2 sw=2 et