fzf/src
Junegunn Choi 78da928727
Experimental implementation of "reload" action
# Reload input list with different sources
  seq 10 | fzf --bind 'ctrl-a:reload(seq 100),ctrl-b:reload(seq 1000)'

  # Reload as you type
  seq 10 | fzf --bind 'change:reload:seq {q}' --phony

  # Integration with ripgrep
  RG_PREFIX="rg --column --line-number --no-heading --color=always --smart-case "
  INITIAL_QUERY=""
  FZF_DEFAULT_COMMAND="$RG_PREFIX '$INITIAL_QUERY'" \
    fzf --bind "change:reload:$RG_PREFIX {q} || true" \
        --ansi --phony --query "$INITIAL_QUERY"

Close #751
Close #965
Close #974
Close #1736
Related #1723
2019-11-10 11:43:37 +09:00
..
algo Improvements to code quality and readability (#1737) 2019-11-05 09:46:51 +09:00
tui Improvements to code quality and readability (#1737) 2019-11-05 09:46:51 +09:00
util Code cleanup (#1640) 2019-07-19 13:22:35 +09:00
ansi_test.go Always prepend ANSI reset code before re-assembling tokens 2019-03-07 15:29:57 +09:00
ansi.go Always prepend ANSI reset code before re-assembling tokens 2019-03-07 15:29:57 +09:00
cache_test.go Remove special nilItem 2017-08-15 01:10:41 +09:00
cache.go Consolidate Result and rank structs 2017-07-18 03:14:33 +09:00
chunklist_test.go Remove count field from ChunkList 2017-08-16 12:26:06 +09:00
chunklist.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
constants.go --multi to take optional argument to limit the number of selection 2019-11-02 14:25:12 +09:00
core.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
history_test.go Implement tcell-based renderer 2016-11-07 02:32:14 +09:00
history.go Code cleanup (#1640) 2019-07-19 13:22:35 +09:00
item_test.go Micro-optimizations 2016-08-19 02:39:32 +09:00
item.go Remove special nilItem 2017-08-15 01:10:41 +09:00
LICENSE 0.16.3 2017-01-30 01:53:17 +09:00
matcher.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
merger_test.go Further reduce unnecessary rune array conversion 2017-07-21 17:31:11 +09:00
merger.go Remove special nilItem 2017-08-15 01:10:41 +09:00
options_test.go Make fzf pass go vet 2018-03-13 14:56:55 +09:00
options.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
pattern_test.go Make fzf pass go vet 2018-03-13 14:56:55 +09:00
pattern.go Inverse-only matches should not reorder the remaining results 2018-12-19 23:05:29 +09:00
reader_test.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
reader.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
result_others.go Optimize rank comparison on x86 (little-endian) 2017-08-27 01:46:11 +09:00
result_test.go Optimize rank comparison on x86 (little-endian) 2017-08-27 01:46:11 +09:00
result_x86.go Optimize rank comparison on x86 (little-endian) 2017-08-27 01:46:11 +09:00
result.go Improvements to code quality and readability (#1737) 2019-11-05 09:46:51 +09:00
terminal_test.go Improvements to code quality and readability (#1737) 2019-11-05 09:46:51 +09:00
terminal_unix.go Support CTRL-Z (SIGSTOP) 2017-04-28 22:58:08 +09:00
terminal_windows.go Support CTRL-Z (SIGSTOP) 2017-04-28 22:58:08 +09:00
terminal.go Experimental implementation of "reload" action 2019-11-10 11:43:37 +09:00
tokenizer_test.go Code cleanup: remove unnecessary string conversions (#1642) 2019-07-19 13:23:18 +09:00
tokenizer.go Code cleanup (#1640) 2019-07-19 13:22:35 +09:00
update_assets.rb Update release script to upload assets in parallel 2017-01-22 18:33:30 +09:00