diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-05-18 13:08:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-18 13:08:07 +0200 |
| commit | d7dd6007167eac919205404bc4e556237118a7a7 (patch) | |
| tree | d8b12409da742da89a2b7bf4847e5084956b0618 /src/nvim/options.lua | |
| parent | 2d277320295d1380ac093d547206b295bbdcf414 (diff) | |
| parent | e1bdb2a258cbe6c5cb981acc6bac82cd9e7706fb (diff) | |
| download | rneovim-d7dd6007167eac919205404bc4e556237118a7a7.tar.gz rneovim-d7dd6007167eac919205404bc4e556237118a7a7.tar.bz2 rneovim-d7dd6007167eac919205404bc4e556237118a7a7.zip | |
Merge pull request #18562 from famiu/feat/ui/winbar
feat(ui): add `'winbar'`
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 313cace4b2..eb92d47fc8 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2832,6 +2832,16 @@ return { defaults={if_true="menu"} }, { + full_name='winbar', abbreviation='wbr', + short_desc=N_("custom format for the window bar"), + type='string', scope={'global', 'window'}, + alloced=true, + modelineexpr=true, + redraw={'statuslines'}, + varname='p_wbr', + defaults={if_true=""} + }, + { full_name='winblend', abbreviation='winbl', short_desc=N_("Controls transparency level for floating windows"), type='number', scope={'window'}, |