From 70e7886997c84026342ea50c9bb7c323f3e5eccd Mon Sep 17 00:00:00 2001 From: Manoj Tyagi <38884133+neo-0224@users.noreply.github.com> Date: Mon, 30 Sep 2019 22:35:29 +0530 Subject: [PATCH] Cheat sheet added for Sublime Text 3 A well-described cheat sheet for Sublime Text 3 added for tools section. --- tools/sublime_text.md | 141 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 tools/sublime_text.md diff --git a/tools/sublime_text.md b/tools/sublime_text.md new file mode 100644 index 0000000..8ba2cf8 --- /dev/null +++ b/tools/sublime_text.md @@ -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 + +- ` `: 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`