mirror of
https://github.com/xmengnet/the-art-of-command-line.git
synced 2024-12-25 12:26:29 +08:00
Adding ctrl-a and ctrl-e keybindings to English and Spanish versions
This commit is contained in:
parent
b3641eea15
commit
05ab34534b
2 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ Notas:
|
||||||
|
|
||||||
- En Bash, se usa **Tab** para completar los argumentos y **ctrl-r** para buscar, a través del historial de comandos.
|
- En Bash, se usa **Tab** para completar los argumentos y **ctrl-r** para buscar, a través del historial de comandos.
|
||||||
|
|
||||||
- En Bash, se usa **ctrl-w** para borrar la última palabra, y **ctrl-u** para borrar todo el camino hasta el inicio de la línea. Se usa **alt-b** y **alt-f** para moverse entre letras, **ctrl-k** para eliminar hasta el final de la línea, **ctrl-l** para limpiar la panatalla. Ver `man readline` para todos los atajos de teclado por defecto en Bash. Son una gran cantidad. Por ejemplo **alt-.** realiza un ciclo a través de los comandos previos, y **alt-*** expande un glob.
|
- En Bash, se usa **ctrl-w** para borrar la última palabra, y **ctrl-u** para borrar todo el camino hasta el inicio de la línea. Se usa **alt-b** y **alt-f** para moverse entre letras, **ctrl-a** para mover el cursor al principio de la línea, **ctrl-e** para mover el cursor al final de la línea, **ctrl-k** para eliminar hasta el final de la línea, **ctrl-l** para limpiar la panatalla. Ver `man readline` para todos los atajos de teclado por defecto en Bash. Son una gran cantidad. Por ejemplo **alt-.** realiza un ciclo a través de los comandos previos, y **alt-*** expande un glob.
|
||||||
|
|
||||||
- Alternativamente, si amas los atajos de teclado vi-style, usa `set -o vi`.
|
- Alternativamente, si amas los atajos de teclado vi-style, usa `set -o vi`.
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ Notes:
|
||||||
|
|
||||||
- In Bash, use **Tab** to complete arguments and **ctrl-r** to search through command history.
|
- In Bash, use **Tab** to complete arguments and **ctrl-r** to search through command history.
|
||||||
|
|
||||||
- In Bash, use **ctrl-w** to delete the last word, and **ctrl-u** to delete all the way back to the start of the line. Use **alt-b** and **alt-f** to move by word, **ctrl-k** to kill to the end of the line, **ctrl-l** to clear the screen. See `man readline` for all the default keybindings in Bash. There are a lot. For example **alt-.** cycles through previous arguments, and **alt-*** expands a glob.
|
- In Bash, use **ctrl-w** to delete the last word, and **ctrl-u** to delete all the way back to the start of the line. Use **alt-b** and **alt-f** to move by word, **ctrl-a** to move cursor to beginning of line, **ctrl-e** to move cursor to end of line, **ctrl-k** to kill to the end of the line, **ctrl-l** to clear the screen. See `man readline` for all the default keybindings in Bash. There are a lot. For example **alt-.** cycles through previous arguments, and **alt-*** expands a glob.
|
||||||
|
|
||||||
- Alternatively, if you love vi-style key-bindings, use `set -o vi`.
|
- Alternatively, if you love vi-style key-bindings, use `set -o vi`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue