diff options
author | joe <rbo@gmx.us> | 2025-08-29 17:23:08 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-08-29 17:23:08 +0200 |
commit | 06549448c8e0c2e499bd12001b4ec56ba3752d89 (patch) | |
tree | ccee025bec7bd254ae2c4c31703f17d3c4d0b504 /src/c_init.go | |
parent | fuck good (diff) | |
download | hardflip-06549448c8e0c2e499bd12001b4ec56ba3752d89.tar.gz hardflip-06549448c8e0c2e499bd12001b4ec56ba3752d89.tar.bz2 hardflip-06549448c8e0c2e499bd12001b4ec56ba3752d89.tar.xz hardflip-06549448c8e0c2e499bd12001b4ec56ba3752d89.tar.zst hardflip-06549448c8e0c2e499bd12001b4ec56ba3752d89.zip |
fzf bin plus fix bad behaviour
Diffstat (limited to '')
-rw-r--r-- | src/c_init.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c_init.go b/src/c_init.go index c2c7779..555fb96 100644 --- a/src/c_init.go +++ b/src/c_init.go @@ -66,6 +66,7 @@ type HardOpts struct { Perc bool `yaml:"percent"` Term string `yaml:"terminal"` DefSSH string `yaml:"default_ssh_priv"` + Fuzzer string `yaml:"fuzzy_finder"` file string } @@ -185,7 +186,7 @@ func c_get_options(dir string, load_err *[]error) HardOpts { opts.file = file return opts } - opts, err := c_parse_opts(file) + opts, err := c_parse_opts(file, opts) opts.file = file if err != nil { *load_err = append(*load_err, err) |