From 433370e2ad4c946240af47231397315eb803695f Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Fri, 28 Apr 2017 23:34:51 +0100 Subject: [PATCH] change all keyboard shortcuts to have spaces around the + sign (#1356) --- pages/common/elinks.md | 2 +- pages/common/fzf.md | 2 +- pages/common/kill.md | 2 +- pages/common/killall.md | 2 +- pages/common/screen.md | 2 +- pages/common/tail.md | 2 +- pages/common/tmux.md | 2 +- pages/common/wuzz.md | 6 +++--- pages/linux/at.md | 2 +- pages/linux/rdesktop.md | 2 +- pages/linux/xsel.md | 4 ++-- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pages/common/elinks.md b/pages/common/elinks.md index ad027fecb..62b45a515 100644 --- a/pages/common/elinks.md +++ b/pages/common/elinks.md @@ -8,7 +8,7 @@ - Quit elinks: -`Ctrl+C` +`Ctrl + C` - Dump output of webpage to console, colorizing the text with ANSI control codes: diff --git a/pages/common/fzf.md b/pages/common/fzf.md index b8e05ccd9..c79c6d14e 100644 --- a/pages/common/fzf.md +++ b/pages/common/fzf.md @@ -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}}` diff --git a/pages/common/kill.md b/pages/common/kill.md index cdf3af39b..bd729e8c2 100644 --- a/pages/common/kill.md +++ b/pages/common/kill.md @@ -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}}` diff --git a/pages/common/killall.md b/pages/common/killall.md index 858a1567e..359efab90 100644 --- a/pages/common/killall.md +++ b/pages/common/killall.md @@ -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}}` diff --git a/pages/common/screen.md b/pages/common/screen.md index 66b3b522d..1874e3816 100644 --- a/pages/common/screen.md +++ b/pages/common/screen.md @@ -24,7 +24,7 @@ - Detach from inside a screen: -`Ctrl+A D` +`Ctrl + A, D` - Kill a detached screen: diff --git a/pages/common/tail.md b/pages/common/tail.md index 592f72a7c..596ee96b3 100644 --- a/pages/common/tail.md +++ b/pages/common/tail.md @@ -14,6 +14,6 @@ `tail -c {{num}} {{file}}` -- Keep reading file until `Ctrl+C`: +- Keep reading file until `Ctrl + C`: `tail -f {{file}}` diff --git a/pages/common/tmux.md b/pages/common/tmux.md index 335449bbd..2958dfddb 100644 --- a/pages/common/tmux.md +++ b/pages/common/tmux.md @@ -24,7 +24,7 @@ - Detach from session: -`Ctrl+B D` +`Ctrl + B, D` - Kill session: diff --git a/pages/common/wuzz.md b/pages/common/wuzz.md index 87428e081..ca28a4448 100644 --- a/pages/common/wuzz.md +++ b/pages/common/wuzz.md @@ -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` diff --git a/pages/linux/at.md b/pages/linux/at.md index cc23bc15f..fc72d5d3b 100644 --- a/pages/linux/at.md +++ b/pages/linux/at.md @@ -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}}` diff --git a/pages/linux/rdesktop.md b/pages/linux/rdesktop.md index 3885a6e38..227bdfe29 100644 --- a/pages/linux/rdesktop.md +++ b/pages/linux/rdesktop.md @@ -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}}` diff --git a/pages/linux/xsel.md b/pages/linux/xsel.md index fcf827844..2c68f3135 100644 --- a/pages/linux/xsel.md +++ b/pages/linux/xsel.md @@ -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`