diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-03-18 02:35:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-18 02:35:08 +0000 |
commit | 1a8cd172e520e493bacc9c6a2ae6f80de086eaa3 (patch) | |
tree | 0b837f1f52f72fe00e258afc34094d60b5d18f04 /.travis.yml | |
parent | 64db7d3daaed4e06fb8292227622bbc4cdaa2cf0 (diff) | |
download | alacritty-1a8cd172e520e493bacc9c6a2ae6f80de086eaa3.tar.gz alacritty-1a8cd172e520e493bacc9c6a2ae6f80de086eaa3.zip |
Add modal keyboard motion mode
This implements a basic mode for navigating inside of Alacritty's
history with keyboard bindings. They're bound by default to vi's motion
shortcuts but are fully customizable. Since this relies on key bindings
only single key bindings are currently supported (so no `ge`, or
repetition).
Other than navigating the history and moving the viewport, this mode
should enable making use of all available selection modes to copy
content to the clipboard and launch URLs below the cursor.
This also changes the rendering of the block cursor at the side of
selections, since previously it could be inverted to be completely
invisible. Since that would have caused some troubles with this keyboard
selection mode, the block cursor now is no longer inverted when it is at
the edges of a selection.
Fixes #262.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index f6454507..71100b10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ os: - osx rust: - - 1.37.0 + - 1.39.0 - stable - nightly @@ -30,22 +30,22 @@ matrix: - name: "Clippy Linux" os: linux env: CLIPPY=true - rust: 1.37.0 + rust: 1.39.0 - name: "Clippy OSX" os: osx env: CLIPPY=true - rust: 1.37.0 + rust: 1.39.0 - name: "Clippy Windows" os: windows env: CLIPPY=true - rust: 1.37.0-x86_64-pc-windows-msvc + rust: 1.39.0-x86_64-pc-windows-msvc - name: "Rustfmt" os: linux env: RUSTFMT=true rust: nightly - - name: "Windows 1.37.0" + - name: "Windows 1.39.0" os: windows - rust: 1.37.0-x86_64-pc-windows-msvc + rust: 1.39.0-x86_64-pc-windows-msvc - name: "Windows Stable" os: windows rust: stable-x86_64-pc-windows-msvc |