0

请看一下截图:

在此处输入图像描述

如您所见,有 3 个选项卡打开了 3 个不同的“index.xml”文件。我一直在寻找一个选项来在选项卡名称中显示类似“folder/file.extension”的内容,以便能够区分文件,但我找不到任何东西。

使用“转到文件”也不是很有帮助,因为所有文件的路径名称太长,以至于我看不到包含文件的文件夹。

有任何想法吗?

干杯

更新:

可以使用鼠标增加“转到文件”面板的宽度,Komodo 将来会记住该大小。这有帮助!

4

3 回答 3

1

我们为此专门添加了 OpenFiles 窗格,请查看 View > Tabs & Sidebars > Open Files。

这是我的窗格在打开多个同名文件时的样子:

打开文件窗格

此外,您可以指定自己的模式,目前这是通过宏以编程方式完成的,但将来您将能够通过 UI 执行此操作。

例如,我使用以下宏进行 Komodo 开发:

ko.openfiles.groupers.byPattern.patterns = [
    {
        name:       'Plat - %match% - config',
        pattern:    /\/skin\/plat\/([a-z0-9_-]*)\/_config\//i
    },
    {
        name:       'Plat - %match%',
        pattern:    /\/skin\/plat\/([a-z0-9_-]*)\//i
    },
    {
        name:       'Module - %match% - skin config',
        pattern:    /\/(?:module|modules)\/([a-z0-9_-]*)\/skin\/_config\//i
    },
    {
        name:       'Module - %match%',
        pattern:    /\/(?:module|modules)\/([a-z0-9_-]*)\//i
    },
    {
        name:       'Skin - %match% - config',
        pattern:    /\/chrome\/skins\/([a-z0-9_-]*)\/_config\//i
    },
    {
        name:       'Skin - %match%',
        pattern:    /\/chrome\/skins\/([a-z0-9_-]*)\//i
    },
    {
        name:       'Iconset - %match%',
        pattern:    /\/chrome\/iconsets\/([a-z0-9_-]*)\//i
    },
    {
        name:       'Component - %match%',
        pattern:    /\/(?:component|components)\/([a-z0-9_-]*)/i
    },
    {
        name:       'Locale',
        pattern:    /\/locale(?:\/|$)/i
    },
    {
        name:       'Skin',
        pattern:    /\/skin(?:\/|$)/i
    },
    {
        name:       'Module',
        pattern:    /\/(?:module|modules)(?:\/|$)/i
    },
    {
        name:       'Component',
        pattern:    /\/(?:component|components)(?:\/|$)/i
    },
];

ko.openfiles.reload(true);

您可以在此处阅读宏:http: //docs.activestate.com/komodo/8.5/macros.html#macros_writing

使用上面的宏,我需要确保选择了“按模式分组”选项,然后我只运行宏,您在上面的屏幕截图中看到的相同文件将根据我指定的模式进行分组:

带有模式的 openfiles 窗格

请注意,这需要最新版本的 Komodo (8.5)。

另请注意,如果您使用“打开文件”窗格,您可能会发现不再需要常规选项卡,您可以在“查看 > 查看编辑器选项卡”下禁用这些选项卡。

希望对你有帮助,祝你好运!

于 2013-11-07T17:11:53.860 回答
0

使用 Komodo JavaScript API 更改选项卡标题的默认显示:

komodo.assertMacroVersion(3);

function changeTabTitles(useLongerTitle, splitLength) {
try {
    var vm = ko.views.manager.topView;
    var box = document.getAnonymousNodes(vm)[0];

    // Get the views-tabbed elements.
    var topTabs = box.firstChild;
    var bottomTabs = box.lastChild;

    if (!useLongerTitle) {
        // Restore the original functionality.
        if (topTabs._tweakui_updateLeafName) {
            topTabs.updateLeafName = topTabs._tweakui_updateLeafName;
            topTabs._tweakui_updateLeafName = null;
        }
        if (bottomTabs._tweakui_updateLeafName) {
            bottomTabs.updateLeafName = bottomTabs._tweakui_updateLeafName;
            bottomTabs._tweakui_updateLeafName = null;
        }

    } else {
        // Save the original functionality.
        if (!topTabs._tweakui_updateLeafName)
            topTabs._tweakui_updateLeafName = topTabs.updateLeafName;
        if (!bottomTabs._tweakui_updateLeafName)
            bottomTabs._tweakui_updateLeafName = bottomTabs.updateLeafName;

        // Replace the updateLeafName implementation to use something
        // different for the tab label.
        var osSvc = Components.classes["@activestate.com/koOs;1"].
                            getService(Components.interfaces.koIOs);
        var dirsep = osSvc.sep;
        topTabs.updateLeafName =
        bottomTabs.updateLeafName = function(view) {
            view.parentNode._tab.label = view.title;
            if (view.document) {
                view.parentNode._tab.setAttribute('crop', 'start');
                var path = view.document.displayPath;
                var sep = dirsep;
                if (path.lastIndexOf(sep) == -1) {
                    // Try using the URI separator.
                    sep = "/";
                }
                var path_split = path.split(sep);
                var l = path_split.length;
                var label = path_split.slice(l-splitLength, l).join(sep);
                view.parentNode._tab.label = label;
                view.parentNode._tab.setAttribute('tooltiptext',view.document.displayPath);
                this.tabbox.firstChild.scrollBoxObject.ensureElementIsVisible(this.tabbox.firstChild.selectedItem);
            }
        }
    }

将其保存为并根据自己的喜好对其进行自定义。

于 2013-10-15T01:35:16.820 回答
0

为 Komodo 8.5 更新了代码(view.document -> view.koDoc)

komodo.assertMacroVersion(3);

try {
var vm = ko.views.manager.topView;
var box = document.getAnonymousNodes(vm)[0];

// get the views-tabbed elements
var tabset1 = box.firstChild;
var tabset2 = box.lastChild;

// replace the updateLeafName implementation to use something different
// for the tab label

tabset1.updateLeafName =
tabset2.updateLeafName = function(view) {
    view.parentNode._tab.label = view.title;
    if (view.koDoc) {
        var language = view.koDoc.language;
        if (language == 'Python') {
            var parts = view.koDoc.displayPath.split('/');
            var len = parts.length;
            var label = '';
            if (len > 2) {
                label += parts[len-2] + '/';
            }
            label += parts[len-1];

            view.parentNode._tab.setAttribute('crop', 'start');
            view.parentNode._tab.label = label;
            view.parentNode._tab.setAttribute('tooltiptext',view.koDoc.displayPath);
            this.tabbox.firstChild.scrollBoxObject.ensureElementIsVisible(this.tabbox.firstChild.selectedItem);
        }
    }
};

// the "on startup" trigger happens after files
// are opened, so we need to call updateLeafName
// for each opened view.  Files opened after startup
// will be fine
var views = ko.views.manager.topView.getViews(true);
for (var i=0; i < views.length; i++) {
    if (views[i].koDoc) {
        views[i].updateLeafName(views[i]);
    }
}

} catch(e) {
    alert(e);
}
于 2014-05-04T13:21:36.340 回答