Notes on Commands and Shortcuts - GRibbans/Gribbans GitHub Wiki

List of Commands and Shortcuts


Windows OS (and some applications)

Shift + F10 | Equivalent to right-click, opens a content menu usually

IDE

VSCodium / VSCode / Cursor.sh
Command Description
Ctrl + Shift + G Move to VSC Commit input field
Ctrl + Shift + E View project folder contents
Alt + Up/Down Arrow Move text element up/down rows
Ctrl + Shift + E View project folder contents
Ctrl + Alt + Up/Down Arrow Add cursor up/down
Alt + S Mark text as strike-through

Web Browsers

Chrome Commands
Command Description
Ctrl + L or F6 Move cursor to URL input area
Alt + F Open the Chrome menu (only way to access Reading List)
Ctrl + Shift + O Open the Bookmarks Manager
F12 Open developer tools
F12 then Ctrl + Shift + C Open developer tools and activate the elements selection tool
Ctrl + PgDn / PgUp Move left or right, between open tabs
Alt + Space then X Maximise the browser window
Ctrl + K Initiate a search using default search engine
Shift + F5 Reload the current page, ignoring cached content
Ctrl + U Display the page's Source Code
Ctrl + + or - Make everything on the page bigger (+) or smaller (-)
Ctrl + D Save your current web page as a bookmark
Ctrl + Shift + D Save all open tabs as bookmarks in a new folder
Shift + Scroll Scroll horizontally on the page
Alt + Home Open the Home page in the current tab
Space or PgDn Scroll down a web page, a screen at a time
Shift + Space or PgUp Scroll up a web page, a screen at a time
Firefox Commands
Command Description
Ctrl + L Move cursor to URL input area

Node JS

Node JS (NVM, NPM) Commands
Command Description
nvm list List Node JS versions installed by Node Version Manager (NVM)
nvm install-latest-npm NVM command to Update NPM
--------------------------------------- --------------------------------------------------------------
npm list List local packages installed by NPM
npm i <package> Local - Install package.json dependencies via NPM
npm un <package> Local - Uninstall package.json dependencies
npm up <package> Local - Update package.json dependencies
--------------------------------------- --------------------------------------------------------------
npm ls -g Global - List packages installed by NPM
npm -g uninstall <package> Global - Uninstall package.json dependencies
npm update -g <package> <package>... Global - Update package.json dependencies

VS Codium (VS Code, Cursor)

VS Codium (VS Code, Cursor) Commands
Command Description
Shift+Alt+Left or Shift+Alt+Right Quickly shrink or expand the current selection.

Markdown in GitHub

Alerts (aka 'call-outs')

Alerts (aka 'call-outs')

[!NOTE]
Highlights information that users should take into account, even when skimming.

> [!NOTE]  

[!TIP] Optional information to help a user be more successful.

> [!TIP]

[!IMPORTANT]
Crucial information necessary for users to succeed.

> [!IMPORTANT]  

[!WARNING]
Critical content demanding immediate user attention due to potential risks.

> [!WARNING]  

[!CAUTION] Negative potential consequences of an action.

> [!CAUTION]
Content block Collapsed

Expanding reveals additional example content within collapsed block.

+----------------------------------+---------+------------------------+----------------+
|               Col1               |  Col2   |          Col3          | Numeric Column |
+----------------------------------+---------+------------------------+----------------+
| Value 1                          | Value 2 | 123                    |           10.0 |
| Separate                         | cols    | with a tab or 4 spaces |       -2,027.1 |
| This is a row with only one cell |         |                        |                |
+----------------------------------+---------+------------------------+----------------+


⚠️ **GitHub.com Fallback** ⚠️