This commit is contained in:
Liang Ding 2014-09-12 10:59:26 +08:00
parent 6dda8e487f
commit 64c4863c2d
1 changed files with 3 additions and 3 deletions

View File

@ -146,9 +146,6 @@ var editors = {
return;
}
// 打开一个新编辑器并定位到跳转的行列
var line = data.cursorLine;
var request = {
path: data.path
};
@ -166,6 +163,9 @@ var editors = {
}
// FIXME: V, 这个可能不在文件树里,但是也需要打开一个编辑器
// 打开一个新编辑器并定位到跳转的行列
var line = data.cursorLine;
var ch = data.cursorCh;
editors.newEditor(data);
}
});