Skip to content

Instantly share code, notes, and snippets.

@rnek0
Created July 4, 2023 14:52
Show Gist options
  • Save rnek0/7e3bb6898c444c3b93704dc815da4a23 to your computer and use it in GitHub Desktop.
Save rnek0/7e3bb6898c444c3b93704dc815da4a23 to your computer and use it in GitHub Desktop.
❯ git pull
remote: Enumerating objects: 488, done.
remote: Counting objects: 100% (237/237), done.
remote: Compressing objects: 100% (72/72), done.
remote: Total 488 (delta 189), reused 188 (delta 163), pack-reused 251
Réception d'objets: 100% (488/488), 361.74 Kio | 3.81 Mio/s, fait.
Résolution des deltas: 100% (297/297), complété avec 40 objets locaux.
Depuis https://github.com/junegunn/fzf
3364d4d..01302d0 master -> origin/master
* [nouvelle branche] dependabot/github_actions/crate-ci/typos-1.15.9 -> origin/dependabot/github_actions/crate-ci/typos-1.15.9
* [nouvelle branche] dependabot/go_modules/github.com/gdamore/tcell/v2-2.6.0 -> origin/dependabot/go_modules/github.com/gdamore/tcell/v2-2.6.0
* [nouvelle branche] dependabot/go_modules/github.com/mattn/go-isatty-0.0.19 -> origin/dependabot/go_modules/github.com/mattn/go-isatty-0.0.19
* [nouvelle étiquette] 0.39.0 -> 0.39.0
* [nouvelle étiquette] 0.40.0 -> 0.40.0
* [nouvelle étiquette] 0.41.0 -> 0.41.0
* [nouvelle étiquette] 0.41.1 -> 0.41.1
* [nouvelle étiquette] 0.42.0 -> 0.42.0
Mise à jour 3364d4d..01302d0
Fast-forward
.github/workflows/linux.yml | 2 +-
.github/workflows/macos.yml | 2 +-
.github/workflows/typos.yml | 2 +-
.tool-versions | 2 +-
ADVANCED.md | 55 ++++-----
CHANGELOG.md | 106 +++++++++++++++-
Dockerfile | 2 +-
Makefile | 4 +-
README-VIM.md | 6 +-
README.md | 27 +++--
bin/fzf-tmux | 12 +-
doc/fzf.txt | 8 +-
go.mod | 6 +-
go.sum | 10 +-
install | 2 +-
install.ps1 | 2 +-
main.go | 2 +-
man/man1/fzf-tmux.1 | 2 +-
man/man1/fzf.1 | 123 ++++++++++++++-----
plugin/fzf.vim | 30 ++++-
shell/completion.bash | 7 +-
shell/completion.zsh | 5 +-
src/algo/algo.go | 6 +-
src/core.go | 43 +++----
src/matcher.go | 29 +++--
src/merger.go | 88 ++++++++++----
src/merger_test.go | 14 +--
src/options.go | 114 ++++++++++++++----
src/server.go | 22 +++-
src/terminal.go | 323 +++++++++++++++++++++++++++++++++++++------------
src/tui/light.go | 113 +++++++++++-------
src/tui/tcell.go | 69 +++++++----
src/tui/tui.go | 385 +++++++++++++++++++++++++++++++++++------------------------
src/util/util.go | 10 +-
test/test_go.rb | 315 ++++++++++++++++++++++++++++++++++++++++++++++--
35 files changed, 1432 insertions(+), 516 deletions(-)
❯ ls
 bin  shell  BUILD.md  go.sum  main.go  typos.toml
 doc  src  CHANGELOG.md  install  Makefile  uninstall
 man  test  Dockerfile  install.ps1  README-VIM.md
 plugin  ADVANCED.md  go.mod  LICENSE  README.md
❯ ./install
Downloading bin/fzf ...
- Already exists
- Checking fzf executable ... 0.38.0 != 0.42.0
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 1347k 100 1347k 0 0 1079k 0 0:00:01 0:00:01 --:--:-- 2556k
- Checking fzf executable ... 0.42.0
Do you want to enable fuzzy auto-completion? ([y]/n) y
Do you want to enable key bindings? ([y]/n) y
Generate /home/rnek0/.fzf.bash ... OK
Generate /home/rnek0/.fzf.zsh ... OK
Do you want to update your shell configuration files? ([y]/n) y
Update /home/rnek0/.bashrc:
- [ -f ~/.fzf.bash ] && source ~/.fzf.bash
- Already exists: line #1
Update /home/rnek0/.zshrc:
- [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
- Already exists: line #156
Finished. Restart your shell or reload config file.
source ~/.bashrc # bash
source ~/.zshrc # zsh
Use uninstall script to remove fzf.
For more information, see: https://github.com/junegunn/fzf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment