summaryrefslogtreecommitdiff
path: root/test/test_go.rb
AgeCommit message (Collapse)Author
2025-01-25Split integration test file (#4205)Junegunn Choi
2025-01-23Fix RuboCop errorsJunegunn Choi
2025-01-23Fix --info-command when focus event is boundJunegunn Choi
Fix #4198
2025-01-23Add --header-lines-border to separate two headersJunegunn Choi
Examples: # Border only around the header from --header-lines seq 10 | fzf --header 'hello' --header-lines 2 --header-lines-border # Both headers with borders seq 10 | fzf --header 'hello' --header-lines 2 --header-border --header-lines-border # Use 'none' to still separate two headers but without a border seq 10 | fzf --header 'hello' --header-lines 2 --header-border --header-lines-border none --list-border
2025-01-17Allow setting border styles at once with --style full:STYLEJunegunn Choi
2025-01-16Export the current nth value as $FZF_NTHJunegunn Choi
2025-01-15Add gap lineJunegunn Choi
Close #4182
2025-01-13Fix change-nthJunegunn Choi
* Proper clean-up of caches * Force rerender list after the action
2025-01-13Add change-nth actionJunegunn Choi
Example: # Start with --nth 1, then 2, then 3, then back to the default, 1 echo 'foo foobar foobarbaz' | fzf --bind 'space:change-nth(2|3|)' --nth 1 -q foo Close #4172 Close #3109
2025-01-12Align header with the listJunegunn Choi
2025-01-07Fix adaptive height with --header-borderJunegunn Choi
2025-01-06Remove header indentation when unnecessaryJunegunn Choi
# Indent the header to align with the entries in the list fzf --header 'Hello' --header-border --list-border # No extra indentation required fzf --header 'Hello' --header-border
2025-01-05Border around the header sectionJunegunn Choi
Close #4159
2025-01-02Fix RuboCop errorJunegunn Choi
2025-01-02Border around the input section (prompt + info)Junegunn Choi
Close #4154
2024-12-19Add toggle-hscrollJunegunn Choi
2024-12-19Add toggle-multi-line actionJunegunn Choi
2024-12-12Restore previous behaviorJunegunn Choi
2024-12-12Change test case expectation (hard-coded minimum width removed)Junegunn Choi
2024-12-12Respect the properties of the currently active preview window optionsJunegunn Choi
2024-12-03chore: completion test command sequence (#4115)LangLangBart
cleanup zsh global scope
2024-10-01Make RuboCop happyJunegunn Choi
2024-10-01Add --gap option to put empty lines between itemsJunegunn Choi
2024-09-12Redraw/hide scroll offset when 'info' property is changedJunegunn Choi
2024-09-12Add 'noinfo' option to hide scroll offset information in preview windowJunegunn Choi
fzf --preview 'seq 1000' --preview-window noinfo Close #2525
2024-08-29Test cases for non-default --scheme optionsJunegunn Choi
2024-08-29Underscore boundaries should be ranked lowerJunegunn Choi
2024-08-27Change default --ellipsis to '··'Junegunn Choi
2024-06-25Allow removing header line with change-header and transform-headerJunegunn Choi
If the new header is an empty string. fzf --header loading --bind 'start:reload:sleep 3; ls' --bind 'load:change-header:' fzf --header loading --bind 'start:reload:sleep 3; ls' --bind 'load:transform-header:'
2024-06-24Fix rubocop warningJunegunn Choi
2024-06-24Do not start the initial reader if 'reload*' is bound to 'start'Junegunn Choi
2024-06-20Allow empty pointer and markerJunegunn Choi
Close #3879
2024-06-20Add --info-command for customizing the input textJunegunn Choi
Close #3866
2024-06-12[fish] Merge history before searching (#3852)ismay
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2024-06-01Revert "An '--expect' key should execute actions bound to the key"Junegunn Choi
To be backward compatible. Close #3829
2024-05-27Different marker for the first and last line of multi-line entriesJunegunn Choi
Can be configured via `--marker-multi-line`
2024-05-25Update integration test to use named pipesJunegunn Choi
2024-05-22An '--expect' key should execute actions bound to the keyJunegunn Choi
Fix #3810
2024-05-20Implement multi-line display of multi-line itemsJunegunn Choi
2024-05-19Change default pointer and marker characterJunegunn Choi
* Pointer: '▌' * Marker: '▏' They will still be set to '>' if `--no-unicode` is given. Reasons: * They look okay * They work better with multi-line items (WIP)
2024-05-07Refactor the code so that fzf can be used as a library (#3769)Junegunn Choi
2024-05-06Fix flaky test caseJunegunn Choi
2024-05-06Fix `change-preview` reset by `change-preview-window`Junegunn Choi
Fix #3770
2024-05-03Fix --info inline-right not properly clearing the previous outputJunegunn Choi
(seq 100000; sleep 1) | fzf --info inline-right --bind load:change-query:x
2024-04-27Add $FZF_POS environment variableJunegunn Choi
Close #2175 Close #3753
2024-04-27Add --with-shell for shelling out with different command and flags (#3746)Junegunn Choi
Close #3732
2024-04-27Add 'change-multi' actionJunegunn Choi
Close #3754
2024-04-25Fix 'reload' not terminating closed standard input streamJunegunn Choi
Fix #3750
2024-04-19Respect $FZF_DEFAULT_OPTS_FILE in key bindings and completion (#3742)Junegunn Choi
Fix #3740
2024-04-10Add jump and jump-cancel eventsJunegunn Choi
Close #3412 # Default behavior fzf --bind space:jump # Same as jump-accept action fzf --bind space:jump,jump:accept # Accept on jump, abort on cancel fzf --bind space:jump,jump:accept,jump-cancel:abort # Change header on jump-cancel fzf --bind 'space:change-header(Type jump label)+jump,jump-cancel:change-header:Jump cancelled'