One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| On iTerm2 - Open Preferences > Profiles > Keys > Key Mappings > Presets > Select Natural Text Editing | |
| - You can move a word backwards using Option ⌥ + ← and a word forwards using Option ⌥ + → | |
| - Move to the start of the line using fn + ← and to the end of the line with fn + →. | |
| - Also you can delete a word backwards using Option ⌥ + ⌫, delete the whole line using Command ⌘ + ⌫. | |
| If the preset doesn't appear, reinstall iTerm2. If you installed it using Homebrew + Cask: | |
| brew cask reinstall iterm2 |
| ! Trying to F*** with my keyboard. | |
| ! | |
| ! The theory is that if I make the caps lock be the "Mode_switch" key, | |
| ! then I can change what happens for each key when I press the "Mode_switch" key. | |
| ! | |
| ! I'm not using the "Mode_switch" key anyway... | |
| ! | |
| ! This will make the caps lock be the "Mode_switch" key. | |
| clear Lock |
To remove a submodule you need to:
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
| # ----------------------------------------------------------------- | |
| # .gitignore | |
| # Bare Minimum Git | |
| # https://salferrarello.com/starter-gitignore-file/ | |
| # ver 20221125 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | |
| # to download this file | |
| # |
| inoremap <expr> <Tab> SkipClosingParentheses() | |
| function! SkipClosingParentheses() | |
| let line = getline('.') | |
| let current_char = line[col('.')-1] | |
| "Ignore EOL | |
| if col('.') == col('$') | |
| return "\t" | |
| end |