Mac OS X Terminal: Move cursor word by word - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T19:52:57Z http://stackoverflow.com/feeds/question/81272 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word 8 Mac OS X Terminal: Move cursor word by word Arne 2008-09-17T08:57:17Z 2008-09-17T21:28:47Z <p>Is there any way in the OS X Terminal to move the cursor word by word?</p> <p>I knwo the combination CTRL+A to jump to the beginning of the current command, and CTRL+E to jump to the end. </p> <p>But is there any way to jump word by word, like ALT+Left/Right in Cocoa applications does?</p> <p>Thanks in advance,</p> <p>Arne</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81281#81281 -1 Answer by millenomi for Mac OS X Terminal: Move cursor word by word millenomi 2008-09-17T08:58:44Z 2008-09-17T08:58:44Z <p>Although I cannot answer directly, I know these shortcuts come from Emacs; you might look at its info file to see whether you can find the shortcuts you need. man bash can also be an option.</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81299#81299 13 Answer by Fil for Mac OS X Terminal: Move cursor word by word Fil 2008-09-17T09:01:23Z 2008-09-17T09:01:23Z <p>You should follow the instructions in this mactips post: <a href="http://www.mactips.org/archives/2007/12/20/word-movement-in-terminal/" rel="nofollow">http://www.mactips.org/archives/2007/12/20/word-movement-in-terminal/</a>.</p> <p>Works perfectly for me.</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81307#81307 4 Answer by Peter Hilton for Mac OS X Terminal: Move cursor word by word Peter Hilton 2008-09-17T09:03:17Z 2008-09-17T09:03:17Z <p>I have Alt-Left/Right working: open <em>Preferences » Settings » Keyboard</em>, set the entry for <em>option cursor left</em> to <em>send string to shell: \033b</em>, and set <em>option cursor right</em> to <em>send string to shell: \033f</em>. You can also use this for other Control key combinations.</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81309#81309 2 Answer by Kristian J. for Mac OS X Terminal: Move cursor word by word Kristian J. 2008-09-17T09:04:01Z 2008-09-17T09:04:01Z <p>Out of the box you can use the quite bizarre Esc-F to move to the beginning of the next word and Esc-B to move to the beginning of the current word.</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81333#81333 4 Answer by Andy Lynch for Mac OS X Terminal: Move cursor word by word Andy Lynch 2008-09-17T09:08:22Z 2008-09-17T09:08:22Z <p>In Bash, these are bound to ESC-b and ESC-f. Bash has many, many more keyboard shortcuts; have a look at the output of <code>bind -p</code> to see what they are.</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/81343#81343 2 Answer by Matt for Mac OS X Terminal: Move cursor word by word Matt 2008-09-17T09:09:23Z 2008-09-17T09:09:23Z <p>If you check <code>Use option as meta key</code> in the keyboard tab of the preferences, then the default emacs style commands for forward- and backward-word and <code>⌥F</code> (alt+f) and <code>⌥B</code> (alt+b) respectively.</p> <p>I'd recommend reading <a href="http://rads.stackoverflow.com/amzn/click/1590593766" rel="nofollow" title="Amazon.com: From Bash to Z Shell: Conquering the Command Line: Oliver Kiddle, Jerry Peek, Peter Stephenson: Books">From Bash to Z-Shell</a>. If you want to increase your bash/zsh prowess!</p> http://stackoverflow.com/questions/81272/mac-os-x-terminal-move-cursor-word-by-word/87778#87778 6 Answer by Mecki for Mac OS X Terminal: Move cursor word by word Mecki 2008-09-17T21:19:20Z 2008-09-17T21:28:47Z <p>Actually it depends on what shell you use, however must shells have similar bindings. The bindings you are referring to (e.g. CTRL+A and CTRL+E) are bindings you will find in many other programs and they are used for ages, BTW also work in most UI apps.</p> <p>Here's a look of default bindings for Bash:</p> <p><a href="http://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/">Most Important Bash Keyboard Shortcuts</a></p> <p>Please also note that you can customize them. You need to create a file, name as you wish, I named mine .bash_key_bindings and put it into my home directory. There you can set some general bash options and you can also set key bindings. To make sure they are applied, you need to modify a file named <em>".bashrc"</em> that bash reads in upon start-up (you must create it, if it does not exist) and make the following call there:</p> <pre><code>bind -f ~/.bash_key_bindings </code></pre> <p>~ means home directory in bash, as stated above, you can name the file as you like and also place it where you like as long as you feed the right path+name to bind.</p> <p>Let me show you some excerpts of my .bash_key_bindings file:</p> <pre><code>set meta-flag on set input-meta on set output-meta on set convert-meta off set show-all-if-ambiguous on set bell-style none set print-completions-horizontally off </code></pre> <p>These just set a couple of options (e.g. disable the bell; this can be all looked up on the bash webpage).</p> <pre><code>"A": self-insert "B": self-insert "C": self-insert "D": self-insert "E": self-insert "F": self-insert "G": self-insert "H": self-insert "I": self-insert "J": self-insert </code></pre> <p>These make sure that the characters alone just do nothing but making sure the character is "typed" (they insert themselves on the shell).</p> <pre><code>"\C-dW": kill-word "\C-dL": kill-line "\C-dw": backward-kill-word "\C-dl": backward-kill-line "\C-da": kill-line </code></pre> <p>This is quite interesting. If I hit CTRL+d alone (I selected d for delete), nothing happens. But if I then type a lower case w, the word to the left of the cursor is deleted. If I type an upper case, however, the word to the right of the cursor is killed. Same goes for l and L regarding the whole line starting from the cursor. If I type an "a", the whole line is actually deleted (everything before and after the cursor).</p> <p>I placed jumping one word forward on CTRL+f and one word backward on CTRL+b</p> <pre><code>"\C-f": forward-word "\C-b": backward-word </code></pre> <p>As you can see, you can make a shortcut, that leads to an action immediately, or you can make one, that just inits a character sequence and then you have to type one (or more) characters to cause an action to take place as shown in the example further above.</p> <p>So if you are not happy with the default bindings, feel free to customize them as you like. Here's a <a href="http://www.gnu.org/software/bash/manual/bashref.html#Bindable-Readline-Commands" rel="nofollow">link to the bash manual</a> for more information.</p>