From 95c859b4e4d90bd275bc4ba70da6b1e04118cec1 Mon Sep 17 00:00:00 2001 From: bhagwan Date: Sun, 10 Jul 2022 08:19:58 -0700 Subject: [PATCH] highlights: restored default border hl to "Normal" (#473) --- README.md | 2 +- doc/fzf-lua.txt | 4 ++-- lua/fzf-lua/init.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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" },