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:
parent
1cf93dd334
commit
bfdfe2b0dd
1 changed files with 44 additions and 5 deletions
|
@ -315,6 +315,7 @@
|
||||||
#background_opacity: 1.0
|
#background_opacity: 1.0
|
||||||
|
|
||||||
#selection:
|
#selection:
|
||||||
|
# This string contains all characters that are used as separators for "semantic words" in Alacritty.
|
||||||
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
|
||||||
|
|
||||||
# When set to `true`, selected text will be copied to the primary clipboard.
|
# When set to `true`, selected text will be copied to the primary clipboard.
|
||||||
|
@ -480,10 +481,11 @@
|
||||||
#
|
#
|
||||||
# - ToggleViMode
|
# - ToggleViMode
|
||||||
# - SearchForward
|
# - SearchForward
|
||||||
|
# Start searching toward the right of the search origin.
|
||||||
# - SearchBackward
|
# - SearchBackward
|
||||||
|
# Start searching toward the left of the search origin.
|
||||||
# - Copy
|
# - Copy
|
||||||
# - Paste
|
# - Paste
|
||||||
# - PasteSelection
|
|
||||||
# - IncreaseFontSize
|
# - IncreaseFontSize
|
||||||
# - DecreaseFontSize
|
# - DecreaseFontSize
|
||||||
# - ResetFontSize
|
# - ResetFontSize
|
||||||
|
@ -496,51 +498,88 @@
|
||||||
# - ScrollToTop
|
# - ScrollToTop
|
||||||
# - ScrollToBottom
|
# - ScrollToBottom
|
||||||
# - ClearHistory
|
# - ClearHistory
|
||||||
|
# Remove the terminal's scrollback history.
|
||||||
# - Hide
|
# - Hide
|
||||||
|
# Hide the Alacritty window.
|
||||||
# - Minimize
|
# - Minimize
|
||||||
|
# Minimize the Alacritty window.
|
||||||
# - Quit
|
# - Quit
|
||||||
|
# Quit Alacritty.
|
||||||
# - ToggleFullscreen
|
# - ToggleFullscreen
|
||||||
# - SpawnNewInstance
|
# - SpawnNewInstance
|
||||||
|
# Spawn a new instance of Alacritty.
|
||||||
# - ClearLogNotice
|
# - ClearLogNotice
|
||||||
|
# Clear Alacritty's UI warning and error notice.
|
||||||
# - ClearSelection
|
# - ClearSelection
|
||||||
|
# Remove the active selection.
|
||||||
# - ReceiveChar
|
# - ReceiveChar
|
||||||
# - None
|
# - None
|
||||||
#
|
#
|
||||||
# (`mode: Vi` only):
|
# (`mode: Vi` only):
|
||||||
# - Open
|
# - Open
|
||||||
|
# Open URLs at the cursor location with the launcher configured in `url.launcher`.
|
||||||
# - Up
|
# - Up
|
||||||
|
# Move the vi mode cursor up by one line.
|
||||||
# - Down
|
# - Down
|
||||||
|
# Move the vi mode cursor down by one linee.
|
||||||
# - Left
|
# - Left
|
||||||
|
# Move the vi mode cursor left by one character.
|
||||||
# - Right
|
# - Right
|
||||||
|
# Move the vi mode cursor right by one character.
|
||||||
# - First
|
# - First
|
||||||
|
# Move the vi mode cursor to the start of the line, searching across newlines if it is already at the beginning.
|
||||||
# - Last
|
# - Last
|
||||||
|
# Move the vi mode cursor to the end of the line, searching across newlines if it is already at the end.
|
||||||
# - FirstOccupied
|
# - 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
|
# - High
|
||||||
|
# Move the vi mode cursor to the top of the screen.
|
||||||
# - Middle
|
# - Middle
|
||||||
|
# Move the vi mode cursor to the middle of the screen.
|
||||||
# - Low
|
# - Low
|
||||||
|
# Move the vi mode cursor to the bottom of the screen.
|
||||||
# - SemanticLeft
|
# - SemanticLeft
|
||||||
|
# Move the vi mode cursor to the start of the previous semantically separated word.
|
||||||
# - SemanticRight
|
# - SemanticRight
|
||||||
|
# Move the vi mode cursor to the start of the next semantically separated word.
|
||||||
# - SemanticLeftEnd
|
# - SemanticLeftEnd
|
||||||
|
# Move the vi mode cursor to the end of the previous semantically separated word.
|
||||||
# - SemanticRightEnd
|
# - SemanticRightEnd
|
||||||
# - WordRight
|
# Move the vi mode cursor to the end of the next semantically separated word.
|
||||||
# - WordLeft
|
# - 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
|
# - 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
|
# - Bracket
|
||||||
|
# Move the vi mode cursor to the next character that matches the bracket at the cursor's
|
||||||
|
# current location.
|
||||||
# - ToggleNormalSelection
|
# - ToggleNormalSelection
|
||||||
# - ToggleLineSelection
|
# - ToggleLineSelection
|
||||||
# - ToggleBlockSelection
|
# - ToggleBlockSelection
|
||||||
# - ToggleSemanticSelection
|
# - ToggleSemanticSelection
|
||||||
|
# Toggle semantic selection based on `selection.semantic_escape_chars`.
|
||||||
# - SearchNext
|
# - SearchNext
|
||||||
|
# Jump to the beginning of the next match.
|
||||||
# - SearchPrevious
|
# - SearchPrevious
|
||||||
|
# Jump to the beginning of the previous match.
|
||||||
# - SearchStart
|
# - SearchStart
|
||||||
|
# Jump to the next start of a match to the left of the vi mode cursor.
|
||||||
# - SearchEnd
|
# - SearchEnd
|
||||||
|
# Jump to the next end of a match to the left of the vi mode cursor.
|
||||||
#
|
#
|
||||||
# (macOS only):
|
# (macOS only):
|
||||||
# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
|
# - ToggleSimpleFullscreen
|
||||||
|
# Enter fullscreen without occupying another space.
|
||||||
#
|
#
|
||||||
# (Linux/BSD only):
|
# (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
|
# - `command`: Fork and execute a specified command plus arguments
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue