Skip to content

Commit

Permalink
Update Git submodules.
Browse files Browse the repository at this point in the history
  • Loading branch information
damiendart committed Apr 19, 2024
1 parent 6353362 commit d53235f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vim/pack/plugins/start/fzf
Submodule fzf updated 82 files
+0 −22 .github/ISSUE_TEMPLATE.md
+49 −0 .github/ISSUE_TEMPLATE/issue_template.yml
+4 −4 .github/workflows/codeql-analysis.yml
+2 −2 .github/workflows/depsreview.yaml
+10 −4 .github/workflows/linux.yml
+3 −3 .github/workflows/macos.yml
+24 −0 .github/workflows/sponsors.yml
+2 −2 .github/workflows/typos.yml
+1 −1 .github/workflows/winget.yml
+0 −8 .goreleaser.yml
+1 −1 .tool-versions
+95 −30 ADVANCED.md
+17 −5 BUILD.md
+420 −2 CHANGELOG.md
+3 −2 Dockerfile
+1 −1 LICENSE
+15 −5 Makefile
+13 −9 README-VIM.md
+178 −61 README.md
+74 −0 bin/fzf-preview.sh
+19 −10 bin/fzf-tmux
+33 −38 doc/fzf.txt
+9 −10 go.mod
+26 −18 go.sum
+24 −18 install
+1 −1 install.ps1
+43 −2 main.go
+158 −0 main_test.go
+2 −2 man/man1/fzf-tmux.1
+347 −63 man/man1/fzf.1
+29 −5 plugin/fzf.vim
+285 −82 shell/completion.bash
+66 −36 shell/completion.zsh
+75 −41 shell/key-bindings.bash
+23 −21 shell/key-bindings.fish
+26 −25 shell/key-bindings.zsh
+1 −1 src/LICENSE
+131 −0 src/actiontype_string.go
+94 −56 src/algo/algo.go
+4 −0 src/algo/algo_test.go
+19 −1 src/ansi.go
+3 −0 src/ansi_test.go
+1 −11 src/constants.go
+68 −44 src/core.go
+4 −5 src/history.go
+1 −2 src/history_test.go
+16 −13 src/matcher.go
+56 −33 src/merger.go
+7 −7 src/merger_test.go
+356 −96 src/options.go
+11 −0 src/options_no_pprof.go
+73 −0 src/options_pprof.go
+89 −0 src/options_pprof_test.go
+11 −11 src/options_test.go
+1 −2 src/pattern.go
+1 −1 src/protector/protector_openbsd.go
+106 −46 src/reader.go
+2 −2 src/reader_test.go
+4 −2 src/result.go
+1 −1 src/result_test.go
+141 −22 src/server.go
+894 −238 src/terminal.go
+46 −28 src/terminal_test.go
+23 −2 src/terminal_unix.go
+2 −2 src/tokenizer.go
+4 −0 src/tui/dummy.go
+120 −0 src/tui/eventtype_string.go
+111 −48 src/tui/light.go
+10 −1 src/tui/light_unix.go
+13 −5 src/tui/light_windows.go
+74 −33 src/tui/tcell.go
+29 −27 src/tui/tcell_test.go
+6 −3 src/tui/ttyname_unix.go
+322 −183 src/tui/tui.go
+38 −0 src/util/atexit.go
+24 −0 src/util/atexit_test.go
+4 −4 src/util/chars.go
+14 −3 src/util/util.go
+19 −0 src/util/util_test.go
+564 −30 test/test_go.rb
+4 −0 typos.toml
+1 −0 uninstall

0 comments on commit d53235f

Please sign in to comment.