kopia lustrzana https://github.com/c9/core
allow cmd-shift-l on terminal
rodzic
0454a067f5
commit
7cc5abac03
|
@ -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",
|
||||
|
|
|
@ -377,6 +377,7 @@ define(function(require, exports, module) {
|
|||
commands.tab8,
|
||||
commands.tab9,
|
||||
commands.tab0,
|
||||
commands.revealtab,
|
||||
commands.reopenLastTab,
|
||||
commands.gotopaneleft,
|
||||
commands.gotopaneright,
|
||||
|
|
|
@ -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,
|
||||
|
|
Ładowanie…
Reference in New Issue