mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
feat(ui): add 'winbar'
Adds support for a bar at the top of each window, enabled through the `'winbar'` option. Co-authored-by: Björn Linse <bjorn.linse@gmail.com>
This commit is contained in:
@@ -111,7 +111,9 @@ typedef enum {
|
||||
HLF_NFLOAT, // Floating window
|
||||
HLF_MSG, // Message area
|
||||
HLF_BORDER, // Floating window border
|
||||
HLF_COUNT, // MUST be the last one
|
||||
HLF_WBR, // Window bars
|
||||
HLF_WBRNC, // Window bars of not-current windows
|
||||
HLF_COUNT, // MUST be the last one
|
||||
} hlf_T;
|
||||
|
||||
EXTERN const char *hlf_names[] INIT(= {
|
||||
@@ -172,6 +174,8 @@ EXTERN const char *hlf_names[] INIT(= {
|
||||
[HLF_NFLOAT] = "NormalFloat",
|
||||
[HLF_MSG] = "MsgArea",
|
||||
[HLF_BORDER] = "FloatBorder",
|
||||
[HLF_WBR] = "WinBar",
|
||||
[HLF_WBRNC] = "WinBarNC",
|
||||
});
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user