summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2018-10-07 01:43:05 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2018-10-07 01:46:29 +0900
commitb46227dcb6f1718d66ad828443d9f03a4bd58c4c (patch)
treeabc378192999f2989cd64f16c694f0df510cc1f8
parentfd8d371ac790bfb72b904b52bf3f28974a4d8b74 (diff)
0.17.50.17.5
-rw-r--r--CHANGELOG.md8
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
-rw-r--r--src/util/util_windows.go2
6 files changed, 13 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4280c42..83278300 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 ec417929..9139c726 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 709b9601..480f4e2f 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 4285ce90..68a387c2 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 5f583e4c..85355371 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 51715cd8..a4af20dd 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