diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-04-05 00:21:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 00:21:51 +0200 |
commit | 9b2d4ff625c59961288dfb2708cc94516667b2ad (patch) | |
tree | e3c00985f13558020766a21b15fb0a3a530a530c /src/nvim/buffer_defs.h | |
parent | 160c9fd126220d6e79204f637ac4bcd999527d4b (diff) | |
parent | a4d3804837e865ca11d2fd0701d23f7eda4da4e4 (diff) | |
download | rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.tar.gz rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.tar.bz2 rneovim-9b2d4ff625c59961288dfb2708cc94516667b2ad.zip |
Merge pull request #14227 from bfredl/bordaa3
Border: allow to enable/disable specific border edges
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index b36b7beab8..b57e58929e 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1085,6 +1085,7 @@ typedef struct { bool focusable; WinStyle style; bool border; + bool shadow; schar_T border_chars[8]; int border_hl_ids[8]; int border_attr[8]; @@ -1266,7 +1267,7 @@ struct window_S { int w_height_request; int w_width_request; - int w_border_adj; + int w_border_adj[4]; // top, right, bottom, left // outer size of window grid, including border int w_height_outer; int w_width_outer; |