Commit Graph

2870 Commits (8ff4e5264188a37fe32cf032a6a1ad88a575fc1e)
 

Author SHA1 Message Date
Junegunn Choi 9dc3ed638a
--walker-skip should also handle symlinks to directories
Fix #3858
4 months ago
dependabot[bot] 0acace1ace
Bump crate-ci/typos from 1.21.0 to 1.22.3 (#3850)
Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.21.0 to 1.22.3.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crate-ci/typos/compare/v1.21.0...v1.22.3)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 months ago
dependabot[bot] 1a2d37e1e6
Bump golang.org/x/term from 0.20.0 to 0.21.0 (#3849)
Bumps [golang.org/x/term](https://github.com/golang/term) from 0.20.0 to 0.21.0.
- [Commits](https://github.com/golang/term/compare/v0.20.0...v0.21.0)

---
updated-dependencies:
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4 months ago
LangLangBart 22adb6494f
chore(shell): Separate declaration and assignment for zsh legacy versions (#3856) 4 months ago
Samara Jinnah e023736c30
[zsh] Prevent glob expansion in history widget (#3855) 4 months ago
Junegunn Choi dca2262fe6
Prefer LightRenderer over tcell on Windows
For mouse support on mintty

Fix #3847
4 months ago
Junegunn Choi 0684a20ea3
Fix invalid mouse offset for --height on Windows 4 months ago
Junegunn Choi a1a72bb8d1
Do not open tmux or winpty in `--filter` mode 4 months ago
ismay 144d55a5be
[fish] Merge history before searching (#3852)
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
4 months ago
Junegunn Choi 7fc13c5cfd
Less aggressive chunk cache invalidation for --tail 4 months ago
Junegunn Choi dfee7af57b
Fix divide by zero error with --tiebreak=end for long items
Fix #3846
4 months ago
junegunn 9b0e2daf02 Deploying to master from @ junegunn/fzf@590060a16b 🚀 4 months ago
Junegunn Choi 590060a16b
Remove unused field 4 months ago
Junegunn Choi 368294edf6
Reduce flickering of the list when the list is truncated by --tail 4 months ago
Junegunn Choi c4a9ccd6af
0.53.0 4 months ago
Junegunn Choi cbf91f2ed3
ADVANCED.md: /dev/tty redirection no longer required 4 months ago
Junegunn Choi b1460d4787
hasPreviewFlags should ignore escaped placeholder
This reload command wouldn't run before the fix:

  : | fzf --bind 'start:reload:echo \{}'
4 months ago
Junegunn Choi 7dc9e14874
Update docs 4 months ago
Junegunn Choi 1616ed543d
Fix index out of bounds error caused by outdated offset 5 months ago
Junegunn Choi dc73fba188
[man] Clarification on --scheme options 5 months ago
Junegunn Choi ef148dfd37
Handle int32 overflow
yes | fzf --tail=10 --preview 'echo "{n}"'
5 months ago
Junegunn Choi 93bbb3032d
Add --tail=NUM to limit the number of items to keep in memory 5 months ago
Junegunn Choi 4c83d8596d
Add new options to bash completion 5 months ago
Junegunn Choi d453e6d7db
Update ADVANCED.md: Use --tmux instead of fzf-tmux 5 months ago
Junegunn Choi c29533994f
Fix invalid default of selected-hl (--color)
It should default to 'hl' instead of 'current-hl'
5 months ago
Junegunn Choi 1afe13b5b5
Merge remote-tracking branch 'origin/master' into devel 5 months ago
Junegunn Choi 36600eaaa9
Update CHANGELOG: clarification 5 months ago
junegunn 3ee1fc2034 Deploying to master from @ junegunn/fzf@124cd70710 🚀 5 months ago
Junegunn Choi e2f93e5a2d
--tmux vs. --height: Last one wins 5 months ago
Junegunn Choi cfdf2f1153
Update README 5 months ago
Junegunn Choi e042143e3f
Immediately close standard output of the child process
Fix #3828
5 months ago
Junegunn Choi 7c613d0d9b
Do not disable --height on mintty (because it works) 5 months ago
Junegunn Choi b00d46bc14
Fix --height on Windows 5 months ago
Junegunn Choi 555b0d235b
Ignore --height option if it's not supported on the platform
This is to make shell integration work out of the box on Git bash.

  eval "$(fzf --bash)"
  vim <CTRL-T>
    # would print '--height option is currently not supported on this platform'
5 months ago
Junegunn Choi 564daf9a7d
Set standard input of 'man' process to os.Stdin 5 months ago
Junegunn Choi 41bcbe342f
Revert "An '--expect' key should execute actions bound to the key"
To be backward compatible.

Close #3829
5 months ago
LangLangBart dbe8dc344e
[fish] Use builtins for cd and history (#3830)
Close #3826
5 months ago
Junegunn Choi e33fb59da1
Update CHANGELOG 5 months ago
Junegunn Choi 7aa88aa115
Fix error message on invalid --tmux option
fzf --tmux foobar
  # not a valid integer: foobar
  # ->
  # invalid tmux option: foobar (expected: [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]])
5 months ago
LangLangBart 2b6d600879
[zsh] Enhance CTRL-R to display multi-line entires (#3823)
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
5 months ago
Junegunn Choi 05c765d442
[fish] Add --nth 2..,.. to allow anchored search against command 5 months ago
Junegunn Choi 49b496269c
Fix index out of bounds error on scroll-down action 5 months ago
Junegunn Choi 7405925952
[bash] Indent multi-line history entries 5 months ago
Junegunn Choi 3afd543a7e
[fish] Use perl instead of sed to strip leading tabs
https://github.com/junegunn/fzf/pull/3807#discussion_r1619520105
5 months ago
Junegunn Choi b4f2cde5ac
[fish] Better multi-line support for CTRL-R
Prepend each entry with an index number so that multi-line entries can
be clearly distinguished.
5 months ago
Junegunn Choi ed53ef7cee
[shell] Add --highlight-line to CTRL-R bindings 5 months ago
Junegunn Choi 12630b124d
Make --tmux argument optional 5 months ago
Junegunn Choi 1d59ac09d2
Pass-through error message from 'tmux display-popup'
fzf --tmux 9999
    # height too large
5 months ago
Junegunn Choi a8f3a0dd59
Merge branch 'master' into devel 5 months ago
Konstantin-Glukhov 124cd70710
[vim] Do not prepend CWD to path starting with a backslash on Windows (#3820)
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
5 months ago