aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/tlib_vim/macros/tlib.vim
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-06-30 16:11:56 +0200
committerKarel Kočí <cynerd@email.cz>2016-06-30 16:11:56 +0200
commit9931e0888b2419326ae10ebbfae532261c5c125f (patch)
tree7504be5daccbb7b7d1ea396754de47b11ed790e5 /vim/bundle/tlib_vim/macros/tlib.vim
parente573b3020c032400eed60b649a2cbf55266e6bb0 (diff)
downloadmyconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.gz
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.bz2
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.zip
Fix submodules
Diffstat (limited to 'vim/bundle/tlib_vim/macros/tlib.vim')
m---------vim/bundle/tlib_vim0
-rw-r--r--vim/bundle/tlib_vim/macros/tlib.vim38
2 files changed, 0 insertions, 38 deletions
diff --git a/vim/bundle/tlib_vim b/vim/bundle/tlib_vim
new file mode 160000
+Subproject 5636472e5dba1a4104376ce6bd93cc2546e0248
diff --git a/vim/bundle/tlib_vim/macros/tlib.vim b/vim/bundle/tlib_vim/macros/tlib.vim
deleted file mode 100644
index 3e5a791..0000000
--- a/vim/bundle/tlib_vim/macros/tlib.vim
+++ /dev/null
@@ -1,38 +0,0 @@
-" @Author: Tom Link (micathom AT gmail com?subject=[vim])
-" @GIT: http://github.com/tomtom/tlib_vim/
-" @License: GPL (see http://www.gnu.org/licenses/gpl.txt)
-" @Last Change: 2015-11-09.
-" @Revision: 10
-
-if &cp || exists("loaded_tlib_macros")
- finish
-endif
-let loaded_tlib_macros = 1
-
-let s:save_cpo = &cpo
-set cpo&vim
-
-
-" :display: :TRequire NAME [VERSION [FILE]]
-" Make a certain vim file is loaded.
-"
-" Conventions: If FILE isn't defined, plugin/NAME.vim is loaded. The
-" file must provide a variable loaded_{NAME} that represents the version
-" number.
-command! -nargs=+ TRequire let s:require = [<f-args>]
- \ | if !exists('loaded_'. get(s:require, 0))
- \ | exec 'runtime '. get(s:require, 2, 'plugin/'. get(s:require, 0) .'.vim')
- \ | if !exists('loaded_'. get(s:require, 0)) || loaded_{get(s:require, 0)} < get(s:require, 1, loaded_{get(s:require, 0)})
- \ | echoerr 'Require '. get(s:require, 0) .' >= '. get(s:require, 1, 'any version will do')
- \ | finish
- \ | endif
- \ | endif | unlet s:require
-
-
-" :display: :Ttimecommand CMD
-" Time the execution time of CMD.
-command! -nargs=1 -complete=command Ttimecommand call tlib#cmd#Time(<q-args>)
-
-
-let &cpo = s:save_cpo
-unlet s:save_cpo