Advertisement
Guest User

Untitled

a guest
Jul 16th, 2012
1,864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [
  2.     { "keys": ["shift+alt+right"], "command": "indent" },
  3.     { "keys": ["shift+alt+left"], "command": "unindent" },
  4.  
  5.     { "keys": ["ctrl+e"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
  6.  
  7.     { "keys": ["shift+alt+up"], "command": "swap_line_up" },
  8.     { "keys": ["shift+alt+down"], "command": "swap_line_down" },
  9.  
  10.     { "keys": ["ctrl+shift+down"], "command": "run_macro_file", "args": {"file": "Packages/User/duplicate_down.sublime-macro"} },
  11.  
  12.     { "keys": ["ctrl+q"],"command":"last_edit" },
  13.     { "keys": ["ctrl+shift+q"],"command":"switch_edit_view", "args":{"way":"right"} },
  14.  
  15.     { "keys": ["alt+1"], "command": "run_macro_file", "args": {"file": "Packages/User/_die.sublime-macro" } },
  16.     { "keys": ["alt+3"], "command": "run_macro_file", "args": {"file": "Packages/User/_die2.sublime-macro" } },
  17.     { "keys": ["alt+4"], "command": "run_macro_file", "args": {"file": "Packages/User/_die3.sublime-macro" } },
  18.  
  19.     { "keys": ["alt+2"], "command": "next_view" },
  20.     { "keys": ["alt+6"], "command": "prev_view" },
  21.  
  22.     { "keys": ["alt+5"], "command": "toggle_comment" },
  23.  
  24.     { "keys": ["super+v"],"command":"clipboard_manager_choose_and_paste" },
  25.  
  26.     {"keys": ["shift+f8"], "command": "xdebug" },
  27.     {"keys": ["f8"], "command": "xdebug_continue" },
  28.     {"keys": ["ctrl+f8"], "command": "xdebug_breakpoint"},
  29.     {"keys": ["ctrl+f5"], "command": "xdebug_continue", "args": {"state": "run"}},
  30.     {"keys": ["f7"], "command": "xdebug_continue", "args": {"state": "step_into"}},
  31.     {"keys": ["f8"], "command": "xdebug_continue", "args": {"state": "step_over"}},
  32.     {"keys": ["f5"], "command": "xdebug_continue", "args": {"state": "step_out"}},
  33.  
  34.     {
  35.         "keys": ["ctrl+shift+o"],
  36.         "command": "fuzzy_file_nav",
  37.         "args":
  38.         {
  39.             "start": "/www",
  40.             "regex_exclude": [".*\\.(DS_Store|svn|git)$"]
  41.         }
  42.     },
  43.  
  44.     { "keys": ["super+c"], "command": "open_recently_closed_file" },
  45.     { "keys": ["super+`"], "command": "goto_open_file" }
  46. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement