diff --git a/README.md b/README.md index 2064cbf..f9809ee 100644 --- a/README.md +++ b/README.md @@ -904,7 +904,7 @@ FzfLua conviniently creates the below highlights: -- value[1] is the setup/call arg option name -- value[2] is the default link if value[1] is undefined FzfLuaNormal = { 'winopts.hl.normal', "Normal" }, - FzfLuaBorder = { 'winopts.hl.border', "FloatBorder" }, + FzfLuaBorder = { 'winopts.hl.border', "Normal" }, FzfLuaCursor = { 'winopts.hl.cursor', "Cursor" }, FzfLuaCursorLine = { 'winopts.hl.cursorline', "CursorLine" }, FzfLuaCursorLineNr = { 'winopts.hl.cursornr', "CursorLineNr" }, diff --git a/doc/fzf-lua.txt b/doc/fzf-lua.txt index 25eabe4..defdcd4 100644 --- a/doc/fzf-lua.txt +++ b/doc/fzf-lua.txt @@ -943,7 +943,7 @@ FzfLua conviniently creates the below highlights: -- value[1] is the setup/call arg option name -- value[2] is the default link if value[1] is undefined FzfLuaNormal = { 'winopts.hl.normal', "Normal" }, - FzfLuaBorder = { 'winopts.hl.border', "FloatBorder" }, + FzfLuaBorder = { 'winopts.hl.border', "Normal" }, FzfLuaCursor = { 'winopts.hl.cursor', "Cursor" }, FzfLuaCursorLine = { 'winopts.hl.cursorline', "CursorLine" }, FzfLuaCursorLineNr = { 'winopts.hl.cursornr', "CursorLineNr" }, @@ -1010,4 +1010,4 @@ I missed your name feel free to contact me and I'll add it below: as baseline for the builtin previewer and his must have plugin nvim-bqf -vim:tw=78:ts=8:ft=help:norl: \ No newline at end of file +vim:tw=78:ts=8:ft=help:norl: diff --git a/lua/fzf-lua/init.lua b/lua/fzf-lua/init.lua index 4e15cb0..1dccf73 100644 --- a/lua/fzf-lua/init.lua +++ b/lua/fzf-lua/init.lua @@ -36,7 +36,7 @@ function M.setup_highlights() local highlights = { FzfLuaNormal = { 'winopts.hl.normal', "Normal" }, - FzfLuaBorder = { 'winopts.hl.border', "FloatBorder" }, + FzfLuaBorder = { 'winopts.hl.border', "Normal" }, FzfLuaCursor = { 'winopts.hl.cursor', "Cursor" }, FzfLuaCursorLine = { 'winopts.hl.cursorline', "CursorLine" }, FzfLuaCursorLineNr = { 'winopts.hl.cursornr', "CursorLineNr" },