From e4aa5bef1ab2a5f54b66771f16c6936fa0a8b334 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 27 Apr 2024 18:00:50 +0900 Subject: [PATCH] doc --- CHANGELOG.md | 2 ++ test/test_go.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd54a4d..aea38d44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ CHANGELOG - `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 +- `become` action is now supported on Windows + - Unlike in *nix, this does not use `execve(2)`. Instead it spawns a new process and waits for it to finish, so the exact behavior may differ. - Bug fixes and improvements 0.50.0 diff --git a/test/test_go.rb b/test/test_go.rb index b08ac72b..f58b789e 100755 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -1974,7 +1974,7 @@ class TestGoFZF < TestBase tmux.until { |lines| assert_equal 10, lines.item_count } end - def test_reload_should_terminate_stadard_input_stream + def test_reload_should_terminate_standard_input_stream tmux.send_keys %(ruby -e "STDOUT.sync = true; loop { puts 1; sleep 0.1 }" | fzf --bind 'start:reload(seq 100)'), :Enter tmux.until { |lines| assert_equal 100, lines.item_count } end