Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ///Users/USERNAME/Library/Application Support/Sublime Text 3/Packages/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 }
- ]
- },
- ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement