gitextract_7059u6i9/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── issue_template.yml │ ├── dependabot.yml │ ├── labeler.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── depsreview.yaml │ ├── labeler.yml │ ├── linux.yml │ ├── macos.yml │ ├── sponsors.yml │ ├── typos.yml │ └── winget.yml ├── .gitignore ├── .goreleaser.yml ├── .rubocop.yml ├── .tool-versions ├── ADVANCED.md ├── BUILD.md ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── LICENSE ├── Makefile ├── README-VIM.md ├── README.md ├── SECURITY.md ├── bin/ │ ├── fzf-preview.sh │ └── fzf-tmux ├── doc/ │ └── fzf.txt ├── go.mod ├── go.sum ├── install ├── install.ps1 ├── main.go ├── man/ │ └── man1/ │ ├── fzf-tmux.1 │ └── fzf.1 ├── plugin/ │ └── fzf.vim ├── shell/ │ ├── common.fish │ ├── common.sh │ ├── completion.bash │ ├── completion.fish │ ├── completion.zsh │ ├── key-bindings.bash │ ├── key-bindings.fish │ ├── key-bindings.zsh │ └── update.sh ├── src/ │ ├── LICENSE │ ├── actiontype_string.go │ ├── algo/ │ │ ├── SIMD.md │ │ ├── algo.go │ │ ├── algo_test.go │ │ ├── indexbyte2_amd64.go │ │ ├── indexbyte2_amd64.s │ │ ├── indexbyte2_arm64.go │ │ ├── indexbyte2_arm64.s │ │ ├── indexbyte2_other.go │ │ ├── indexbyte2_test.go │ │ └── normalize.go │ ├── ansi.go │ ├── ansi_test.go │ ├── cache.go │ ├── cache_test.go │ ├── chunklist.go │ ├── chunklist_test.go │ ├── constants.go │ ├── core.go │ ├── functions.go │ ├── history.go │ ├── history_test.go │ ├── item.go │ ├── item_test.go │ ├── matcher.go │ ├── merger.go │ ├── merger_test.go │ ├── options.go │ ├── options_no_pprof.go │ ├── options_pprof.go │ ├── options_pprof_test.go │ ├── options_test.go │ ├── pattern.go │ ├── pattern_test.go │ ├── protector/ │ │ ├── protector.go │ │ └── protector_openbsd.go │ ├── proxy.go │ ├── proxy_unix.go │ ├── proxy_windows.go │ ├── reader.go │ ├── reader_test.go │ ├── result.go │ ├── result_others.go │ ├── result_test.go │ ├── result_x86.go │ ├── server.go │ ├── terminal.go │ ├── terminal_test.go │ ├── terminal_unix.go │ ├── terminal_windows.go │ ├── tmux.go │ ├── tokenizer.go │ ├── tokenizer_test.go │ ├── tui/ │ │ ├── dummy.go │ │ ├── eventtype_string.go │ │ ├── light.go │ │ ├── light_test.go │ │ ├── light_unix.go │ │ ├── light_windows.go │ │ ├── tcell.go │ │ ├── tcell_test.go │ │ ├── ttyname_unix.go │ │ ├── ttyname_windows.go │ │ ├── tui.go │ │ └── tui_test.go │ ├── util/ │ │ ├── atexit.go │ │ ├── atexit_test.go │ │ ├── atomicbool.go │ │ ├── atomicbool_test.go │ │ ├── chars.go │ │ ├── chars_test.go │ │ ├── concurrent_set.go │ │ ├── eventbox.go │ │ ├── eventbox_test.go │ │ ├── slab.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── util_unix.go │ │ └── util_windows.go │ ├── winpty.go │ └── winpty_windows.go ├── test/ │ ├── lib/ │ │ ├── common.fish │ │ ├── common.rb │ │ └── common.sh │ ├── runner.rb │ ├── test_core.rb │ ├── test_exec.rb │ ├── test_filter.rb │ ├── test_layout.rb │ ├── test_preview.rb │ ├── test_raw.rb │ ├── test_server.rb │ ├── test_shell_integration.rb │ └── vim/ │ └── fzf.vader ├── typos.toml └── uninstall