From 9931e0888b2419326ae10ebbfae532261c5c125f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:11:56 +0200 Subject: Fix submodules --- vim/bundle/lightline.vim | 1 + vim/bundle/lightline.vim/test/tabs.vim | 99 ---------------------------------- 2 files changed, 1 insertion(+), 99 deletions(-) create mode 160000 vim/bundle/lightline.vim delete mode 100644 vim/bundle/lightline.vim/test/tabs.vim (limited to 'vim/bundle/lightline.vim/test/tabs.vim') diff --git a/vim/bundle/lightline.vim b/vim/bundle/lightline.vim new file mode 160000 index 0000000..430ce2c --- /dev/null +++ b/vim/bundle/lightline.vim @@ -0,0 +1 @@ +Subproject commit 430ce2cb063b39a0c7950cafd617e333acb6759a diff --git a/vim/bundle/lightline.vim/test/tabs.vim b/vim/bundle/lightline.vim/test/tabs.vim deleted file mode 100644 index 92c2c08..0000000 --- a/vim/bundle/lightline.vim/test/tabs.vim +++ /dev/null @@ -1,99 +0,0 @@ -let s:suite = themis#suite('tabs') -let s:assert = themis#helper('assert') - -function! s:suite.before_each() - let g:lightline = { 'winwidth': 180 } - call lightline#init() - tabnew - tabonly -endfunction - -function! s:tab(number, ...) abort - let active = get(a:000, 0, 0) - let last = get(a:000, 1, 0) - return '%' . a:number . 'T%{lightline#onetab(' . a:number . ',' . active . ')}' . (last ? '%T' : '') -endfunction - -function! s:suite.tabs() - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1, 1)], []]) -endfunction - -function! s:suite.tabnew() - tabnew - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_tabnew() - tabnew - tabnew - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2)], [s:tab(3, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_tabfirst() - tabnew - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2, 0, 1)]]) -endfunction - -function! s:suite.tabnew_tabnew_tabfirst() - tabnew - tabnew - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2), s:tab(3, 0, 1)]]) -endfunction - -function! s:suite.tabnew_tabnew_tabprevious() - tabnew - tabnew - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1)], [s:tab(3, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20() - for i in range(19) - tabnew - endfor - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), s:tab(4), '...', s:tab(16), s:tab(17), s:tab(18), s:tab(19)], [s:tab(20, 1, 1)], []]) -endfunction - -function! s:suite.tabnew_20_tabfirst() - for i in range(19) - tabnew - endfor - tabfirst - call s:assert.equals(lightline#tabs(), [[], [s:tab(1, 1)], [s:tab(2), s:tab(3), s:tab(4), s:tab(5), '...', s:tab(17), s:tab(18), s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabfirst_tabnext() - for i in range(19) - tabnew - endfor - tabfirst - tabnext - call s:assert.equals(lightline#tabs(), [[s:tab(1)], [s:tab(2, 1)], [s:tab(3), s:tab(4), s:tab(5), s:tab(6), '...', s:tab(18), s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabnext_10() - for i in range(19) - tabnew - endfor - tabnext 10 - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), '...', s:tab(8), s:tab(9)], [s:tab(10, 1)], [s:tab(11), s:tab(12), '...', s:tab(19), s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabprevious() - for i in range(19) - tabnew - endfor - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), '...', s:tab(15), s:tab(16), s:tab(17), s:tab(18)], [s:tab(19, 1)], [s:tab(20, 0, 1)]]) -endfunction - -function! s:suite.tabnew_20_tabprevious_tabprevious() - for i in range(19) - tabnew - endfor - tabprevious - tabprevious - call s:assert.equals(lightline#tabs(), [[s:tab(1), s:tab(2), s:tab(3), '...', s:tab(15), s:tab(16), s:tab(17)], [s:tab(18, 1)], [s:tab(19), s:tab(20, 0, 1)]]) -endfunction -- cgit v1.2.3