Skip to content

Commit

Permalink
0.17.5
Browse files Browse the repository at this point in the history
  • Loading branch information
junegunn committed Oct 6, 2018
1 parent fd8d371 commit b46227d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions 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
------

Expand Down
2 changes: 1 addition & 1 deletion install
Expand Up @@ -2,7 +2,7 @@

set -u

version=0.17.4
version=0.17.5
auto_completion=
key_bindings=
update_config=2
Expand Down
2 changes: 1 addition & 1 deletion man/man1/fzf-tmux.1
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion man/man1/fzf.1
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/constants.go
Expand Up @@ -9,7 +9,7 @@ import (

const (
// Current version
version = "0.17.4"
version = "0.17.5"

// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond
Expand Down
2 changes: 1 addition & 1 deletion src/util/util_windows.go
Expand Up @@ -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
Expand Down

0 comments on commit b46227d

Please sign in to comment.