diff options
author | Will Hopkins <willothyh@gmail.com> | 2024-02-10 13:06:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 13:06:01 -0800 |
commit | f1f8fa850f741b7c35b8ff9c02ac2810a75e25b1 (patch) | |
tree | bcac569b2f4576881dd00e76af1abdea13accc95 /src/nvim/buffer.c | |
parent | 320eec496c5fc502c542346ffd46800493cbd629 (diff) | |
download | rneovim-f1f8fa850f741b7c35b8ff9c02ac2810a75e25b1.tar.gz rneovim-f1f8fa850f741b7c35b8ff9c02ac2810a75e25b1.tar.bz2 rneovim-f1f8fa850f741b7c35b8ff9c02ac2810a75e25b1.zip |
refactor: rename w_float_config to w_config #27419
Follows up on rename of `FloatConfig` to `WinConfig` in #27397.
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 7c0d415099..38c3ee13aa 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -2773,7 +2773,7 @@ void get_winopts(buf_T *buf) curwin->w_changelistidx = wip->wi_changelistidx; } - if (curwin->w_float_config.style == kWinStyleMinimal) { + if (curwin->w_config.style == kWinStyleMinimal) { didset_window_options(curwin, false); win_set_minimal_style(curwin); } |