diff options
author | Sonu Bardai <67749330+SonuBardai@users.noreply.github.com> | 2023-06-15 05:33:38 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-15 00:03:38 +0000 |
commit | be03effdbe5b5bdabfed50d87963e78017329182 (patch) | |
tree | 2c93c11ff37af3024d4540e4e9adcf7ce2c44aa6 /extra/man/alacritty.5.scd | |
parent | cad0cbeca6f1b749681db244eb4472fe7ed9146d (diff) | |
download | alacritty-be03effdbe5b5bdabfed50d87963e78017329182.tar.gz alacritty-be03effdbe5b5bdabfed50d87963e78017329182.zip |
Add option to persist hints after selection
Closes #6976.
Diffstat (limited to 'extra/man/alacritty.5.scd')
-rw-r--r-- | extra/man/alacritty.5.scd | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/extra/man/alacritty.5.scd b/extra/man/alacritty.5.scd index 055cacfa..5aecd510 100644 --- a/extra/man/alacritty.5.scd +++ b/extra/man/alacritty.5.scd @@ -35,10 +35,14 @@ This section documents the root level of the configuration file. Live config reload (changes require restart) + Default: _true_ + *ipc_socket* <boolean> _(unix only)_ Offer IPC using _alacritty msg_ + Default: _true_ + # ENV All key-value pairs in the *env* section will be added as environment variables @@ -410,6 +414,8 @@ Colors are specified using their hexadecimal values with a _#_ prefix: _#RRGGBB_ When _true_, bold text is drawn using the bright color variants. + Default: _false_ + # Bell This section documents the *[bell]* table of the configuration file. @@ -563,7 +569,7 @@ terminal and pipe it to other applications. Default: _"jfkdls;ahgurieowpq"_ -*enabled* [{ <regex>, <hyperlinks>, <post_processing>, <action>, <command> <binding>, <mouse> },] +*enabled* [{ <regex>, <hyperlinks>, <post_processing>, <persist>, <action>, <command> <binding>, <mouse> },] Array with all available hints. @@ -585,6 +591,10 @@ _action_ or a _command_. there are characters likely not to be part of the hint (e.g. a trailing _._). This is most useful for URIs and applies only to _regex_ matches. + *persist* <boolean> + + When this is _true_, hints remain persistent after selection. + *action* "Copy" | "Paste" | "Select" | "MoveViModeCursor" *Copy* @@ -621,6 +631,7 @@ Default: _[{ regex = "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\\u0000-\\u001F\\u007F-\\u009F<>\\"\\\\s{-}\\\\^⟨⟩`]+",++ hyperlinks = true,++ post_processing = true,++ +persist = false,++ mouse = { enabled = true },++ binding = { key = "U", mods = "Control | Shift" }, }]_ |