mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
Merge pull request #25148 from glepnir/fixed_opt
fix(float): add fixed option
This commit is contained in:
@@ -966,6 +966,7 @@ typedef struct {
|
||||
VirtText footer_chunks;
|
||||
int footer_width;
|
||||
bool noautocmd;
|
||||
bool fixed;
|
||||
} FloatConfig;
|
||||
|
||||
#define FLOAT_CONFIG_INIT ((FloatConfig){ .height = 0, .width = 0, \
|
||||
@@ -975,7 +976,8 @@ typedef struct {
|
||||
.focusable = true, \
|
||||
.zindex = kZIndexFloatDefault, \
|
||||
.style = kWinStyleUnused, \
|
||||
.noautocmd = false })
|
||||
.noautocmd = false, \
|
||||
.fixed = false })
|
||||
|
||||
// Structure to store last cursor position and topline. Used by check_lnums()
|
||||
// and reset_lnums().
|
||||
|
Reference in New Issue
Block a user