aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/tlib_vim/spec/tlib/input.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/spec/tlib/input.vim
parente573b3020c032400eed60b649a2cbf55266e6bb0 (diff)
downloadmyconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.gz
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.bz2
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.zip
Fix submodules
Diffstat (limited to 'vim/bundle/tlib_vim/spec/tlib/input.vim')
m---------vim/bundle/tlib_vim0
-rwxr-xr-xvim/bundle/tlib_vim/spec/tlib/input.vim127
2 files changed, 0 insertions, 127 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/spec/tlib/input.vim b/vim/bundle/tlib_vim/spec/tlib/input.vim
deleted file mode 100755
index f82aea6..0000000
--- a/vim/bundle/tlib_vim/spec/tlib/input.vim
+++ /dev/null
@@ -1,127 +0,0 @@
-" @Author: Tom Link (micathom AT gmail com?subject=[vim])
-" @Website: http://www.vim.org/account/profile.php?user_id=4037
-" @GIT: http://github.com/tomtom/vimtlib/
-" @License: GPL (see http://www.gnu.org/licenses/gpl.txt)
-" @Created: 2009-02-28.
-" @Last Change: 2009-03-14.
-" @Revision: 73
-
-let s:save_cpo = &cpo
-set cpo&vim
-
-
-SpecBegin 'title': 'tlib: Input', 'scratch': '%',
- \ 'after': ':unlet! g:spec_lib_rv',
- \ 'options': [
- \ 'vim',
- \ ]
-
-
-let g:spec_tlib_list = [10, 20, 30, 40, 'a50', 'aa60', 'b70', 'ba80', 90]
-
-
-
-It should return empty values when the user presses <escape>.
-Replay :let g:spec_lib_rv = tlib#input#List('s', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<esc>
-Should be#Equal g:spec_lib_rv, ''
-
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<esc>
-Should be#Equal g:spec_lib_rv, []
-
-Replay :let g:spec_lib_rv = tlib#input#List('si', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<esc>
-Should be#Equal g:spec_lib_rv, 0
-
-
-
-It should pick an item from s-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('s', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<cr>
-Should be#Equal g:spec_lib_rv, 30
-
-
-
-It should return an index from si-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('si', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<cr>
-Should be#Equal g:spec_lib_rv, 3
-
-
-
-It should return a list from a m-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ \<Down>#\<Down>\<Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [20, 40]
-
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<S-Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [20, 30]
-
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<S-up>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [20, 30]
-
-
-
-It should return a list of indices from a mi-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ \<Down>#\<Down>\<Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [2, 4]
-
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<S-Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [2, 3]
-
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ \<Down>\<Down>\<S-up>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [2, 3]
-
-
-
-It should filter items from a s-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('s', '', g:spec_tlib_list)\<cr>
- \ \<Down>a\<Down>\<cr>
-Should be#Equal g:spec_lib_rv, 'aa60'
-
-
-
-It should filter items from a si-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('si', '', g:spec_tlib_list)\<cr>
- \ \<Down>a\<Down>\<cr>
-Should be#Equal g:spec_lib_rv, 6
-
-
-
-It should filter items from a m-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ a\<Down>#\<Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), ['aa60', 'ba80']
-
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ a\<Down>\<S-Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), ['aa60', 'ba80']
-
-Replay :let g:spec_lib_rv = tlib#input#List('m', '', g:spec_tlib_list)\<cr>
- \ a\<Down>\<Down>\<S-up>\<cr>
-Should be#Equal sort(g:spec_lib_rv), ['aa60', 'ba80']
-
-
-
-It should filter items from a mi-type list.
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ a\<Down>#\<Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [6, 8]
-
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ a\<Down>\<S-Down>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [6, 8]
-
-Replay :let g:spec_lib_rv = tlib#input#List('mi', '', g:spec_tlib_list)\<cr>
- \ a\<Down>\<Down>\<S-up>\<cr>
-Should be#Equal sort(g:spec_lib_rv), [6, 8]
-
-
-
-let &cpo = s:save_cpo