我们的团队使用 ActiveState Komodo Edit 来编辑远程主机上的文件。如果文件已经打开进行编辑,有没有办法(如在 VIM 中)锁定文件以进行编辑?
问问题
196 次
1 回答
2
使用宏来切换当前选项卡的只读模式:
// Toggle colouring of and readonly on current tab
var view = ko.views.manager.currentView;
var scimoz = view.scimoz;
var tab = view.parentNode._tab;
if (tab.style.backgroundColor) {
tab.style.cssText = "outline-color: -moz-use-text-color; outline-style: none; outline-width: medium;";
if (scimoz.readOnly) scimoz.readOnly = false;
} else {
tab.style.cssText = "background: #FF8080;";
scimoz.readOnly = true;
}
参考
于 2013-12-31T23:25:56.757 回答