de5635c1c8
Accepting request 1199735 from utilities
Ana Guerrero2024-09-10 19:13:23 +00:00
ea6f82f746
- Update to 0.55.0: * Added exact-boundary-match type to the search syntax. When a search term is single-quoted, fzf will search for the exact occurrences of the string with both ends at word boundaries. * [bash] Fuzzy path completion is enabled for all commands: a. If the default completion is not already set b. And if the current bash supports complete -D option * Comments are now allowed in $FZF_DEFAULT_OPTS and $FZF_DEFAULT_OPTS_FILE, e.g. --info=inline-right # Show info on the right of prompt line * Hyperlinks (OSC 8) are now supported in the preview window and in the main window * The default --ellipsis is now ·· instead of ... * [vim] A spec can have exit callback that is called with the exit status of fzf * This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection * Fixed --tmux bottom when the status line is not at the bottom * Fixed extra scroll offset in multi-line mode (--read0 or --wrap)
OBS User smolsheep
2024-09-09 19:41:11 +00:00
ca4477da88
Accepting request 1199734 from home:smolsheep:upgrades
OBS User smolsheep
2024-09-09 19:41:11 +00:00
04064a9390
- Update to 0.54.2: * Fixed incorrect syntax highlighting of truncated multi-line entries
Matej Cepl2024-07-26 10:31:33 +00:00
bd69835da1
- Update to 0.54.2: * Fixed incorrect syntax highlighting of truncated multi-line entries
Matej Cepl2024-07-26 10:31:33 +00:00
f4b174c747
Accepting request 1188813 from utilities
Ana Guerrero2024-07-22 15:17:48 +00:00
c75fb6d340
Accepting request 1188813 from utilities
Ana Guerrero2024-07-22 15:17:48 +00:00
e1bc264b93
- Update to 0.54.1: * fastwalk: add optional sorting and improve documentation * Reverted ALT-C binding of fish to use cd instead of builtin cd. builtin cd was introduced to work around a bug of cd coming from zoxide init --cmd cd fish where it cannot handle -- argument.
OBS User smolsheep
2024-07-20 14:22:03 +00:00
08d65cdaba
Accepting request 1188812 from home:smolsheep:upgrades
OBS User smolsheep
2024-07-20 14:22:03 +00:00
af49eb845b
Accepting request 1186202 from utilities
Ana Guerrero2024-07-08 17:09:23 +00:00
99b1295c0e
Accepting request 1186202 from utilities
Ana Guerrero2024-07-08 17:09:23 +00:00
173299be5e
- Add new "v" prefix to tag in URL - Update to 0.54.0: * Implemented line wrap of long items * Updated shell integration scripts to leverage line wrap * Added --info-command option for customizing the info line * Pointer and marker signs can be set to empty strings * Better cache management and improved rendering for --tail * Improved --sync behavior: When --sync is provided, fzf will not render the interface until the initial filtering and the associated actions (bound to any of start, load, result, or focus) are complete. * GET endpoint is now available from execute and transform actions (it used to timeout due to lock conflict) * Added offset-middle action to place the current item is in the middle of the screen * fzf will not start the initial reader when reload or reload-sync is bound to start event. fzf < /dev/null or : | fzf are no longer required and extraneous load event will not fire due to the empty list. * Fixed crash when using --tiebreak=end with very long items * zsh 5.0 compatibility * Fixed --walker-skip to also skip symlinks to directories * Fixed result event not fired when input stream is not complete * New tags will have v prefix
OBS User smolsheep
2024-07-08 14:23:15 +00:00
ad08a90401
Accepting request 1186201 from home:smolsheep:upgrades
OBS User smolsheep
2024-07-08 14:23:15 +00:00
8bb892da66
Accepting request 1179024 from utilities
Ana Guerrero2024-06-07 13:03:27 +00:00
94f5f8b128
Accepting request 1179024 from utilities
Ana Guerrero2024-06-07 13:03:27 +00:00
1bbbcdb15c
Accepting request 1179023 from home:smolsheep:upgrades
OBS User smolsheep
2024-06-06 13:52:30 +00:00
6360afd21c
Accepting request 1179023 from home:smolsheep:upgrades
OBS User smolsheep
2024-06-06 13:52:30 +00:00
18d5812fc5
- Update to 0.51.0: - Added a new environment variable $FZF_POS exported to the child processes. It's the vertical position of the cursor in the list starting from 1. # Toggle selection to the top or to the bottom seq 30 | fzf --multi --bind 'load:pos(10)' \ --bind 'shift-up:transform:for _ in $(seq $FZF_POS $FZF_MATCH_COUNT); do echo -n +toggle+up; done' \ --bind 'shift-down:transform:for _ in $(seq 1 $FZF_POS); do echo -n +toggle+down; done' - Added --with-shell option to start child processes with a custom shell command and flags gem list | fzf --with-shell 'ruby -e' \ --preview 'pp Gem::Specification.find_by_name({1})' \ --bind 'ctrl-o:execute-silent: spec = Gem::Specification.find_by_name({1}) [spec.homepage, *spec.metadata.filter { _1.end_with?("uri") }.values].uniq.each do system "open", _1 end ' - Added change-multi action for dynamically changing --multi option change-multi - enable multi-select mode with no limit change-multi(NUM) - enable multi-select mode with a limit change-multi(0) - disable multi-select mode - Bug fixes and improvements
Matej Cepl2024-05-01 11:00:50 +00:00
68e8c29611
- Update to 0.51.0: - Added a new environment variable $FZF_POS exported to the child processes. It's the vertical position of the cursor in the list starting from 1. # Toggle selection to the top or to the bottom seq 30 | fzf --multi --bind 'load:pos(10)' \ --bind 'shift-up:transform:for _ in $(seq $FZF_POS $FZF_MATCH_COUNT); do echo -n +toggle+up; done' \ --bind 'shift-down:transform:for _ in $(seq 1 $FZF_POS); do echo -n +toggle+down; done' - Added --with-shell option to start child processes with a custom shell command and flags gem list | fzf --with-shell 'ruby -e' \ --preview 'pp Gem::Specification.find_by_name({1})' \ --bind 'ctrl-o:execute-silent: spec = Gem::Specification.find_by_name({1}) [spec.homepage, *spec.metadata.filter { _1.end_with?("uri") }.values].uniq.each do system "open", _1 end ' - Added change-multi action for dynamically changing --multi option change-multi - enable multi-select mode with no limit change-multi(NUM) - enable multi-select mode with a limit change-multi(0) - disable multi-select mode - Bug fixes and improvements
Matej Cepl2024-05-01 11:00:50 +00:00
be0ad2d94f
Accepting request 1170041 from utilities
Ana Guerrero2024-04-25 18:48:45 +00:00
9f8867dd71
Accepting request 1170041 from utilities
Ana Guerrero2024-04-25 18:48:45 +00:00
5f9a9adadd
Fix the generation of /etc/profile.d/fzf-bash.sh
Matej Cepl2024-04-24 13:59:40 +00:00
d836b42442
Fix the generation of /etc/profile.d/fzf-bash.sh
Matej Cepl2024-04-24 13:59:40 +00:00
5c1b1ece73
- Shell subpackages should be Enahncing (not Supplementing) fzf.
Matej Cepl2024-04-24 12:01:19 +00:00
d90834ded0
- Shell subpackages should be Enahncing (not Supplementing) fzf.
Matej Cepl2024-04-24 12:01:19 +00:00
4b9ad7038d
Accepting request 1167679 from utilities
Ana Guerrero2024-04-15 18:17:41 +00:00
f00c6ccc32
Accepting request 1167679 from utilities
Ana Guerrero2024-04-15 18:17:41 +00:00
676db9efb7
- Update to version 0.50.0: - Search performance optimization. You can observe 50%+ improvement in some scenarios. - Added jump and jump-cancel events that are triggered when leaving jump mode - Added a new environment variable $FZF_KEY exported to the child processes. It's the name of the last key pressed. - fzf can be built with profiling options. See BUILD.md for more information. - Bug fixes
Matej Cepl2024-04-14 17:30:19 +00:00
b6f1aeaeec
- Update to version 0.50.0: - Search performance optimization. You can observe 50%+ improvement in some scenarios. - Added jump and jump-cancel events that are triggered when leaving jump mode - Added a new environment variable $FZF_KEY exported to the child processes. It's the name of the last key pressed. - fzf can be built with profiling options. See BUILD.md for more information. - Bug fixes
Matej Cepl2024-04-14 17:30:19 +00:00
ead4f2effe
Accepting request 1165093 from utilities
Ana Guerrero2024-04-04 20:27:22 +00:00
2a4f0dd9f4
Accepting request 1165093 from utilities
Ana Guerrero2024-04-04 20:27:22 +00:00
a52f0f3e06
Accepting request 1165092 from home:smolsheep:upgrades
OBS User smolsheep
2024-04-04 19:33:19 +00:00
a64768041f
Accepting request 1165092 from home:smolsheep:upgrades
OBS User smolsheep
2024-04-04 19:33:19 +00:00
267730d33e
Accepting request 1163994 from utilities
Ana Guerrero2024-04-02 14:46:32 +00:00
50dc8ab182
Accepting request 1163994 from utilities
Ana Guerrero2024-04-02 14:46:32 +00:00