From b46227dcb6f1718d66ad828443d9f03a4bd58c4c Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 7 Oct 2018 01:43:05 +0900 Subject: [PATCH] 0.17.5 --- CHANGELOG.md | 8 ++++++++ install | 2 +- man/man1/fzf-tmux.1 | 2 +- man/man1/fzf.1 | 2 +- src/constants.go | 2 +- src/util/util_windows.go | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4280c4..8327830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ CHANGELOG ========= +0.17.5 +------ + +- Bug fixes and improvements + - See https://github.com/junegunn/fzf/milestone/13?closed=1 +- Search query longer than the screen width is allowed (up to 300 chars) +- Built with Go 1.11.1 + 0.17.4 ------ diff --git a/install b/install index ec41792..9139c72 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.17.4 +version=0.17.5 auto_completion= key_bindings= update_config=2 diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index 709b960..480f4e2 100644 --- a/man/man1/fzf-tmux.1 +++ b/man/man1/fzf-tmux.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 THE SOFTWARE. .. -.TH fzf-tmux 1 "Jun 2018" "fzf 0.17.4" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Oct 2018" "fzf 0.17.5" "fzf-tmux - open fzf in tmux split pane" .SH NAME fzf-tmux - open fzf in tmux split pane diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 4285ce9..68a387c 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.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 THE SOFTWARE. .. -.TH fzf 1 "Jun 2018" "fzf 0.17.4" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Oct 2018" "fzf 0.17.5" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder diff --git a/src/constants.go b/src/constants.go index 5f583e4..8535537 100644 --- a/src/constants.go +++ b/src/constants.go @@ -9,7 +9,7 @@ import ( const ( // Current version - version = "0.17.4" + version = "0.17.5" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond diff --git a/src/util/util_windows.go b/src/util/util_windows.go index 51715cd..a4af20d 100644 --- a/src/util/util_windows.go +++ b/src/util/util_windows.go @@ -11,7 +11,7 @@ import ( // ExecCommand executes the given command with cmd func ExecCommand(command string, setpgid bool) *exec.Cmd { - return ExecCommandWith("cmd", command) + return ExecCommandWith("cmd", command, setpgid) } // ExecCommandWith executes the given command with cmd. _shell parameter is