1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

pages/common/*: apply keypress specifications (#15859)

This commit is contained in:
Managor 2025-03-09 03:23:24 +02:00 committed by GitHub
parent 89ed861f7b
commit 7211ff5dab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
77 changed files with 197 additions and 197 deletions

View file

@ -17,7 +17,7 @@
- Detach from a session: - Detach from a session:
`<Ctrl> + \` `<Ctrl \>`
- [A]ttach to a session in [r]ead-only mode: - [A]ttach to a session in [r]ead-only mode:

View file

@ -8,7 +8,7 @@
`asciinema auth` `asciinema auth`
- Make a new recording (finish it with `Ctrl+D` or type `exit`, and then choose to upload it or save it locally): - Make a new recording (finish it with `<Ctrl d>` or type `exit`, and then choose to upload it or save it locally):
`asciinema rec` `asciinema rec`

View file

@ -8,7 +8,7 @@
`systemctl start atd` `systemctl start atd`
- Create commands interactively and execute them in 5 minutes (press `<Ctrl> + D` when done): - Create commands interactively and execute them in 5 minutes (press `<Ctrl d>` when done):
`at now + 5 minutes` `at now + 5 minutes`

View file

@ -10,4 +10,4 @@
- Terminate the connection: - Terminate the connection:
`<Ctrl>-]` `<Ctrl ]>`

View file

@ -9,15 +9,15 @@
- Navigate the piece horizontally: - Navigate the piece horizontally:
`{{Left|Right arrow key}}` `{{<ArrowLeft>|<ArrowRight>}}`
- Rotate the piece clockwise or counterclockwise: - Rotate the piece clockwise or counterclockwise:
`{{Spacebar|Up arrow key}}` `{{<Space>|<ArrowUp>}}`
- Soft drop the piece: - Soft drop the piece:
`<Down arrow key>` `<ArrowDown>`
- Hard drop the piece: - Hard drop the piece:
@ -25,8 +25,8 @@
- Pause the game: - Pause the game:
`p` `<p>`
- Quit the game: - Quit the game:
`<Ctrl> + C` `<Ctrl c>`

View file

@ -9,7 +9,7 @@
`systemctl start atd` `systemctl start atd`
- Execute commands from `stdin` (press `Ctrl + D` when done): - Execute commands from `stdin` (press `<Ctrl d>` when done):
`batch` `batch`

View file

@ -1,6 +1,6 @@
# bg # bg
> Resume suspended jobs (e.g. using `Ctrl + Z`), and keeps them running in the background. > Resume suspended jobs (e.g. using `<Ctrl z>`), and keeps them running in the background.
> More information: <https://manned.org/bg>. > More information: <https://manned.org/bg>.
- Resume the most recently suspended job and run it in the background: - Resume the most recently suspended job and run it in the background:

View file

@ -9,16 +9,16 @@
- Navigate the current piece on a 2D plane: - Navigate the current piece on a 2D plane:
`{{Up|Down|Left|Right arrow key}}` `{{<ArrowUp>|<ArrowDown>|<ArrowLeft>|<ArrowRight>}}`
- Rotate the piece on its axis: - Rotate the piece on its axis:
`{{Q|W|E|A|S|D}}` `{{<q>|<w>|<e>|<a>|<s>|<d>}}`
- Hard drop the current piece: - Hard drop the current piece:
`<Spacebar>` `<Space>`
- Pause/unpause the game: - Pause/unpause the game:
`p` `<p>`

View file

@ -14,15 +14,15 @@
- Toggle minimal mode: - Toggle minimal mode:
`m` `<m>`
- Search for running programs or processes: - Search for running programs or processes:
`f` `<f>`
- Change settings: - Change settings:
`M` `<M>`
- Display version: - Display version:

View file

@ -1,7 +1,7 @@
# cheatshh # cheatshh
> CLI cheatsheet with customized descriptions, tldr and groups, to look into for your reference. > CLI cheatsheet with customized descriptions, tldr and groups, to look into for your reference.
> Press Enter to a command to copy it to your clipboard and exit. > Press `<Enter>` to a command to copy it to your clipboard and exit.
> More information: <https://github.com/AnirudhG07/cheatshh>. > More information: <https://github.com/AnirudhG07/cheatshh>.
- [a]dd a new command to the cheatshheet: - [a]dd a new command to the cheatshheet:

View file

@ -7,7 +7,7 @@
`clear` `clear`
- Clear the screen but keep the terminal's scrollback buffer (equivalent to pressing Ctrl + L in Bash): - Clear the screen but keep the terminal's scrollback buffer (equivalent to pressing `<Ctrl l>` in Bash):
`clear -x` `clear -x`

View file

@ -14,24 +14,24 @@
- Create a new file and a new directory: - Create a new file and a new directory:
`n file dir/` `<n>file dir/`
- Search for PDF files in the current directory: - Search for PDF files in the current directory:
`/*.pdf` `</>*.pdf`
- Select all PNG files in the current directory: - Select all PNG files in the current directory:
`s *.png` `<s> *.png`
- Remove the previously selected files (use `t` to send the files to the recycle bin instead): - Remove the previously selected files (use `<t>` to send the files to the recycle bin instead):
`r sel` `<r>sel`
- Display help: - Display help:
`?` `<?>`
- Exit CliFM: - Exit CliFM:
`q` `<q>`

View file

@ -1,7 +1,7 @@
# colorpicker # colorpicker
> A minimalist X11 colorpicker. > A minimalist X11 colorpicker.
> Any mouse gesture except left click will exit the program. > Any mouse gesture except `<LeftClick>` will exit the program.
> More information: <https://github.com/ym1234/colorpicker>. > More information: <https://github.com/ym1234/colorpicker>.
- Launch colorpicker and print the hexadecimal and RGB value of each clicked pixel to `stdout`: - Launch colorpicker and print the hexadecimal and RGB value of each clicked pixel to `stdout`:

View file

@ -1,6 +1,6 @@
# compgen # compgen
> A built-in command for auto-completion in Bash, which is called on pressing TAB key twice. > A built-in command for auto-completion in Bash, which is called on pressing `<Tab>` key twice.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-compgen>. > More information: <https://www.gnu.org/software/bash/manual/bash.html#index-compgen>.
- List all commands that you could run: - List all commands that you could run:

View file

@ -33,4 +33,4 @@
- Display help in interactive mode: - Display help in interactive mode:
`?` `<?>`

View file

@ -9,7 +9,7 @@
- Quit elinks: - Quit elinks:
`<Ctrl> + C` `<Ctrl c>`
- Dump output of webpage to console, colorizing the text with ANSI control codes: - Dump output of webpage to console, colorizing the text with ANSI control codes:

View file

@ -30,8 +30,8 @@
- Save a file in Emacs: - Save a file in Emacs:
`<Ctrl> + X, <Ctrl> + S` `<Ctrl x><Ctrl s>`
- Quit Emacs: - Quit Emacs:
`<Ctrl> + X, <Ctrl> + C` `<Ctrl x><Ctrl c>`

View file

@ -26,7 +26,7 @@
- Insert text: - Insert text:
`i<Enter>{{text}}<C-c>` `i<Enter>{{text}}<Ctrl c>`
- Switch to Vim: - Switch to Vim:

View file

@ -12,7 +12,7 @@
`ps aux | fzf` `ps aux | fzf`
- Select multiple files with `Shift + Tab` and write to a file: - Select multiple files with `<Shift Tab>` and write to a file:
`find {{path/to/directory}} -type f | fzf --multi > {{path/to/file}}` `find {{path/to/directory}} -type f | fzf --multi > {{path/to/file}}`

View file

@ -16,6 +16,6 @@
`!{{command}} {{command_arguments}}` `!{{command}} {{command_arguments}}`
- Exit the interactive Git shell (or press Ctrl + D): - Exit the interactive Git shell (or press `<Ctrl d>`):
`exit` `exit`

View file

@ -19,7 +19,7 @@
`sudo gitlab-ctl restart {{nginx}}` `sudo gitlab-ctl restart {{nginx}}`
- Display the logs of every service and keep reading until `Ctrl + C` is pressed: - Display the logs of every service and keep reading until `<Ctrl c>` is pressed:
`sudo gitlab-ctl tail` `sudo gitlab-ctl tail`

View file

@ -33,4 +33,4 @@
- Display help in interactive mode: - Display help in interactive mode:
`?` `<?>`

View file

@ -13,24 +13,24 @@
- Quit `gpg-tui`: - Quit `gpg-tui`:
`q` `<q>`
- Interactively generate a new key: - Interactively generate a new key:
`g` `<g>`
- Export the selected key: - Export the selected key:
`x` `<x>`
- Set the detail level for the selected key: - Set the detail level for the selected key:
`1|2|3` `<1>|<2>|<3>`
- Refresh `gpg-tui`: - Refresh `gpg-tui`:
`r` `<r>`
- Display help in `gpg-tui`: - Display help in `gpg-tui`:
`?` `<?>`

View file

@ -9,8 +9,8 @@
- Sort by CPU usage: - Sort by CPU usage:
`c` `<c>`
- Sort by memory usage: - Sort by memory usage:
`m` `<m>`

View file

@ -11,7 +11,7 @@
`gum input --placeholder "{{value}}"` `gum input --placeholder "{{value}}"`
- Open an interactive confirmation prompt and exit with either `0` or `1`: - Open an interactive confirmation prompt and exit with either `<0>` or `<1>`:
`gum confirm "{{Continue?}}" --default=false --affirmative "{{Yes}}" --negative "{{No}}" {{&& echo "Yes selected" || echo "No selected"}}` `gum confirm "{{Continue?}}" --default=false --affirmative "{{Yes}}" --negative "{{No}}" {{&& echo "Yes selected" || echo "No selected"}}`
@ -23,6 +23,6 @@
`gum format -t {{emoji}} "{{:smile: :heart: hello}}"` `gum format -t {{emoji}} "{{:smile: :heart: hello}}"`
- Interactively prompt for multi-line text (CTRL + D to save) and write to `data.txt`: - Interactively prompt for multi-line text (`<Ctrl d>` to save) and write to `data.txt`:
`gum write > {{data.txt}}` `gum write > {{data.txt}}`

View file

@ -1,7 +1,7 @@
# helix # helix
> Helix, A post-modern text editor, provides several modes for different kinds of text manipulation. > Helix, A post-modern text editor, provides several modes for different kinds of text manipulation.
> Pressing `i` enters insert mode. `<Esc>` enters normal mode, which enables the use of Helix commands. > Pressing `<i>` enters insert mode. `<Esc>` enters normal mode, which enables the use of Helix commands.
> More information: <https://helix-editor.com>. > More information: <https://helix-editor.com>.
- Open a file: - Open a file:
@ -12,26 +12,26 @@
`helix --vsplit {{path/to/file1 path/to/file2}}` `helix --vsplit {{path/to/file1 path/to/file2}}`
- Show the tutorial to learn Helix (or access it within Helix by pressing `<Esc>` and typing `:tutor`): - Show the tutorial to learn Helix (or access it within Helix by pressing `<Esc>` and typing `<:>tutor<Enter>`):
`helix --tutor` `helix --tutor`
- Change the Helix theme: - Change the Helix theme:
`:theme {{theme_name}}` `<:>theme {{theme_name}}`
- Save and Quit: - Save and Quit:
`:wq<Enter>` `<:>wq<Enter>`
- Force-quit without saving: - Force-quit without saving:
`:q!<Enter>` `<:>q!<Enter>`
- Undo the last operation: - Undo the last operation:
`u` `<u>`
- Search for a pattern in the file (press `n`/`N` to go to next/previous match): - Search for a pattern in the file (press `<n>`/`<N>` to go to next/previous match):
`/{{search_pattern}}<Enter>` `</>{{search_pattern}}<Enter>`

View file

@ -25,11 +25,11 @@
- See interactive commands while running htop: - See interactive commands while running htop:
`?` `<?>`
- Switch to a different tab: - Switch to a different tab:
`tab` `<Tab>`
- Display help: - Display help:

View file

@ -8,6 +8,6 @@
`inkview {{path/to/file.svg}}` `inkview {{path/to/file.svg}}`
- Preview multiple SVGs (use arrow keys to navigate): - Preview multiple SVGs (use `<ArrowKeys>` to navigate):
`inkview {{path/to/file1.svg path/to/file2.svg ...}}` `inkview {{path/to/file1.svg path/to/file2.svg ...}}`

View file

@ -10,7 +10,7 @@
- Enter insert mode from normal mode, to write text into the file: - Enter insert mode from normal mode, to write text into the file:
`i` `<i>`
- Escape insert mode, to go back to normal mode: - Escape insert mode, to go back to normal mode:
@ -30,8 +30,8 @@
- Insert the contents of a file: - Insert the contents of a file:
`!cat {{path/to/file}}<Enter>` `<!>cat {{path/to/file}}<Enter>`
- Save the current file: - Save the current file:
`:w<Enter>` `<:>w<Enter>`

View file

@ -16,7 +16,7 @@
`kill -{{1|HUP}} {{process_id}}` `kill -{{1|HUP}} {{process_id}}`
- Terminate a program using the SIGINT (interrupt) signal. This is typically initiated by the user pressing `Ctrl + C`: - Terminate a program using the SIGINT (interrupt) signal. This is typically initiated by the user pressing `<Ctrl c>`:
`kill -{{2|INT}} {{process_id}}` `kill -{{2|INT}} {{process_id}}`

View file

@ -16,7 +16,7 @@
`killall -i {{process_name}}` `killall -i {{process_name}}`
- Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing `Ctrl + C`: - Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing `<Ctrl c>`:
`killall -INT {{process_name}}` `killall -INT {{process_name}}`

View file

@ -9,28 +9,28 @@
- Page down/up: - Page down/up:
`<Space> (down), b (up)` `{{<Space>|<b>}}`
- Go to end/start of file: - Go to end/start of file:
`G (end), g (start)` `{{<G>|<g>}}`
- Forward search for a string (press `n`/`N` to go to next/previous match): - Forward search for a string (press `<n>`/`<N>` to go to next/previous match):
`/{{something}}` `</>{{something}}`
- Backward search for a string (press `n`/`N` to go to next/previous match): - Backward search for a string (press `<n>`/`<N>` to go to next/previous match):
`?{{something}}` `<?>{{something}}`
- Follow the output of the currently opened file: - Follow the output of the currently opened file:
`F` `<F>`
- Open the current file in an editor: - Open the current file in an editor:
`v` `<v>`
- Exit: - Exit:
`q` `<q>`

View file

@ -25,12 +25,12 @@
- Navigate forwards and backwards through the links on a page: - Navigate forwards and backwards through the links on a page:
`{{Up arrow key|Down arrow key}}` `{{<ArrowUp>|<ArrowDown>}}`
- Go back to the previously displayed page: - Go back to the previously displayed page:
`{{Left arrow key|u}}` `{{<ArrowLeft>|<u>}}`
- Exit: - Exit:
`q + y` `<q><y>`

View file

@ -8,7 +8,7 @@
`mail` `mail`
- Send a typed email message with optional CC. The command-line below continues after pressing `<Enter>`. Input message text (can be multiline). Press `<Ctrl>-D` to complete the message text: - Send a typed email message with optional CC. The command-line below continues after pressing `<Enter>`. Input message text (can be multiline). Press `<Ctrl d>` to complete the message text:
`mail --subject "{{subject line}}" {{to_user@example.com}} --cc "{{cc_email_address}}"` `mail --subject "{{subject line}}" {{to_user@example.com}} --cc "{{cc_email_address}}"`

View file

@ -3,7 +3,7 @@
> Send and receive mail. > Send and receive mail.
> More information: <https://manned.org/mailx>. > More information: <https://manned.org/mailx>.
- Send mail (the content should be typed after the command, and ended with `Ctrl+D`): - Send mail (the content should be typed after the command, and ended with `<Ctrl d>`):
`mailx -s "{{subject}}" {{to_addr}}` `mailx -s "{{subject}}" {{to_addr}}`

View file

@ -1,7 +1,7 @@
# mc # mc
> Midnight Commander, a TUI file manager. > Midnight Commander, a TUI file manager.
> Navigate the directory structure using the arrow keys, the mouse or by typing the commands into the terminal. > Navigate the directory structure using the `<ArrowKeys>`, the mouse or by typing the commands into the terminal.
> See also: `ranger`, `clifm`, `vifm`, `nautilus`. > See also: `ranger`, `clifm`, `vifm`, `nautilus`.
> More information: <https://midnight-commander.org>. > More information: <https://midnight-commander.org>.

View file

@ -1,7 +1,7 @@
# mcfly # mcfly
> A smart command history search and management tool. > A smart command history search and management tool.
> Replaces your default shell history search (ctrl-r) with an intelligent search engine providing context and relevance to the commands. > Replaces your default shell history search (`<Ctrl r>`) with an intelligent search engine providing context and relevance to the commands.
> More information: <https://github.com/cantino/mcfly>. > More information: <https://github.com/cantino/mcfly>.
- Print the mcfly integration code for the specified shell: - Print the mcfly integration code for the specified shell:

View file

@ -10,24 +10,24 @@
- Save a file: - Save a file:
`<Ctrl> + S` `<Ctrl s>`
- Cut the entire line: - Cut the entire line:
`<Ctrl> + K` `<Ctrl k>`
- Search for a pattern in the file (press `Ctrl + N`/`Ctrl + P` to go to next/previous match): - Search for a pattern in the file (press `<Ctrl n>`/`<Ctrl p>` to go to next/previous match):
`<Ctrl> + F "{{pattern}}" <Enter>` `<Ctrl f>{{pattern}}<Enter>`
- Execute a command: - Execute a command:
`<Ctrl> + E {{command}} <Enter>` `<Ctrl e>{{command}}<Enter>`
- Perform a substitution in the whole file: - Perform a substitution in the whole file:
`<Ctrl> + E replaceall "{{pattern}}" "{{replacement}}" <Enter>` `<Ctrl e>replaceall "{{pattern}}" "{{replacement}}"<Enter>`
- Quit: - Quit:
`<Ctrl> + Q` `<Ctrl q>`

View file

@ -21,4 +21,4 @@
- Save and Quit: - Save and Quit:
`<Ctrl> + X` `<Ctrl x>`

View file

@ -16,14 +16,14 @@
`<Space>` `<Space>`
- Search for a string (press `n` to go to the next match): - Search for a string (press `<n>` to go to the next match):
`/{{something}}` `</>{{something}}<Enter>`
- Exit: - Exit:
`q` `<q>`
- Display help about interactive commands: - Display help about interactive commands:
`h` `<h>`

View file

@ -17,20 +17,20 @@
- Move through opened files: - Move through opened files:
`:O n` `<:><n>{{<ArrowUp>|<ArrowDown>}}`
- Jump to the 100th line: - Jump to the 100th line:
`{{100}}j` `<j>{{100}}<Enter>`
- Edit current file: - Edit current file:
`e` `<e>`
- Split the current window in half: - Split the current window in half:
`<CTRL-x> o` `<CTRL x><o>`
- Exit: - Exit:
`Q` `<q>`

View file

@ -25,4 +25,4 @@
- Seek backward or forward 10 seconds: - Seek backward or forward 10 seconds:
`{{Left|Right}}` `{{<ArrowLeft>|<ArrowRight>}}`

View file

@ -10,19 +10,19 @@
- Jump backward/forward 5 seconds: - Jump backward/forward 5 seconds:
`LEFT <or> RIGHT` `{{<ArrowLeft>|<ArrowRight>}}`
- Jump backward/forward 1 minute: - Jump backward/forward 1 minute:
`DOWN <or> UP` `{{<ArrowDown>|<ArrowUp>}}`
- Decrease or increase playback speed by 10%: - Decrease or increase playback speed by 10%:
`[ <or> ]` `{{<[>|<]>}}`
- Take a screenshot of the current frame (saved to `./mpv-shotNNNN.jpg` by default): - Take a screenshot of the current frame (saved to `./mpv-shotNNNN.jpg` by default):
`s` `<s>`
- Play a file at a specified speed (1 by default): - Play a file at a specified speed (1 by default):

View file

@ -21,4 +21,4 @@
- See keyboard shortcuts (the most relevant are visible in the status line): - See keyboard shortcuts (the most relevant are visible in the status line):
`?` `<?>`

View file

@ -3,10 +3,10 @@
> Visualize network usage in the terminal. > Visualize network usage in the terminal.
> More information: <https://github.com/rolandriegel/nload>. > More information: <https://github.com/rolandriegel/nload>.
- View all network traffic (use the arrow keys to switch interfaces): - View all network traffic (use the `<ArrowKeys>` to switch interfaces):
`nload` `nload`
- View network traffic on specific interfaces (use the arrow keys to switch interfaces): - View network traffic on specific interfaces (use the `<ArrowKeys>` to switch interfaces):
`nload devices {{interface_one}} {{interface_two}}` `nload devices {{interface_one}} {{interface_two}}`

View file

@ -23,6 +23,6 @@
`nnn -T {{a|d|e|r|s|t|v}}` `nnn -T {{a|d|e|r|s|t|v}}`
- Open a file you have selected. Select the file then press `o`, and type a program to open the file in: - Open a file you have selected. Select the file then press `<o>`, and type a program to open the file in:
`nnn -o` `nnn -o`

View file

@ -19,7 +19,7 @@
`ntfy trigger {{my_webhook}}` `ntfy trigger {{my_webhook}}`
- Subscribe to a topic (Ctrl-C to stop listening): - Subscribe to a topic (`<Ctrl c>` to stop listening):
`ntfy sub {{home_automation}}` `ntfy sub {{home_automation}}`

View file

@ -13,24 +13,24 @@
- Navigate the board: - Navigate the board:
`{{h|j|k|l}} OR {{Left|Down|Up|Right arrow key}}` `{{<h>|<j>|<k>|<l>|<ArrowKeys>}}`
- Delete a number: - Delete a number:
`{{Backspace|x}}` `{{<Backspace>|<x>}}`
- Get a hint: - Get a hint:
`H` `<H>`
- See the complete solution: - See the complete solution:
`S` `<S>`
- Create a new puzzle: - Create a new puzzle:
`N` `<N>`
- Quit the game: - Quit the game:
`Q` `<Q>`

View file

@ -1,7 +1,7 @@
# nvim # nvim
> Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation. > Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation.
> Pressing `i` in normal mode enters insert mode. `<Esc>` goes back to normal mode, which doesn't allow regular text insertion. > Pressing `<i>` in normal mode enters insert mode. `<Esc>` or `<Ctrl c>` goes back to normal mode, which doesn't allow regular text insertion.
> See also: `vim`, `vimtutor`, `vimdiff`. > See also: `vim`, `vimtutor`, `vimdiff`.
> More information: <https://neovim.io>. > More information: <https://neovim.io>.
@ -11,28 +11,28 @@
- Enter text editing mode (insert mode): - Enter text editing mode (insert mode):
`<Esc>i` `<Esc><i>`
- Copy ("yank") or cut ("delete") the current line (paste it with `P`): - Copy ("yank") or cut ("delete") the current line (paste it with `<p>`):
`<Esc>{{yy|dd}}` `<Esc>{{<y><y>|<d><d>}}`
- Enter normal mode and undo the last operation: - Enter normal mode and undo the last operation:
`<Esc>u` `<Esc><u>`
- Search for a pattern in the file (press `n`/`N` to go to next/previous match): - Search for a pattern in the file (press `<n>`/`<N>` to go to next/previous match):
`<Esc>/{{search_pattern}}<Enter>` `<Esc></>{{search_pattern}}<Enter>`
- Perform a regular expression substitution in the whole file: - Perform a regular expression substitution in the whole file:
`<Esc>:%s/{{regular_expression}}/{{replacement}}/g<Enter>` `<Esc><:>%s/{{regular_expression}}/{{replacement}}/g<Enter>`
- Enter normal mode and save (write) the file, and quit: - Enter normal mode and save (write) the file, and quit:
`{{<Esc>ZZ|<Esc>:x<Enter>|<Esc>:wq<Enter>}}` `{{<Esc><Z><Z>|<Esc><:>x<Enter>|<Esc><:>wq<Enter>}}`
- Quit without saving: - Quit without saving:
`<Esc>:q!<Enter>` `<Esc><:>q!<Enter>`

View file

@ -26,12 +26,12 @@
- Show the main menu inside of ORCA: - Show the main menu inside of ORCA:
`F1` `<F1>`
- Show all shortcuts inside of ORCA: - Show all shortcuts inside of ORCA:
`?` `<?>`
- Show all ORCA operators inside of ORCA: - Show all ORCA operators inside of ORCA:
`<Ctrl> + g` `<Ctrl g>`

View file

@ -8,7 +8,7 @@
`pass init {{gpg_id_1}} {{gpg_id_2}}` `pass init {{gpg_id_1}} {{gpg_id_2}}`
- Save a new password and additional information (press Ctrl + D on a new line to complete): - Save a new password and additional information (press `<Ctrl d>` on a new line to complete):
`pass insert --multiline {{path/to/data}}` `pass insert --multiline {{path/to/data}}`

View file

@ -29,4 +29,4 @@
- Go to the menu of the interactive device monitor: - Go to the menu of the interactive device monitor:
`<Ctrl> + T` `<Ctrl t>`

View file

@ -17,16 +17,16 @@
- Open the menu: - Open the menu:
`F2` `<F2>`
- Open the history page: - Open the history page:
`F3` `<F3>`
- Toggle paste mode: - Toggle paste mode:
`F6` `<F6>`
- Quit: - Quit:
`<Ctrl> + D` `<Ctrl d>`

View file

@ -1,7 +1,7 @@
# rainbowstream # rainbowstream
> Terminal-based Twitter client supporting realtime tweetstream, trends, sending, search, favorites and user management. > Terminal-based Twitter client supporting realtime tweetstream, trends, sending, search, favorites and user management.
> Online help with `h`, up and down arrows for history, tab to auto-complete and 2-tab for suggestion. > Online help with `h`, `<ArrowUp>` and `<ArrowDown>` for history, `<Tab>` to auto-complete and 2-`<Tab>` for suggestion.
> More information: <https://github.com/orakaro/rainbowstream>. > More information: <https://github.com/orakaro/rainbowstream>.
- Open RainbowStream: - Open RainbowStream:

View file

@ -31,6 +31,6 @@
`rclone mount {{remote_name}}:{{path/to/directory}} {{path/to/mount_point}}` `rclone mount {{remote_name}}:{{path/to/directory}} {{path/to/mount_point}}`
- Unmount rclone remote if CTRL-C fails (experimental): - Unmount rclone remote if `<Ctrl c>` fails (experimental):
`fusermount -u {{path/to/mount_point}}` `fusermount -u {{path/to/mount_point}}`

View file

@ -1,7 +1,7 @@
# rtv # rtv
> Reddit Terminal Viewer. > Reddit Terminal Viewer.
> Use arrow keys to navigate. Right and Left to view and return from a submission, respectively. > Use `<ArrowKeys>` to navigate. `<ArrowRight>` and `<ArrowLeft>` to view and return from a submission, respectively.
> More information: <https://github.com/michael-lazar/rtv>. > More information: <https://github.com/michael-lazar/rtv>.
- Open the front page: - Open the front page:
@ -18,12 +18,12 @@
- Open link: - Open link:
`o` `<o>`
- Log in: - Log in:
`u` `<u>`
- Display help: - Display help:
`?` `<?>`

View file

@ -1,7 +1,7 @@
# SC-IM # SC-IM
> A curses based, vim-like spreadsheet calculator. > A curses based, vim-like spreadsheet calculator.
> Use hjkl or arrow keys to navigate. > Use `<h><j><k><l>` or `<ArrowKeys>` to navigate.
> More information: <https://github.com/andmarti1424/sc-im>. > More information: <https://github.com/andmarti1424/sc-im>.
- Start SC-IM: - Start SC-IM:
@ -10,20 +10,20 @@
- Enter a string into the current cell: - Enter a string into the current cell:
`{{<|>}}` `{{<<>|<>>}}`
- Enter a numeric constant into the current cell: - Enter a numeric constant into the current cell:
`=` `<=>`
- Edit string in the current cell: - Edit string in the current cell:
`E` `<E>`
- Edit number in the current cell: - Edit number in the current cell:
`e` `<e>`
- Center align the current cell: - Center align the current cell:
`|` `<|>`

View file

@ -26,11 +26,11 @@
- Detach from inside a screen: - Detach from inside a screen:
`<Ctrl> + A, D` `<Ctrl a><d>`
- Kill the current screen session: - Kill the current screen session:
`<Ctrl> + A, K` `<Ctrl a><k>`
- Kill a detached screen: - Kill a detached screen:

View file

@ -16,6 +16,6 @@
`sk --query "{{query}}"` `sk --query "{{query}}"`
- Select multiple files with `Shift + Tab` and write to a file: - Select multiple files with `<Shift Tab>` and write to a file:
`find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}` `find {{path/to/directory}} -type f | sk --multi > {{path/to/file}}`

View file

@ -19,6 +19,6 @@
`sl -l` `sl -l`
- Let the user exit (CTRL + C): - Let the user exit (`<Ctrl c>`):
`sl -e` `sl -e`

View file

@ -9,28 +9,28 @@
- Copy the result of the most recent calculation: - Copy the result of the most recent calculation:
`<Ctrl> + R` `<Ctrl r>`
- Open the formula book: - Open the formula book:
`<Ctrl> + 1` `<Ctrl 1>`
- Clear the calculator of recent calculations: - Clear the calculator of recent calculations:
`<Ctrl> + N` `<Ctrl n>`
- Wrap highlighted in parentheses (defaults to wrapping all if nothing selected): - Wrap highlighted in parentheses (defaults to wrapping all if nothing selected):
`<Ctrl> + P` `<Ctrl p>`
- Load a speedcrunch session: - Load a speedcrunch session:
`<Ctrl> + L` `<Ctrl l>`
- Save a speedcrunch session: - Save a speedcrunch session:
`<Ctrl> + S` `<Ctrl s>`
- Toggle keypad: - Toggle keypad:
`<Ctrl> + K` `<Ctrl k>`

View file

@ -34,4 +34,4 @@
- Close a hanged session: - Close a hanged session:
`<Enter> ~ .` `<Enter><~><.>`

View file

@ -16,11 +16,11 @@
`tail --bytes {{count}} {{path/to/file}}` `tail --bytes {{count}} {{path/to/file}}`
- Print the last lines of a given file and keep reading it until `Ctrl + C`: - Print the last lines of a given file and keep reading it until `<Ctrl c>`:
`tail --follow {{path/to/file}}` `tail --follow {{path/to/file}}`
- Keep reading file until `Ctrl + C`, even if the file is inaccessible: - Keep reading file until `<Ctrl c>`, even if the file is inaccessible:
`tail --retry --follow {{path/to/file}}` `tail --retry --follow {{path/to/file}}`

View file

@ -17,7 +17,7 @@
- Emit the default escape character combination for terminating the session: - Emit the default escape character combination for terminating the session:
`<Ctrl> + ]` `<Ctrl ]>`
- Start `telnet` with "x" as the session termination character: - Start `telnet` with "x" as the session termination character:

View file

@ -30,4 +30,4 @@
- Display help in TUI: - Display help in TUI:
`h` `<h>`

View file

@ -23,15 +23,15 @@
- Detach from the current session (inside a tmux session): - Detach from the current session (inside a tmux session):
`<Ctrl>-B d` `<Ctrl b><d>`
- Create a new window (inside a tmux session): - Create a new window (inside a tmux session):
`<Ctrl>-B c` `<Ctrl b><c>`
- Switch between sessions and windows (inside a tmux session): - Switch between sessions and windows (inside a tmux session):
`<Ctrl>-B w` `<Ctrl b><w>`
- Kill a session by name: - Kill a session by name:

View file

@ -10,11 +10,11 @@
- Open a subreddit: - Open a subreddit:
`/{{subreddit_name}}` `</>{{subreddit_name}}`
- Open a link: - Open a link:
`o` `<o>`
- Open a specific subreddit on launch: - Open a specific subreddit on launch:

View file

@ -3,7 +3,7 @@
> Ultra fast search tool with query TUI. > Ultra fast search tool with query TUI.
> More information: <https://github.com/Genivia/ugrep>. > More information: <https://github.com/Genivia/ugrep>.
- Start a query TUI to search files in the current directory recursively (CTRL-Z for help): - Start a query TUI to search files in the current directory recursively (`<Ctrl z>` for help):
`ugrep --query` `ugrep --query`

View file

@ -1,7 +1,7 @@
# vim # vim
> Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation. > Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation.
> Pressing `i` in normal mode enters insert mode. Pressing `<Esc>` goes back to normal mode, which enables the use of Vim commands. > Pressing `<i>` in normal mode enters insert mode. Pressing `<Esc>` goes back to normal mode, which enables the use of Vim commands.
> See also: `vimdiff`, `vimtutor`, `nvim`. > See also: `vimdiff`, `vimtutor`, `nvim`.
> More information: <https://www.vim.org>. > More information: <https://www.vim.org>.
@ -15,24 +15,24 @@
- View Vim's help manual: - View Vim's help manual:
`:help<Enter>` `<:>help<Enter>`
- Save and quit the current buffer: - Save and quit the current buffer:
`{{<Esc>ZZ|<Esc>:x<Enter>|<Esc>:wq<Enter>}}` `{{<Esc><Z><Z>|<Esc><:>x<Enter>|<Esc><:>wq<Enter>}}`
- Enter normal mode and undo the last operation: - Enter normal mode and undo the last operation:
`<Esc>u` `<Esc><u>`
- Search for a pattern in the file (press `n`/`N` to go to next/previous match): - Search for a pattern in the file (press `<n>`/`<N>` to go to next/previous match):
`/{{search_pattern}}<Enter>` `</>{{search_pattern}}<Enter>`
- Perform a regular expression substitution in the whole file: - Perform a regular expression substitution in the whole file:
`:%s/{{regular_expression}}/{{replacement}}/g<Enter>` `<:>%s/{{regular_expression}}/{{replacement}}/g<Enter>`
- Display the line numbers: - Display the line numbers:
`:set nu<Enter>` `<:>set nu<Enter>`

View file

@ -10,28 +10,28 @@
- Move the cursor to the window on the left|right: - Move the cursor to the window on the left|right:
`<Ctrl> + w {{h|l}}` `<Ctrl w>{{<h>|<l>}}`
- Jump to the previous difference: - Jump to the previous difference:
`[c` `<[><c>`
- Jump to the next difference: - Jump to the next difference:
`]c` `<]><c>`
- Copy the highlighted difference from the other window to the current window: - Copy the highlighted difference from the other window to the current window:
`do` `<d><o>`
- Copy the highlighted difference from the current window to the other window: - Copy the highlighted difference from the current window to the other window:
`dp` `<d><p>`
- Update all highlights and folds: - Update all highlights and folds:
`:diffupdate` `<:>diffupdate`
- Toggle the highlighted code fold: - Toggle the highlighted code fold:
`za` `<z><a>`

View file

@ -10,4 +10,4 @@
- Exit the tutor: - Exit the tutor:
`<Esc> :q <Enter>` `<Esc><:>q<Enter>`

View file

@ -18,12 +18,12 @@
- Open a new browser tab: - Open a new browser tab:
`<Shift> + T` `<Shift t>`
- Display your browser history: - Display your browser history:
`<Ctrl> + H` `<Ctrl h>`
- Quit w3m: - Quit w3m:
`q + y` `<q><y>`

View file

@ -13,4 +13,4 @@
- Show the menu: - Show the menu:
`<Alt> + M` `<Alt m>`

View file

@ -1,6 +1,6 @@
# write # write
> Write a message on the terminal of a specified logged in user (ctrl-C to stop writing messages). > Write a message on the terminal of a specified logged in user (`<Ctrl c>` to stop writing messages).
> Use the `who` command to find out all terminal_ids of all active users active on the system. See also `mesg`. > Use the `who` command to find out all terminal_ids of all active users active on the system. See also `mesg`.
> More information: <https://manned.org/write>. > More information: <https://manned.org/write>.

View file

@ -9,16 +9,16 @@
- Send an HTTP request: - Send an HTTP request:
`<Ctrl> + R` `<Ctrl r>`
- Switch to the next view: - Switch to the next view:
`<Ctrl> + J, <Tab>` `<Ctrl j><Tab>`
- Switch to the previous view: - Switch to the previous view:
`<Ctrl> + K, <Shift> + <Tab>` `<Ctrl k><Shift Tab>`
- Display help: - Display help:
`F1` `<F1>`

View file

@ -18,8 +18,8 @@
- Open a new pane (inside a zellij session): - Open a new pane (inside a zellij session):
`<Alt> + N` `<Alt n>`
- Detach from the current session (inside a zellij session): - Detach from the current session (inside a zellij session):
`<Ctrl> + O, D` `<Ctrl o><d>`

View file

@ -11,14 +11,14 @@
`<Space>` `<Space>`
- Search for a pattern in the file (press `n` to go to next match): - Search for a pattern in the file (press `<n>` to go to next match):
`/{{regular_expression}}` `</>{{regular_expression}}`
- Exit: - Exit:
`q` `<q>`
- Display interactive command help: - Display interactive command help:
`h` `<h>`