Skip to content

Commit

Permalink
Do some fuzzy finder tweakin'.
Browse files Browse the repository at this point in the history
  • Loading branch information
damiendart committed Jul 1, 2024
1 parent eb6d4df commit 8064b43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vim/plugin/fuzzy-files.vim
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function! s:FuzzyFiles(abandon, ...) abort
\ {
\ 'options': [
\ '--bind', 'ctrl-a:select-all,ctrl-d:deselect-all,ctrl-z:abort',
\ '--bind', 'backward-eof:abort',
\ '--border-label', 'Press F1 for help',
\ '--border-label-pos', '-3:bottom',
\ '--expect', 'ctrl-t,ctrl-v,ctrl-x,ctrl-y,f1',
Expand Down
1 change: 1 addition & 0 deletions .vim/plugin/fuzzy-grep.vim
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ function! s:FuzzyGrep(abandon, options, prompt_embellishment, ...) abort
\ 'options': [
\ '--ansi',
\ '--bind', 'ctrl-a:select-all,ctrl-d:deselect-all,ctrl-z:abort',
\ '--bind', 'backward-eof:abort',
\ '--bind', 'change:reload:sleep 0.05;' . printf(g:fuzzy_grep_source_command, a:options, '{q}'),
\ '--border-label', 'Press F1 for help',
\ '--border-label-pos', '-3:bottom',
Expand Down
1 change: 1 addition & 0 deletions bin/fuzzy-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ fi
FZF_OUTPUT=$(\
echo "$SNIPPET_FILES" | sort | fzf \
--bind='ctrl-z:ignore' \
--bind='backward-eof:abort' \
--border-label="$FZF_LABEL" \
--border-label-pos='-3:bottom' \
--delimiter='/' \
Expand Down

0 comments on commit 8064b43

Please sign in to comment.