1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

change all keyboard shortcuts to have spaces around the + sign (#1356)

This commit is contained in:
Waldir Pimenta 2017-04-28 23:34:51 +01:00 committed by GitHub
parent 7e1f06ade4
commit 433370e2ad
11 changed files with 14 additions and 14 deletions

View file

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

View file

@ -10,7 +10,7 @@
`ps axu | fzf`
- Select mutliple files with `Shift-TAB` and write to a file:
- Select mutliple files with `Shift + Tab` and write to a file:
`find {{path/to/search_files}} -type f | fzf -m > {{filename}}`

View file

@ -15,7 +15,7 @@
`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}}`

View file

@ -15,7 +15,7 @@
`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}}`

View file

@ -24,7 +24,7 @@
- Detach from inside a screen:
`Ctrl+A D`
`Ctrl + A, D`
- Kill a detached screen:

View file

@ -14,6 +14,6 @@
`tail -c {{num}} {{file}}`
- Keep reading file until `Ctrl+C`:
- Keep reading file until `Ctrl + C`:
`tail -f {{file}}`

View file

@ -24,7 +24,7 @@
- Detach from session:
`Ctrl+B D`
`Ctrl + B, D`
- Kill session:

View file

@ -12,12 +12,12 @@
- Send an HTTP request:
`Ctrl+R`
`Ctrl + R`
- Switch to the next view:
`Ctrl+J, Tab`
`Ctrl + J, Tab`
- Switch to the previous view:
`Ctrl+K, Shift+Tab`
`Ctrl + K, Shift + Tab`

View file

@ -2,7 +2,7 @@
> Executes commands at a specified time.
- Open an `at` prompt to create a new set of scheduled commands, press Ctrl+D to save and exit:
- Open an `at` prompt to create a new set of scheduled commands, press `Ctrl + D` to save and exit:
`at {{hh:mm:ss}}`

View file

@ -11,7 +11,7 @@
`rdesktop -u Administrator -p passwd123 192.168.1.111:3389`
- Connect to a remote computer with full screen (press `Ctrl+Alt+Enter` to exist):
- Connect to a remote computer with full screen (press `Ctrl + Alt + Enter` to exist):
`rdesktop -u {{username}} -p {{password}} -f {{host:port}}`

View file

@ -2,7 +2,7 @@
> X11 selection and clipboard manipulation tool.
- Use a command's output as input of the clip[b]oard (equivalent to `Ctrl+C`):
- Use a command's output as input of the clip[b]oard (equivalent to `Ctrl + C`):
`echo 123 | xsel -ib`
@ -10,7 +10,7 @@
`cat {{file}} | xsel -ib`
- Output the clipboard's contents into the terminal (equivalent to `Ctrl+V`):
- Output the clipboard's contents into the terminal (equivalent to `Ctrl + V`):
`xsel -ob`