Cheat sheet added for Sublime Text 3

A well-described cheat sheet for Sublime Text 3 added for tools section.
This commit is contained in:
Manoj Tyagi 2019-09-30 22:35:29 +05:30 committed by GitHub
parent 710ec22c52
commit 70e7886997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 141 additions and 0 deletions

141
tools/sublime_text.md Normal file
View File

@ -0,0 +1,141 @@
# SUBLIME TEXT 3 CHEATSHEET
## Access every command with the command palette
- `shift + cmd + P `: Command palette
## Goto anything
- `cmd + P `: Goto file
- `ctrl + G `: Goto line
- `cmd + P and # `: Fuzzy search
- `cmd + R `: Goto symbol
## Quick selections
- `cmd + D `: Select word
- `cmd + K D `: Skip and add next
- `cmd + U `: Undo quick select
- `cmd + L `: Select line
- `ctrl + cmd + G `: Select all in file
- `shift + cmd + space `: Expand selection to scope
- `shift + cmd + L `: Split into lines
## Edit code
- `cmd + J `: Join 2 lines
- `cmd + shift + D `: Duplicate line
- `cmd + shift + R `: Reindent
- `cmd + shift + K `: Delete line
- `ctrl + cmd + up/down `: Move line/selection up/down
- `alt + cmd + V `: Paste from history
- `shift + cmd + / `: Comment/uncomment line
- `alt + backspace `: Delete word by word
- `alt + fn + backspace `: Forward delete word by word
- `cmd + shift + enter `: Insert line before
- `cmd + enter `: Insert line after
## Searching
- `cmd + F `: Search in file
- `shift + cmd + F `: Search in all files
- `<open files> `: where filter
## Miscelaneous
- `alt + cmd + right/left `: Switch open tab
- `Indent selection `: Indent selection
- `Unindent selection `: Unindent selection
- `Go to previous cursor position `: Go to previous cursor position
- `Go to next previous cursor position `: Go to next previous cursor position
- `Build and execute file `: Build and execute file
## Must have packages
`A file icon, BracketHighlighter, Color Highlighter, Comment-Snippets, DevDocs, EditorConfig, Emmet, File Rename, Git, Git blame, GitGutter, HTML-CSS-JS Prettify, JavaScript Completions, JavaScript Patterns, JavaScript Snippets, LESS, Nodejs, Package Control, Pretty JSON, SideBarEnhancements, SublimeLinter, SublimeLinter-contrib-eslint, Terminal`
## Preferences
```javascript
{
"color_scheme": "Packages/User/Color Highlighter/themes/Boxy Ocean.tmTheme",
"detect_indentation": false,
"folder_exclude_patterns":
[
"node_modules",
".svn",
".git",
".meteor/local"
],
"ignored_packages":
[
"Vintage"
],
"show_definitions": true,
"theme": "Adaptive.sublime-theme"
}
```
## Keymap
```javascript
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+shift+r"], "command": "reindent" },
{ "keys": ["super+h"], "command": "dev_docs_search_selection" }
]
```
## Syncing settings with iCloud
- `cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages`
- `mkdir -p ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/WebDev/ST3/Plugins`
- `mv User ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/WebDev/ST3/Plugins`
- `ln -s ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/WebDev/ST3/Plugins/User`
## Restore settings from iCloud
- `cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages`
- `rm -rf User`
- `ln -s ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/WebDev/ST3/Plugins/User`