

Try it and you will never go back to regular terminal :) Also it has a lot more options for customization, like keyboard shortcuts.Īlso I love that you can use cmd and 1-9 to switch between tabs. It's free and much nicer than plain old terminal.


In iTerm2 Pselect rofiles -> Keys -> General and select "Option key as Esc+."Īdditionally some Emacs-style key bindings for simple text navigation seem to work on bash shells. You can do this in Terminal by accessing preferences (CMD+,) and selecting Profiles -> Keyboard. Note that you have to make set the Option key to act like the Meta key. Selection.On macOS (all versions) the following keyboard shortcuts work by default. If you want a macro that will work from the end of a word, as well, then you need to modify it a bit: If you are already at the end of a word, it does absolutely nothing. The only caveat for the macro is that you need to run it from within a word.

Selection.MoveRight Unit:=wdCharacter, Count:=1 Selection.MoveLeft Unit:=wdCharacter, Count:=1 Selection.MoveRight Unit:=wdWord, Count:=1 So, your macro needs to actually evaluate what is to the left of the insertion point after using the Ctrl+Right Arrow. Thus, if the shortcut key moved to the left of a period (for example) at the end of a sentence, then moving one character to the left would put you within the word instead of at the end of the word. This won't work, however, because the Ctrl+Right Arrow actually moves to the beginning of the next word or to the left of the next punctuation mark, whichever comes first. You might think that you could simply record a macro that would move to the beginning of the next word (by pressing Ctrl+Right Arrow) and then back up one character (by pressing Left Arrow). The only way it can be done is with a macro that could then be assigned to a shortcut key. There is no built-in shortcut to do this. She knows that Ctrl+Right Arrow jumps to the beginning of the next word, but she'd like to jump to the end of the next word, prior to any punctuation or spaces. Lori wonders if there is a keyboard shortcut to jump to the end of a word.
