Advertisement
meowthsli

Main.sublime-menu

Nov 13th, 2012
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [
  2.      {
  3.         "id": "tools",
  4.         "children":
  5.         [{
  6.             "caption": "SublimeREPL",
  7.             "mnemonic": "r",
  8.             "id": "SublimeREPL",
  9.             "children":
  10.             [
  11.                 {"caption": "Clojure",
  12.                  "id": "Clojure",
  13.                  "children":[
  14.                     {"command": "repl_open",
  15.                      "caption": "Clojure",
  16.                      "id": "repl_clojure",
  17.                      "args": {
  18.                         "type": "subprocess",
  19.                         "encoding": "utf8",
  20.                         "cmd": {"windows": ["c:/Users/meowth/Documents/lein/lein.bat", "repl"],
  21.                                 "linux": ["lein", "repl"],
  22.                                 "osx":  ["lein", "repl"]},
  23.                         "soft_quit": "\n(. System exit 0)\n",
  24.                         "cwd": {"windows":"", // where the lein.bat lives
  25.                                 "linux": "$file_path",
  26.                                 "osx": "$file_path"},
  27.                         "syntax": "Packages/Clojure/Clojure.tmLanguage",
  28.                         "external_id": "clojure",
  29.                         "extend_env": {"INSIDE_EMACS": "0"}
  30.                         }
  31.                     },
  32.                     {"command": "clojure_auto_telnet_repl",
  33.                      "id": "repl_clojure_telnet",
  34.                      "caption": "Clojure-Telnet"}]}
  35.             ]  
  36.         }]
  37.     }
  38. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement