diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-10-24 20:05:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-24 20:05:02 +0200 |
| commit | 40791f8e8239dcb4dda1c4d61e2aa9088e75bb17 (patch) | |
| tree | 19faf6122ba957b2488956132621df04ae8fe601 /src/nvim/options.lua | |
| parent | 6da2271a04540f6f3bd6d3cae1895bb1ea1b5011 (diff) | |
| parent | a53998ae78902309c225b323e0b8d9f1f75fe147 (diff) | |
| download | rneovim-40791f8e8239dcb4dda1c4d61e2aa9088e75bb17.tar.gz rneovim-40791f8e8239dcb4dda1c4d61e2aa9088e75bb17.tar.bz2 rneovim-40791f8e8239dcb4dda1c4d61e2aa9088e75bb17.zip | |
Merge pull request #20775 from shadmansaleh/fix/opt_tal_not_redrawing_tabline
fix: setting tabline option not redrawing tabline
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 8a883a09c3..ba483d3714 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -19,7 +19,7 @@ -- types: bool, number, string -- lists: (nil), comma, onecomma, flags, flagscomma -- scopes: global, buffer, window --- redraw options: statuslines, current_window, curent_window_only, +-- redraw options: statuslines, tabline, current_window, curent_window_only, -- current_buffer, all_windows, curswant -- defaults: {condition=#if condition, if_true=default, if_false=default} -- #if condition: @@ -2407,7 +2407,7 @@ return { short_desc=N_("custom format for the console tab pages line"), type='string', scope={'global'}, modelineexpr=true, - redraw={'statuslines'}, + redraw={'tabline'}, varname='p_tal', defaults={if_true=""} }, |