mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-13 08:56:27 +00:00
7c447bbdc7
Restore the original line when search is aborted. Add --query "$READLINE_LINE" and fall back to the current behavior pre Bash 4. Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
23 lines
505 B
YAML
23 lines
505 B
YAML
language: go
|
|
env: GO111MODULE=on
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: bionic # For fish >= 2.3.0 string builtin
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- fish
|
|
- zsh
|
|
homebrew:
|
|
packages:
|
|
- fish
|
|
- tmux
|
|
update: true
|
|
script:
|
|
- make test
|
|
# LC_ALL=C to avoid escape codes in
|
|
# printf %q $'\355\205\214\354\212\244\355\212\270' on macOS. Bash on
|
|
# macOS is built without HANDLE_MULTIBYTE?
|
|
- make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose
|