Skip to content

Commit

Permalink
Make it work on Windows
Browse files Browse the repository at this point in the history
Fuzzy Finder needs a slightly different prompt in order to work on Windows.
  • Loading branch information
Welding-Torch committed Apr 20, 2024
1 parent 19dc6b2 commit 0937d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (cfg *Config) Load(file string) error {
}
}
cfg.General.Column = 40
cfg.General.SelectCmd = "fzf --ansi --layout=reverse --border --height=90% --pointer='*' --cycle --prompt='Snippets: '"
cfg.General.SelectCmd = "fzf --ansi --layout=reverse --border --height=90% --pointer=* --cycle --prompt=Snippets:"
cfg.General.Backend = "gist"

cfg.Gist.FileName = "pet-snippet.toml"
Expand Down

0 comments on commit 0937d9a

Please sign in to comment.