mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-23 11:29:01 +00:00
0.15.9
This commit is contained in:
parent
3858086047
commit
a71c471405
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,6 +1,21 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.15.9
|
||||||
|
------
|
||||||
|
- Fixed rendering glitches introduced in 0.15.8
|
||||||
|
- The default escape delay is reduced to 50ms and is configurable via
|
||||||
|
`$ESCDELAY`
|
||||||
|
- Scroll indicator at the top-right corner of the preview window is always
|
||||||
|
displayed when there's overflow
|
||||||
|
- Can now be built with ncurses 6 or tcell to support extra features
|
||||||
|
- *ncurses 6*
|
||||||
|
- Supports more than 256 color pairs
|
||||||
|
- Supports italics
|
||||||
|
- *tcell*
|
||||||
|
- 24-bit color support
|
||||||
|
- See https://github.com/junegunn/fzf/blob/master/src/README.md#build
|
||||||
|
|
||||||
0.15.8
|
0.15.8
|
||||||
------
|
------
|
||||||
- Updated ANSI processor to handle more VT-100 escape sequences
|
- Updated ANSI processor to handle more VT-100 escape sequences
|
||||||
|
4
install
4
install
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
[[ "$@" =~ --pre ]] && version=0.15.8 pre=1 ||
|
[[ "$@" =~ --pre ]] && version=0.15.9 pre=1 ||
|
||||||
version=0.15.8 pre=0
|
version=0.15.9 pre=0
|
||||||
|
|
||||||
auto_completion=
|
auto_completion=
|
||||||
key_bindings=
|
key_bindings=
|
||||||
|
@ -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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf-tmux 1 "Nov 2016" "fzf 0.15.8" "fzf-tmux - open fzf in tmux split pane"
|
.TH fzf-tmux 1 "Nov 2016" "fzf 0.15.9" "fzf-tmux - open fzf in tmux split pane"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf-tmux - open fzf in tmux split pane
|
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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
..
|
..
|
||||||
.TH fzf 1 "Nov 2016" "fzf 0.15.8" "fzf - a command-line fuzzy finder"
|
.TH fzf 1 "Nov 2016" "fzf 0.15.9" "fzf - a command-line fuzzy finder"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
fzf - a command-line fuzzy finder
|
fzf - a command-line fuzzy finder
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// Current version
|
// Current version
|
||||||
version = "0.15.8"
|
version = "0.15.9"
|
||||||
|
|
||||||
// Core
|
// Core
|
||||||
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
||||||
|
Loading…
Reference in New Issue
Block a user