allow cmd-shift-l on terminal

pull/385/head
nightwing 2016-12-14 02:59:08 +04:00
rodzic 0454a067f5
commit 7cc5abac03
3 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -85,7 +85,7 @@
"c9.ide.ace.split": "#0ae0151c78",
"c9.ide.ace.statusbar": "#14a992e377",
"c9.ide.ace.stripws": "#042a9936e3",
"c9.ide.behaviors": "#1e5edce067",
"c9.ide.behaviors": "#9a875b026e",
"c9.ide.closeconfirmation": "#cee4674141",
"c9.ide.configuration": "#a936df26bb",
"c9.ide.dialog.wizard": "#7667ec79a8",

Wyświetl plik

@ -377,6 +377,7 @@ define(function(require, exports, module) {
commands.tab8,
commands.tab9,
commands.tab0,
commands.revealtab,
commands.reopenLastTab,
commands.gotopaneleft,
commands.gotopaneright,

Wyświetl plik

@ -1313,6 +1313,12 @@ define(function(require, exports, module) {
* @param {String} message the message to write to the terminal.
*/
write: write,
getPathAsync: function(callback) {
currentSession.getStatus({}, function(err, result) {
callback(err, result && util.normalizePath(result.path));
});
},
// toggleMouse : toggleMouse,
// toggleStatus : toggleStatus,