Skip to content

Commit 21b9acf

Browse files
committed
feat(profiles): enable hide for all profiles
1 parent 0a3e055 commit 21b9acf

7 files changed

Lines changed: 7 additions & 6 deletions

File tree

lua/fzf-lua/config.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,7 @@ function M.normalize_opts(opts, globals, __resume_key) ---@diagnostic disable
759759
["--wrap"] = true,
760760
["--wrap-sign"] = true,
761761
["--highlight-line"] = false,
762+
["--gutter"] = false,
762763
}
763764
},
764765
}

lua/fzf-lua/profiles/fzf-native.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
return {
2-
{ "default-title" }, -- base profile
2+
{ "default" }, -- base profile
33
desc = "fzf with `bat` as native previewer",
44
winopts = {
55
preview = {

lua/fzf-lua/profiles/fzf-vim.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ local function setup_commands(no_override, prefix)
4646
end
4747

4848
return {
49-
{ "default-prompt" }, -- base profile
49+
{ "default-prompt", "hide" }, -- base profile
5050
fn_load = setup_commands,
5151
desc = "fzf.vim defaults",
5252
winopts = {

lua/fzf-lua/profiles/ivy.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local M = {
2-
{ "default-title" }, -- base profile
2+
{ "default" }, -- base profile
33
desc = "UI at the bottom of the screen",
44
winopts = {
55
row = 1,

lua/fzf-lua/profiles/max-perf.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
return {
2-
{ "default-title" }, -- base profile
2+
{ "default" }, -- base profile
33
desc = "fzf-native with no git|files icons",
44
winopts = { preview = { default = "bat" }, treesitter = false },
55
manpages = { previewer = "man_native" },

lua/fzf-lua/profiles/skim.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
return {
2-
{ "default-title" }, -- base profile
2+
{ "default" }, -- base profile
33
desc = "fzf-lua defaults with `sk` as binary",
44
fzf_bin = "sk",
55
defaults = { compat_warn = false },

lua/fzf-lua/profiles/telescope.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local function hl_validate(hl)
66
end
77

88
return {
9-
{ "default-title" }, -- base profile
9+
{ "default" }, -- base profile
1010
desc = "match telescope default highlights|keybinds",
1111
fzf_opts = {
1212
["--layout"] = "default",

0 commit comments

Comments
 (0)