Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Sublime Useful Tips And Tricks
- -----------------------------------------
- Preferences => Settings => User
- -----------------------------------------
- "highlight_modified_tabs": true,
- "update_check": false,
- "save_on_focus_lost": true
- -----------------------------------------
- Preferences => Key Bindings => User
- -----------------------------------------
- [
- //////////////////////////////////////
- // perfect coding view (cmd+shift+r) //
- ///////////////////////////////////////
- { "keys": ["super+shift+r"], "command": "reindent" },
- /////////////////////////////////////////////
- // perfect Paste Code View From inter Net //
- /////////////////////////////////////////////
- { "keys": ["super+v"], "command": "paste_and_indent" },
- { "keys": ["super+shift+v"], "command": "paste" },
- /////////////////////////////////
- // console.log shortcut create //
- /////////////////////////////////
- {
- "keys": ["ctrl+shift+l"],
- "command": "insert_snippet",
- "args": {
- "contents": "console.log('=== $SELECTION $TM_FILENAME [$TM_LINE_NUMBER] ===', $SELECTION ${0});"
- },
- "context": {
- "key": "selector",
- "operator": "equal",
- "operand": "source.js",
- "match_all": true
- }
- },
- // Insert DataTime
- { "keys": ["f5"], "command": "insert_datetime"},
- // Open File Location
- {
- "keys": ["ctrl+alt+e"],
- "command": "open_dir",
- "args": {"dir": "$file_path", "file": "$file_name"}
- },
- { "keys": ["ctrl+alt+s"], "command": "reveal_in_side_bar" },
- // Title Case
- { "keys": ["ctrl+shift+c"], "command": "title_case" },
- // Clipboard Manager Copy Paste Command
- { "keys": ["ctrl+x"], "command": "clipboard_manager_cut" },
- { "keys": ["ctrl+c"], "command": "clipboard_manager_copy" },
- { "keys": ["ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": true } },
- { "keys": ["ctrl+alt+shift+v"], "command": "clipboard_manager_choose_and_paste" },
- { "keys": ["ctrl+shift+'"], "command": "change_quotes" },
- { "keys": ["ctrl+alt+f"], "command": "find_next_conflict" },
- { "keys": ["ctrl+alt+o"], "command": "keep", "args": { "keep": "ours" } },
- { "keys": ["ctrl+alt+t"], "command": "keep", "args": { "keep": "theirs" } },
- { "keys": ["ctrl+alt+a"], "command": "keep", "args": { "keep": "ancestor" } },
- { "keys": ["ctrl+alt+c"], "command": "list_conflict_files" },
- // Delete Empty Line And Selected Code Remove Empty Lines
- {
- "keys": ["ctrl+shift+q"], "command": "delete_empty_lines",
- },
- {
- "keys": ["super+alt+q"],
- "command": "doxy_comment_nearest_entity",
- "args": {},
- "context": [
- { "key": "selector", "operator": "equal", "operand": "source, text.html.cshtml, text.jade", "match_all": true }
- ]
- }
- ]
- -----------------------------------------
- Preferences => Settings => User (Default User Settings)
- -----------------------------------------
- {
- "color_scheme": "Monokai.sublime-color-scheme",
- "font_size": 13,
- "ignored_packages":
- [
- "Vintage"
- ],
- }
- ---------------------------------------------
- Plug-in Name Usefull
- ---------------------------------------------
- 1. "A File Icon"
- 2. "Alignment"
- 3. "All Autocomplete"
- 4. "Atomizr"
- 5. "Better CoffeeScript"
- 6. "BlameHighlighter"
- 7. "Bootstrap 4 Autocomplete"
- 8. "Bootstrap 4 Snippets"
- 9. "BracketHighlighter"
- 10. "ChangeQuotes"
- 11. "Clipboard Manager"
- 12. "CodeIgniter Snippets"
- 13. "Compare Side-By-Side"
- 14. "DiffTabs"
- 15. "DocBlockr"
- 16. "DoxyDoxygen"
- 17. "Emmet"
- 18. "FileDiffs"
- 19. "Git Conflict Resolver"
- 20. "GitGutter"
- 21. "HTML Nest Comments"
- 22. "HTML Snippets"
- 23. "jQuery"
- 24. "jQuery Snippets pack"
- 25. "JSON Key-Value"
- 26. "jsonnet syntax"
- 27. "Minifier"
- 28. "MySQL Snippets"
- 29. "Package Control"
- 30. "Pretty JSON"
- 31. "React Create Component"
- 32. "ReactJS"
- 33. "SideBarEnhancements"
- 34. "Tabnine"
- 35. "Trimmer"
- 36. "Underliner"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement