Fix #223
This commit is contained in:
parent
bd1a2778c3
commit
4ed531a6be
|
@ -192,10 +192,18 @@ var editors = {
|
||||||
'find', 'find-next', 'find-previous', 'replace', 'replace-all',
|
'find', 'find-next', 'find-previous', 'replace', 'replace-all',
|
||||||
'format', 'autocomplete', 'jump-to-decl', 'expr-info', 'find-usages', 'toggle-comment',
|
'format', 'autocomplete', 'jump-to-decl', 'expr-info', 'find-usages', 'toggle-comment',
|
||||||
'edit']);
|
'edit']);
|
||||||
|
|
||||||
|
// remove selected tree node
|
||||||
|
tree.fileTree.cancelSelectedNode();
|
||||||
|
wide.curNode = undefined;
|
||||||
|
wide.curEditor = undefined;
|
||||||
|
wide.refreshOutline();
|
||||||
|
$(".footer .cursor").text('');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!nextId) {
|
if (!nextId) {
|
||||||
// 不存在打开的编辑器
|
// 编辑器区域不存在打开的 Tab
|
||||||
// remove selected tree node
|
// remove selected tree node
|
||||||
tree.fileTree.cancelSelectedNode();
|
tree.fileTree.cancelSelectedNode();
|
||||||
wide.curNode = undefined;
|
wide.curNode = undefined;
|
||||||
|
@ -806,7 +814,7 @@ var editors = {
|
||||||
});
|
});
|
||||||
|
|
||||||
if ("text/html" === data.mode) {
|
if ("text/html" === data.mode) {
|
||||||
emmetCodeMirror(editor);
|
emmetCodeMirror(editor);
|
||||||
}
|
}
|
||||||
|
|
||||||
editor.on('cursorActivity', function (cm) {
|
editor.on('cursorActivity', function (cm) {
|
||||||
|
|
|
@ -280,6 +280,11 @@ var menu = {
|
||||||
run: function () {
|
run: function () {
|
||||||
menu.saveAllFiles();
|
menu.saveAllFiles();
|
||||||
|
|
||||||
|
if ($("#buildRun").hasClass("ico-stop")) {
|
||||||
|
wide.stop();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
var currentPath = editors.getCurrentPath();
|
var currentPath = editors.getCurrentPath();
|
||||||
if (!currentPath) {
|
if (!currentPath) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -289,11 +294,6 @@ var menu = {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($("#buildRun").hasClass("ico-stop")) {
|
|
||||||
wide.stop();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
var request = newWideRequest();
|
var request = newWideRequest();
|
||||||
request.file = currentPath;
|
request.file = currentPath;
|
||||||
request.code = wide.curEditor.getValue();
|
request.code = wide.curEditor.getValue();
|
||||||
|
|
Loading…
Reference in New Issue