pull/489/merge 0.11.4
Junegunn Choi 8 years ago
parent 09a2ab39fe
commit b47ab633e2

@ -1,6 +1,12 @@
CHANGELOG CHANGELOG
========= =========
0.11.4
------
- Added `--hscroll-off=COL` option (default: 10) (#513)
- Some fixes in Vim plugin and shell extensions
0.11.3 0.11.3
------ ------

@ -2,8 +2,8 @@
set -u set -u
[[ "$@" =~ --pre ]] && version=0.11.3 pre=1 || [[ "$@" =~ --pre ]] && version=0.11.4 pre=1 ||
version=0.11.3 pre=0 version=0.11.4 pre=0
auto_completion= auto_completion=
key_bindings= key_bindings=

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

Loading…
Cancel
Save