Skip to content

Commit

Permalink
IO: suppress_echo and use the same call on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
wuub committed Sep 29, 2013
1 parent 911d6ad commit 59f10b6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions config/Io/Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@
"id": "SublimeREPL",
"children":
[
{"command": "repl_open",
{"command": "repl_open",
"caption": "Io",
"id": "repl_io",
"mnemonic": "i",
"args": {
"type": "subprocess",
"encoding": "utf8",
"cmd": {"linux": ["io"],
"cmd": {"linux": ["io", "${packages}/SublimeREPL/config/Io/repl.io"],
"windows": ["io", "${packages}/SublimeREPL/config/Io/repl.io"],
"osx": ["io"]},
"osx": ["io", "${packages}/SublimeREPL/config/Io/repl.io"]},
"cwd": "$file_path",
"external_id": "io",
"suppress_echo": true,
"syntax": "Packages/SublimeREPL/config/Io/Io.tmLanguage"
}
}
]
]
}]
}
]

0 comments on commit 59f10b6

Please sign in to comment.