mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +00:00
msg: do not scroll entire screen (#8088)
This commit is contained in:

committed by
Justin M. Keyes

parent
362346f563
commit
98e7112390
@@ -87,6 +87,7 @@ typedef enum {
|
||||
, HLF_QFL // selected quickfix line
|
||||
, HLF_0 // Whitespace
|
||||
, HLF_INACTIVE // NormalNC: Normal text in non-current windows
|
||||
, HLF_MSGSEP // message separator line
|
||||
, HLF_COUNT // MUST be the last one
|
||||
} hlf_T;
|
||||
|
||||
@@ -137,7 +138,8 @@ EXTERN const char *hlf_names[] INIT(= {
|
||||
[HLF_MC] = "ColorColumn",
|
||||
[HLF_QFL] = "QuickFixLine",
|
||||
[HLF_0] = "Whitespace",
|
||||
[HLF_INACTIVE] = "NormalNC"
|
||||
[HLF_INACTIVE] = "NormalNC",
|
||||
[HLF_MSGSEP] = "MsgSeparator",
|
||||
});
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user