| /vim-8.2.3635/src/testdir/ |
| H A D | test_tabline.vim | 1 " Test for tabline 28 let &tabline = tabline 31 call assert_equal(tabline, &tabline) 32 set tabline= 45 let &tabline = tabline 51 set tabline= 61 set tabline=%{bufnr('$')} 70 set tabline= 107 set tabline=%!MyTabLine() 112 set tabline= [all …]
|
| H A D | test_getvar.vim | 93 " tabline when the user closed a window. This test confirms the fix. 97 set tabline=%{assert_equal('value',gettabvar(1,'var_str'))} 101 " closing the split, which triggers the redrawing of the tabline.
|
| H A D | test_modeline.vim | 277 call s:modeline_fails('tabline', 'tabline=Something()', 'E992:')
|
| H A D | test_bufwintabinfo.vim | 65 " tabline adds one row in terminal, not in GUI
|
| H A D | test_winbuf_close.vim | 204 " drawing the tabline helps check that the other tab's windows and buffers
|
| H A D | test_gui.vim | 1128 " Removing the tabline at the end of this test, reduces the window height by 1150 " on the tabline. on Win32 and Motif, the tooltip function is called only 1151 " when the mouse pointer is over the tabline.
|
| H A D | test_options.vim | 1028 " The tabline should be taken into account. 1048 " The tabline should be taken into account.
|
| H A D | test_tabpage.vim | 641 " Return the terminal key code for selecting a tab page from the tabline. This
|
| H A D | test_termcodes.vim | 666 " Test clicking on tab names in the tabline at the top. 724 " Click on "X" in tabline to close current tab i.e. Xtab2.
|
| H A D | test_quickfix.vim | 350 set tabline=foo showtabline=2 357 set tabline& showtabline&
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | tabpage.txt | 16 4. Setting 'tabline' |setting-tabline| 58 |tabline-menu|. 120 the top right to close the current tab page. A custom |'tabline'| may show 182 next tab page. |'tabline'| 305 *tabline-menu* 346 4. Setting 'tabline' *setting-tabline* 348 The 'tabline' option specifies what the line with tab pages labels looks like. 362 The 'tabline' option allows you to define your preferred way to tab pages 366 'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and 371 :set tabline=%!MyTabLine() [all …]
|
| H A D | various.txt | 34 :redrawt[abline] Redraw the tabline. Useful to update the tabline when 35 'tabline' includes an item that doesn't trigger
|
| H A D | gui_x11.txt | 419 By default, the toolbar and the tabline of the GTK+ 3 GUI are somewhat larger
|
| H A D | version7.txt | 328 few systems. The line can be customized with 'tabline', 'guitablabel' and 679 'tabline' expression for text to display in the tab pages line 1604 'tabline' and 'titlestring'. ":verbose set statusline" will mention that it 2525 When highlighting of statusline or tabline is changed there was no redraw to 2644 Motif: The GUI tabline did not use the space above the right scrollbar. Work 2752 check, disable GUI tabline when it's missing. 2851 When closing another tab page from the tabline menu in Insert mode the tabline 3737 Problem: Incremental search doesn't redraw the text tabline. (Ilya Bobir) 3739 Solution: Redraw the tabline after clearing the screen. 3825 text tabline. (Markus Wolf) [all …]
|
| H A D | options.txt | 3945 toolbar, tabline, etc. Instead, the behavior is similar to 3973 present in 'guioptions'. For the non-GUI tab pages line 'tabline' is 6442 'tabline' option after setting the 'scroll' option. 7456 T N For 'tabline': start of tab page N label. Use %T after the last 7458 X N For 'tabline': start of close tab N label. Use %X after the 7660 *'tabline'* *'tal'* 7661 'tabline' 'tal' string (default empty) 7665 tab pages line. See |setting-tabline| for more info. 7677 When changing something that is used in 'tabline' that does not
|
| H A D | tags | 1106 'tabline' options.txt /*'tabline'* 9030 setting-tabline tabpage.txt /*setting-tabline* 9560 tabline-menu tabpage.txt /*tabline-menu*
|
| H A D | quickref.txt | 928 'tabline' 'tal' custom format for the console tab pages line
|
| H A D | index.txt | 1546 |:redrawtabline| :redrawt[abline] force a redraw of the tabline
|
| H A D | version8.txt | 10687 Problem: When using try/catch in 'tabline' it is still considered an 10688 error and the tabline will be disabled. 12760 Problem: Cannot update 'tabline' when a tab was closed. 15591 tabline. 27085 Solution: Account for missing tabline. 30105 'tabline' changes. 33006 Problem: No test for closing tab by click in tabline. 33052 tab by double clicking in the tabline. 39489 Solution: Take the tabline height into account. (closes #5058) 47476 Problem: Tabpage menu and tabline not sufficiently tested. [all …]
|
| H A D | todo.txt | 1468 Patch to avoid redrawing tabline when the popup menu is visible. 2229 Display error when 'tabline' that includes a file name with double-width
|
| H A D | eval.txt | 11992 [1, 1], unless there is a tabline, then it is [2, 1].
|
| /vim-8.2.3635/src/ |
| H A D | gui_gtk_x11.c | 2839 if (gui.tabline != NULL) in get_menu_tool_width() 2859 if (gui.tabline != NULL) in get_menu_tool_height() 3216 if (gui.tabline == NULL) in gui_mch_show_tabline() 3237 return gui.tabline != NULL in gui_mch_showing_tabline() 3256 if (gui.tabline == NULL) in gui_mch_update_tabline() 3288 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline), in gui_mch_update_tabline() 3321 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr); in gui_mch_update_tabline() 3338 if (gui.tabline == NULL) in gui_mch_set_curtab() 3655 gui.tabline = gtk_notebook_new(); in gui_mch_init() 3656 gtk_widget_show(gui.tabline); in gui_mch_init() [all …]
|
| H A D | gui.h | 403 GtkWidget *tabline; // tab pages line handle member
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | vim.vim | 37 …p shortname si smartcase sol spellsuggest sr startofline suffixesadd sws tabline taglength tbidi t…
|
| /vim-8.2.3635/runtime/ |
| H A D | optwin.vim | 550 call <SID>AddOption("tabline", gettext("custom tab pages line"))
|