1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Document keybinding actions

This commit is contained in:
Mark Stosberg 2020-08-02 18:42:17 -04:00 committed by GitHub
parent 1cf93dd334
commit bfdfe2b0dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
#