summaryrefslogtreecommitdiff
path: root/alacritty.yml
diff options
context:
space:
mode:
authorMark Stosberg <mark@rideamigos.com>2020-08-02 18:42:17 -0400
committerGitHub <noreply@github.com>2020-08-02 22:42:17 +0000
commitbfdfe2b0dda40b8660d2f3c87bc78fb429eac57b (patch)
tree2a345fbf6bd2d171a89ea03fa5caf69e4fcac9bd /alacritty.yml
parent1cf93dd3349966f76285a945ed4bd6f6c545773e (diff)
downloadalacritty-bfdfe2b0dda40b8660d2f3c87bc78fb429eac57b.tar.gz
alacritty-bfdfe2b0dda40b8660d2f3c87bc78fb429eac57b.zip
Document keybinding actions
Diffstat (limited to 'alacritty.yml')
-rw-r--r--alacritty.yml49
1 files changed, 44 insertions, 5 deletions
diff --git a/alacritty.yml b/alacritty.yml
index 8c780cd3..5bad7ad9 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -315,6 +315,7 @@
#background_opacity: 1.0
#selection:
+ # This string contains all characters that are used as separators for "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
@@ -480,10 +481,11 @@
#
# - ToggleViMode
# - SearchForward
+# Start searching toward the right of the search origin.
# - SearchBackward
+# Start searching toward the left of the search origin.
# - Copy
# - Paste
-# - PasteSelection
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
@@ -496,51 +498,88 @@
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
+# Remove the terminal's scrollback history.
# - Hide
+# Hide the Alacritty window.
# - Minimize
+# Minimize the Alacritty window.
# - Quit
+# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
+# Spawn a new instance of Alacritty.
# - ClearLogNotice
+# Clear Alacritty's UI warning and error notice.
# - ClearSelection
+# Remove the active selection.
# - ReceiveChar
# - None
#
# (`mode: Vi` only):
# - Open
+# Open URLs at the cursor location with the launcher configured in `url.launcher`.
# - Up
+# Move the vi mode cursor up by one line.
# - Down
+# Move the vi mode cursor down by one linee.
# - Left
+# Move the vi mode cursor left by one character.
# - Right
+# Move the vi mode cursor right by one character.
# - First
+# Move the vi mode cursor to the start of the line, searching across newlines if it is already at the beginning.
# - Last
+# Move the vi mode cursor to the end of the line, searching across newlines if it is already at the end.
# - FirstOccupied
+# Move the vi mode cursor to the first non-empty cell in this line, searching across newlines if it is already at the first one.
# - High
+# Move the vi mode cursor to the top of the screen.
# - Middle
+# Move the vi mode cursor to the middle of the screen.
# - Low
+# Move the vi mode cursor to the bottom of the screen.
# - SemanticLeft
+# Move the vi mode cursor to the start of the previous semantically separated word.
# - SemanticRight
+# Move the vi mode cursor to the start of the next semantically separated word.
# - SemanticLeftEnd
+# Move the vi mode cursor to the end of the previous semantically separated word.
# - SemanticRightEnd
-# - WordRight
+# Move the vi mode cursor to the end of the next semantically separated word.
# - WordLeft
-# - WordRightEnd
+# Move the vi mode cursor to the start of the previous whitespace separated word.
+# - WordRight
+# Move the vi mode cursor to the start of the next whitespace separated word.
# - WordLeftEnd
+# Move the vi mode cursor to the end of the previous whitespace separated word.
+# - WordRightEnd
+# Move the vi mode cursor to the end of the next whitespace separated word.
# - Bracket
+# Move the vi mode cursor to the next character that matches the bracket at the cursor's
+# current location.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
+# Toggle semantic selection based on `selection.semantic_escape_chars`.
# - SearchNext
+# Jump to the beginning of the next match.
# - SearchPrevious
+# Jump to the beginning of the previous match.
# - SearchStart
+# Jump to the next start of a match to the left of the vi mode cursor.
# - SearchEnd
+# Jump to the next end of a match to the left of the vi mode cursor.
#
# (macOS only):
-# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
+# - ToggleSimpleFullscreen
+# Enter fullscreen without occupying another space.
#
# (Linux/BSD only):
-# - CopySelection: Copies into selection buffer
+# - CopySelection
+# Copy from the selection buffer.
+# - PasteSelection
+# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#