- Capital letters do the opposite of small letters in command (Press shift to trigger capital letters)
_
(underscore) to move the cursor at the beginning of line (doesn't switch to insert mode)0
(zero) moves the cursor to the zeroth position of the line (doesn't switch to insert mode)
$
(dollar) to move the cursor at the end of line (doesn't switch to insert mode)d$
will delete from wherever your cursor is till the end of the linef<character>
to move cursor to the first occurrence of<character>
f(
to move cursor to first occurence of(
t<character>
to move cursor to upto but not on the first occurrence of<character>
t(
to move cursor to first occurence of(
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kudos to Ribbiks from Doomworld forums, whose post helped me figure out how to get prboom built in the first place. | |
# Install Xcode from AppStore (you can skip this step if you will be building PrBoom+ without OpenGL support) | |
# Run Terminal and proceed with the following steps. | |
# Install Xcode command line tools | |
xcode-select --install | |
# Install homebrew (you will need to enter your password for installation) |