diff options
author | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2023-08-25 10:53:39 +0300 |
---|---|---|
committer | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2023-08-26 19:37:43 +0300 |
commit | 986bf7e78d09286e198b696630254eb097ad0875 (patch) | |
tree | d0915f863f81409785b2f51ac91741b3e14258e9 /runtime/lua/vim/_meta/api.lua | |
parent | 35570e4a11bef061777d741929f74fa66ba3f45a (diff) | |
download | rneovim-986bf7e78d09286e198b696630254eb097ad0875.tar.gz rneovim-986bf7e78d09286e198b696630254eb097ad0875.tar.bz2 rneovim-986bf7e78d09286e198b696630254eb097ad0875.zip |
feat(highlight): add `FloatFooter` highlight group
Problem: No clear separation of floating title and footer highlighting.
Solution: Add new `FloatFooter` highlight group.
Diffstat (limited to 'runtime/lua/vim/_meta/api.lua')
-rw-r--r-- | runtime/lua/vim/_meta/api.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/api.lua b/runtime/lua/vim/_meta/api.lua index 7704a60cf8..dd67fdb38b 100644 --- a/runtime/lua/vim/_meta/api.lua +++ b/runtime/lua/vim/_meta/api.lua @@ -1559,7 +1559,7 @@ function vim.api.nvim_open_term(buffer, opts) end --- Default is `"left"`. --- • footer: Footer (optional) in window border, string or --- list. List should consist of `[text, highlight]` tuples. ---- If string, the default highlight group is `FloatTitle`. +--- If string, the default highlight group is `FloatFooter`. --- • footer_pos: Footer position. Must be set with `footer` --- option. Value can be one of "left", "center", or "right". --- Default is `"left"`. |