Commit Graph

90 Commits

Author SHA1 Message Date
Junegunn Choi bcda25a513
0.52.0 2024-05-08 00:15:30 +09:00
Junegunn Choi 260a65b0fb
0.51.0 2024-05-01 14:14:06 +09:00
Junegunn Choi f97d275413
0.50.0 2024-04-15 00:02:27 +09:00
Junegunn Choi 62963dcefd
0.49.0 2024-04-05 00:20:26 +09:00
Junegunn Choi d579e335b5
0.48.1 2024-03-17 16:35:35 +09:00
Junegunn Choi 091b7eacba
0.48.0 2024-03-14 00:02:53 +09:00
Junegunn Choi 98ee5e651a
0.47.0 2024-03-10 21:43:41 +09:00
Junegunn Choi 3c0a630475
0.46.1 2024-02-01 18:13:00 +09:00
Junegunn Choi beb2de2dd9
0.46.0 2024-01-23 23:47:24 +09:00
Junegunn Choi 2024010119
0.45.0 2024-01-01 15:38:35 +09:00
Junegunn Choi d7d2ac3951
0.44.1 2023-11-17 19:17:00 +09:00
Junegunn Choi 7320b7df62
0.44.0 2023-11-12 22:08:08 +09:00
Junegunn Choi d3311d9f43
0.43.0 2023-10-15 01:56:05 +09:00
Junegunn Choi d471067e3f
0.42.0 2023-06-15 00:37:41 +09:00
Junegunn Choi 6eb1874c5a
0.41.1 2023-05-27 15:54:22 +09:00
Junegunn Choi 098ef4d7cf
0.41.0 2023-05-26 00:25:09 +09:00
Junegunn Choi fb76893e18
0.40.0 2023-05-01 01:59:21 +09:00
Junegunn Choi 20230402d0
0.39.0 2023-04-02 23:33:37 +09:00
Junegunn Choi 352ea07226
0.38.0 2023-02-15 23:24:42 +09:00
Junegunn Choi 2023012408
0.37.0 2023-01-24 22:11:14 +09:00
Junegunn Choi 2023011763
0.36.0 2023-01-17 01:33:05 +09:00
Junegunn Choi b55f555487
0.35.1 2022-11-18 20:42:56 +09:00
Junegunn Choi d01ae55109
0.35.0 2022-11-12 00:58:06 +09:00
Junegunn Choi 04d0b0223f
0.34.0 2022-09-28 23:22:31 +09:00
Junegunn Choi 6fb41a202a
Add --scheme=[default|path|history] option to choose scoring scheme
Close #2909
Close #2930
2022-08-28 22:22:39 +09:00
Junegunn Choi 4993d19466
0.32.1 2022-08-08 23:57:32 +09:00
Junegunn Choi f0bfeba733
Add new tiebreak: 'chunk'
Favors the line with shorter matched chunk. A chunk is a set of
consecutive non-whitespace characters.

Unlike the default `length`, this new scheme works well with tabular input.

  # length prefers item #1, because the whole line is shorter,
  # chunk prefers item #2, because the matched chunk ("foo") is shorter
  fzf --height=6 --header-lines=2 --tiebreak=chunk --reverse --query=fo << "EOF"
  N | Field1 | Field2 | Field3
  - | ------ | ------ | ------
  1 | hello  | foobar | baz
  2 | world  | foo    | bazbaz
  EOF

If the input does not contain any spaces, `chunk` is equivalent to
`length`. But we're not going to set it as the default because it is
computationally more expensive.

Close #2285
Close #2537
- Not the exact solution to --tiebreak=length not taking --nth into account,
  but this should work. And the added benefit is that it works well even
  when --nth is not provided.
- Adding a bonus point to the last character of a word didn't turn out great.
  The order of the result suddenly changes when you type in the last
  character in the word producing a jarring effect.
2022-08-02 21:48:19 +09:00
Junegunn Choi ecc418ba77
0.31.0 2022-07-21 23:04:57 +09:00
Junegunn Choi d56f605b63
Add `rebind` action for restoring bindings after `unbind`
Fix #2752
Close #2564
2022-04-04 21:54:22 +09:00
Junegunn Choi ef67a45702
Add --ellipsis=.. option
Close #2432

Also see
- #1769
- https://github.com/junegunn/fzf/pull/1844#issuecomment-586663660
2022-03-29 21:35:36 +09:00
Junegunn Choi dc975e8974
0.29.0 2021-12-25 01:46:01 +09:00
Junegunn Choi e4c3ecc57e
0.28.0 2021-11-04 01:05:07 +09:00
Junegunn Choi 4138333f5c
0.27.3 2021-10-15 23:59:56 +09:00
Junegunn Choi e086f0b3fe
0.27.2 2021-06-01 17:00:24 +09:00
Junegunn Choi 0818dbc36a
0.27.1 2021-05-22 13:19:57 +09:00
Junegunn Choi 19759ed36e
0.27.0 2021-04-06 22:53:59 +09:00
Junegunn Choi 1b08f43f82
Advanced preview scroll offset expression to better support fixed header 2021-03-13 02:26:41 +09:00
Junegunn Choi f55c990e86
Add `close` action
Close #2331
2021-02-02 00:11:05 +09:00
Junegunn Choi 8c533e34ea
0.25.0 2021-01-03 00:56:11 +09:00
Junegunn Choi d779ff7e6d
Make search toggleable
- `--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-03 00:15:00 +09:00
Junegunn Choi 00a3610331
0.24.4 2020-12-05 23:24:55 +09:00
Junegunn Choi 6d647e13ff
Add change-prompt action
Close #2270
2020-12-04 20:34:41 +09:00
Junegunn Choi f6269f0193
Add --padding option
Close #2241
2020-11-09 20:37:17 +09:00
Junegunn Choi e3e76fa8c5
0.24.2 2020-11-03 23:32:24 +09:00
Junegunn Choi d4c9db0a27
0.24.1 2020-10-29 01:45:55 +09:00
Junegunn Choi 552414978e
0.24.0-rc1 2020-10-27 11:07:27 +09:00
Junegunn Choi fc7630a66d
0.23.1 2020-10-11 02:04:07 +09:00
Junegunn Choi dba14d2630
0.23.0 2020-10-07 19:18:50 +09:00
Junegunn Choi e2ae1b249c
0.22.0 2020-08-02 15:56:02 +09:00
Junegunn Choi 6dec42a33a
Update version numbers in man pages 2020-06-29 22:07:48 +09:00