summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-02-25[vim] Remove unnecessary `border` management in nvim floating window (#2370)Hiroki Konishi
2021-02-22[vim] Force redraw by exiting and re-entering terminal modeJunegunn Choi
Workaround for Neovim v0.5.0-dev https://github.com/junegunn/fzf/issues/2352#issuecomment-782894123
2021-02-22[vim] Call feedkeys only when the destination buffer is a terminalJunegunn Choi
Fix #2352 Fix https://github.com/junegunn/fzf.vim/issues/1216 Close #2364
2021-02-17README.md: Better exampleJunegunn Choi
2021-02-17Remove redundant assignment (#2356)odeson24
Co-authored-by: Ryan Ou <ryanou@aetherai.com>
2021-02-17Update README.md (#2353)Hussein Esmail
Remove Linuxbrew links since Linuxbrew has been merged into Homebrew * https://brew.sh/2019/02/02/homebrew-2.0.0/
2021-02-17[vim] Use tnoremap only when it's availableJunegunn Choi
Fix #2357
2021-02-15[vim] Stay in terminal mode if fzf#run is called from sinkJunegunn Choi
Fix #2352
2021-02-030.25.10.25.1Junegunn Choi
2021-02-03Clarification on FZF_DEFAULT_COMMANDJunegunn Choi
2021-02-03[zsh] Don't run precmd hooks in cd widget (#2340)Marlon Richert
`precmd` hooks expect the Zsh Line Editor to not be active. Running these when the ZLE is active can lead to unpredictable results. See https://github.com/marlonrichert/zsh-autocomplete/issues/180
2021-02-03[vim] fzf#run should ignore empty 'dir' argumentJunegunn Choi
Fix #2343
2021-02-02Add `close` actionJunegunn Choi
Close #2331
2021-02-01Create codeql-analysis.yml (#2338)Naveen
2021-02-01Fix toggle-preview-wrap actionJunegunn Choi
Fix #2336
2021-02-01Fix segmentation fault on \x1b[0KJunegunn Choi
Fix #2339
2021-02-01[man] Clarify that $SHELL is used to run commands (#2334)step
SHELL is used for execute actions and the preview and default commands.
2021-02-01Update README.md (#2337)Kovarththanan Rajaratnam
--phony was renamed to --disabled in d779ff7e6dcf068fbcf743bed45127c3b857ec92
2021-01-28BUILD.md: Update Go version requirement (#2332)Nanda Lopes
src/options.go:463:9: undefined: strings.ReplaceAll note: module requires Go 1.13make: *** [Makefile:122: target/fzf-linux_amd64] Erro 2
2021-01-28[install.ps1] Change permission of the downloaded binary (#2308)jiangjianshan
Fix #2256
2021-01-20[Makefile] Restore 32-bit targetsJunegunn Choi
Close #2328
2021-01-17[vim] Exit terminal mode before closing FZF window (#2326)Olivier Roques
Fix https://github.com/junegunn/fzf.vim/issues/1216
2021-01-15Replace Travis CI badgeJunegunn Choi
2021-01-15Fix typos in source code (#2322)freddii
2021-01-13Migrate to GitHub ActionsJunegunn Choi
2021-01-13Update README.md (#2321)Vlad Doster
- Correct spelling/grammar
2021-01-13[zsh] Properly reset prompt after completion (#2318)Ruslan Sayfutdinov
2021-01-10[man] Fix typoJunegunn Choi
2021-01-08Update default number version (#2307)calvin ardi
2021-01-07Update README to upgrade using brew upgrade (#2309)nicolasbarra
2021-01-04Fix selection changed on terminal resize (#2306)E.L.K
2021-01-03Use more explicit int-to-string conversion.Elliott Sales de Andrade
This fixes the following errors with Go 1.15: ``` src/options.go:452:69: conversion from untyped int to string yields a string of one rune, not a string of digits (did you mean fmt.Sprint(x)?) src/options.go:463:33: conversion from untyped int to string yields a string of one rune, not a string of digits (did you mean fmt.Sprint(x)?) ```
2021-01-030.25.00.25.0Junegunn Choi
2021-01-03Revert "[zsh] Use shell redirection (#2281)"Junegunn Choi
This reverts commit e9bc7331bde238e84f24b76ebb1f5e18799b15c4. The change is no longer necessary since 090dee8.
2021-01-03Do not disable mouse on SIGCONT before SIGSTOPJunegunn Choi
Fix #2161
2021-01-03Make search toggleableJunegunn Choi
- `--phony` renamed to `--disabled` for consistency - `--no-phony` is now `--enabled` - Added `enable-search`, `disable-search`, and `toggle-search` actions for `--bind` - Added `--color` options: `query` and `disabled` Close #2303
2021-01-01[fzf-tmux] Disable CTRL-ZJunegunn Choi
2021-01-01[shell] Disable CTRL-ZJunegunn Choi
Fix #2289
2020-12-31Update vimdocJunegunn Choi
2020-12-31Add tag links for "doc/fzf.txt"yhu266
2020-12-31[Makefile] Make sure to use bashJunegunn Choi
2020-12-31Add preview-top and preview-bottom actionsJunegunn Choi
2020-12-31Fix alt-, for --expectJunegunn Choi
2020-12-30Update test case for 'first' and 'last'Junegunn Choi
2020-12-30Extend support for alt key chordsJunegunn Choi
"alt-" with any case-sensitive character is allowed
2020-12-30Add "last" action to move the cursor to the last matchJunegunn Choi
This is the opposite of "first" (previously known as "top").
2020-12-23[zsh] Use shell redirection (#2281)林千里
zsh sends SIGCONT when running fzf in a pipe in certain cases, causing mouse mode to become disabled Fix #2101
2020-12-23[Makefile] Support building on machines with `uname -m` == "arm64" (#2291)Loic Nageleisen
2020-12-23Prevent index out of range errorJunegunn Choi
Fix #2293
2020-12-16[vim] Allow closing Vim running fzf without confirmationJunegunn Choi
Close #2287