Can home and end keys be mapped when using Terminal?

The Home and End keys on a MacBook Pro can be emulated with Fn + or fFn + . Or when certain settings are changed, with the ⌘ Command key instead of Fn.

None of these works in Terminal.

As I frequently need to go to the beginning or end of the line and would also like to jump forwards or backwards by word.

How can I jump around on a line in Terminal?


Solution 1:

Use control+a for HOME and control+e for END in Terminal.

Also use esc+f to move to the beginning of the next word and esc+b to move to the beginning of the current word. (you Must be careful about current and next)

Solution 2:

To answer the one about how to get the beginning or end of the line, it appears that by default Terminal maps these keys to it:

  • shift+home → beginning of line, equivalent to the "home" key in normal terminals
  • shift+end → end of line, equivalent to the "end" key in normal terminals

If you want home and end to work the "normal" way (and not require shift), go to [Terminal menu] → Preferences → Profiles tab (or settings on some versions of OS X) → Keyboard sub-tab.

Then modify/add these keys to be the following "send string to shell"

  • home: \033[H
  • end: \033[F

You can get the \033 part by hitting the escape key within the edit dialog input, if you need to add it.

Then home and end will work like normal again (phew).

Also note that "alt + ←" and "alt + →" by default in terminal map to word left and word right, another handy combo to remember.

In later versions of Mac OS X, if the terminal screen shifts up or down when you press the home/end key, the home key may need to be set to \033[1~ and the end key to \033[4~ to get the results you want (no shift needed).

Feel free to modify this answer to add more useful key bindings, as it is a community wiki.

Solution 3:

It sounds like you are looking for some help using readline and bash, here is an insane list of keyboard stuff modified from: http://www.math.utah.edu/docs/info/features_7.html#SEC45

Ctrla Move to the start of the line.
Ctrle Move to the end of the line.
Escf Move forward a word.
Escb Move backward a word.
Ctrll Clear the screen, reprinting the current line at the top.

Ctrlk Kill the text from the current cursor position to the end of the line.
Escd Kill from the cursor to the end of the current word, or if between words, to the end of the next word.
EscDel Kill from the cursor the start of the previous word, or if between words, to the start of the previous word.
Ctrlw Kill from the cursor to the previous whitespace. This is different than EscDelCtrla because the word boundaries differ.

Ctrld Delete the character underneath the cursor.
Ctrl_ Undo the last thing that you did. You can undo all the way back to an empty line.

And, here is how to yank the text back into the line. Yanking means to copy the most-recently-killed text from the kill buffer.

Ctrly Yank the most recently killed text back into the buffer at the cursor.
Escy Rotate the kill-ring, and yank the new top. You can only do this if the prior command is Ctrly or Escy.

Solution 4:

You can move one word at a time with option+left and option+right.

Regarding using home and end, Terminal's default bindings are the following:

  • shift+home → jump to beginning of line
  • shift+end → jump to end of line
  • home → scroll to top of scroll-back buffer
  • end → scroll to bottom of scroll-back buffer

In many other terminal apps (on multiple platforms), those modified and unmodified pairs are reversed (i.e. naked home and end are used to jump around the current line and the modified versions (whether by shift or something else) are used to navigate the scroll-back buffer). You can reverse Terminal's bindings to work that way if you wish by doing the following:

Go to Terminal menu → Preferences → Settings/Profile tab → Keyboard sub-tab.

Then modify the key–action pairs to be the following:

  • ↖︎: Send text: \033[H
  • ⇧↖︎: Scroll To Top
  • ↘︎: Send text: \033[F
  • ⇧↘︎: Scroll To Bottom

Note: \033 is entered into the text-to-be-sent box in the Edit dialog by pressing the escape key.

While there, you may want to similarly swap the bindings of modified and unmodified page up and page down, to keep things consistent: pressing a navigation key with shift represents a command to Terminal itself (to navigate the scroll-back buffer like a document), while pressing one without sends the key-press through to whatever's running within it (e.g. bash, less, nano, screen, etc.). The key–action pairs for that are:

  • ⇞: Send text: \033[5~
  • ⇧⇞: Scroll Page Up
  • ⇟: Send text: \033[6~
  • ⇧⇟: Scroll Page Down