pull/812/head 0.16.1
Junegunn Choi 7 years ago
parent 8e2e63f9b9
commit 62ab8ece5e
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -1,6 +1,13 @@
CHANGELOG
=========
0.16.1
------
- Fixed `--height` option to properly fill the window with the background
color
- Added `half-page-up` and `half-page-down` actions
- Added `-L` flag to the default find command
0.16.0
------
- *Added `--height HEIGHT[%]` option*

@ -2,7 +2,7 @@
set -u
version=0.16.0
version=0.16.1
auto_completion=
key_bindings=
update_config=2

@ -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 "Jan 2017" "fzf 0.16.0" "fzf-tmux - open fzf in tmux split pane"
.TH fzf-tmux 1 "Jan 2017" "fzf 0.16.1" "fzf-tmux - open fzf in tmux split pane"
.SH NAME
fzf-tmux - open fzf in tmux split pane

@ -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 "Jan 2017" "fzf 0.16.0" "fzf - a command-line fuzzy finder"
.TH fzf 1 "Jan 2017" "fzf 0.16.1" "fzf - a command-line fuzzy finder"
.SH NAME
fzf - a command-line fuzzy finder

@ -8,7 +8,7 @@ import (
const (
// Current version
version = "0.16.0"
version = "0.16.1"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond

Loading…
Cancel
Save