mirror of
https://github.com/junegunn/fzf.git
synced 2026-05-24 17:28:50 +08:00
0.68.0
This commit is contained in:
+7
-14
@@ -4,10 +4,8 @@ CHANGELOG
|
|||||||
0.68.0
|
0.68.0
|
||||||
------
|
------
|
||||||
- Implemented word wrapping in the list section
|
- Implemented word wrapping in the list section
|
||||||
- Added `--wrap=word` (or `--wrap-word`) option and `toggle-wrap-word` action
|
- Added `--wrap=word` (or `--wrap-word`) option and `toggle-wrap-word` action for word-level line wrapping in the list section
|
||||||
for word-level line wrapping in the list section
|
- Changed default binding of `ctrl-/` and `alt-/` from `toggle-wrap` to `toggle-wrap-word`
|
||||||
- Changed default binding of `ctrl-/` and `alt-/` from `toggle-wrap` to
|
|
||||||
`toggle-wrap-word`
|
|
||||||
```sh
|
```sh
|
||||||
fzf --wrap=word
|
fzf --wrap=word
|
||||||
```
|
```
|
||||||
@@ -19,8 +17,7 @@ CHANGELOG
|
|||||||
--preview-window wrap-word \
|
--preview-window wrap-word \
|
||||||
--bind space:toggle-preview-wrap-word
|
--bind space:toggle-preview-wrap-word
|
||||||
```
|
```
|
||||||
- Added support for underline style variants in `--color`:
|
- Added support for underline style variants in `--color`: `underline-double`, `underline-curly`, `underline-dotted`, `underline-dashed`
|
||||||
`underline-double`, `underline-curly`, `underline-dotted`, `underline-dashed`
|
|
||||||
```sh
|
```sh
|
||||||
fzf --color 'fg:underline-curly,current-fg:underline-dashed'
|
fzf --color 'fg:underline-curly,current-fg:underline-dashed'
|
||||||
```
|
```
|
||||||
@@ -32,18 +29,14 @@ CHANGELOG
|
|||||||
# In the preview window
|
# In the preview window
|
||||||
fzf --preview "printf '\e[4:3;58;2;255;0;0mRed curly underline\e[0m\n'"
|
fzf --preview "printf '\e[4:3;58;2;255;0;0mRed curly underline\e[0m\n'"
|
||||||
```
|
```
|
||||||
- Added `--preview-wrap-sign` to set a different wrap indicator for the preview
|
- Added `--preview-wrap-sign` to set a different wrap indicator for the preview window
|
||||||
window
|
|
||||||
- Added `alt-gutter` color option (#4602) (@hedgieinsocks)
|
- Added `alt-gutter` color option (#4602) (@hedgieinsocks)
|
||||||
- Added `$FZF_WRAP` environment variable to child processes (`char` or `word`
|
- Added `$FZF_WRAP` environment variable to child processes (`char` or `word` when wrapping is enabled) (#4672) (@bitraid)
|
||||||
when wrapping is enabled) (#4672) (@bitraid)
|
|
||||||
- fish: Improved command history (CTRL-R) (#4672) (@bitraid)
|
- fish: Improved command history (CTRL-R) (#4672) (@bitraid)
|
||||||
- Enabled syntax highlighting in the list on fish 4.3.3+
|
- Enabled syntax highlighting in the list on fish 4.3.3+
|
||||||
- Added syntax-highlighted preview window that auto-shows for long or
|
- Added syntax-highlighted preview window that auto-shows for long or multi-line commands
|
||||||
multi-line commands
|
|
||||||
- Added `ALT-ENTER` to reformat and insert selected commands
|
- Added `ALT-ENTER` to reformat and insert selected commands
|
||||||
- Improved handling of bulk deletion of selected history entries
|
- Improved handling of bulk deletion of selected history entries (`SHIFT-DELETE`)
|
||||||
(`SHIFT-DELETE`)
|
|
||||||
- Added fish completion support (#4605) (@lalvarezt)
|
- Added fish completion support (#4605) (@lalvarezt)
|
||||||
- zsh: Handle multi-line history selection (#4595) (@LangLangBart)
|
- zsh: Handle multi-line history selection (#4595) (@LangLangBart)
|
||||||
- Bug fixes
|
- Bug fixes
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
version=0.67.0
|
version=0.68.0
|
||||||
auto_completion=
|
auto_completion=
|
||||||
key_bindings=
|
key_bindings=
|
||||||
update_config=2
|
update_config=2
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
$version="0.67.0"
|
$version="0.68.0"
|
||||||
|
|
||||||
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
|
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
"github.com/junegunn/fzf/src/protector"
|
"github.com/junegunn/fzf/src/protector"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "0.67"
|
var version = "0.68"
|
||||||
var revision = "devel"
|
var revision = "devel"
|
||||||
|
|
||||||
//go:embed shell/key-bindings.bash
|
//go:embed shell/key-bindings.bash
|
||||||
|
|||||||
+1
-1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf\-tmux 1 "Nov 2025" "fzf 0.67.0" "fzf\-tmux - open fzf in tmux split pane"
|
.TH fzf\-tmux 1 "Feb 2026" "fzf 0.68.0" "fzf\-tmux - open fzf in tmux split pane"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf\-tmux - open fzf in tmux split pane
|
fzf\-tmux - open fzf in tmux split pane
|
||||||
|
|||||||
+1
-1
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf 1 "Nov 2025" "fzf 0.67.0" "fzf - a command-line fuzzy finder"
|
.TH fzf 1 "Feb 2026" "fzf 0.68.0" "fzf - a command-line fuzzy finder"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf - a command-line fuzzy finder
|
fzf - a command-line fuzzy finder
|
||||||
|
|||||||
Reference in New Issue
Block a user