Skip to content

Commit beb2de2

Browse files
committed
0.46.0
1 parent 2a8b65e commit beb2de2

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
0.46.0 (WIP)
4+
0.46.0
55
------
66
- Added two new events
77
- `result` - triggered when the filtering for the current query is complete and the result list is ready
@@ -37,7 +37,8 @@ CHANGELOG
3737
```
3838
- And we're phasing out `{fzf:prompt}` and `{fzf:action}`
3939
- Changed [mattn/go-runewidth](https://github.com/mattn/go-runewidth) dependency to [rivo/uniseg](https://github.com/rivo/uniseg) for accurate results
40-
- Set `--ambidouble` if your terminal displays characters with East Asian Width Class Ambiguous (e.g. box-drawing characters for borders) as 2 columns
40+
- Set `--ambidouble` if your terminal displays ambiguous width characters (e.g. box-drawing characters for borders) as 2 columns
41+
- `RUNEWIDTH_EASTASIAN=1` is still respected for backward compatibility, but it's recommended that you use this new option instead
4142
- Bug fixes
4243

4344
0.45.0

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=0.45.0
5+
version=0.46.0
66
auto_completion=
77
key_bindings=
88
update_config=2

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version="0.45.0"
1+
$version="0.46.0"
22

33
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/junegunn/fzf/src/protector"
66
)
77

8-
var version string = "0.45"
8+
var version string = "0.46"
99
var revision string = "devel"
1010

1111
func main() {

man/man1/fzf-tmux.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf-tmux 1 "Jan 2024" "fzf 0.45.0" "fzf-tmux - open fzf in tmux split pane"
24+
.TH fzf-tmux 1 "Jan 2024" "fzf 0.46.0" "fzf-tmux - open fzf in tmux split pane"
2525

2626
.SH NAME
2727
fzf-tmux - open fzf in tmux split pane

man/man1/fzf.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf 1 "Jan 2024" "fzf 0.45.0" "fzf - a command-line fuzzy finder"
24+
.TH fzf 1 "Jan 2024" "fzf 0.46.0" "fzf - a command-line fuzzy finder"
2525

2626
.SH NAME
2727
fzf - a command-line fuzzy finder
@@ -314,8 +314,8 @@ the spinner and the horizontal separator.
314314

315315
.TP
316316
.B "--ambidouble"
317-
Set this option if your terminal displays characters with East Asian Width
318-
Class Ambiguous (e.g. box-drawing characters for borders) as 2 columns.
317+
Set this option if your terminal displays ambiguous width characters (e.g.
318+
box-drawing characters for borders) as 2 columns.
319319

320320
.TP
321321
.BI "--margin=" MARGIN

0 commit comments

Comments
 (0)