问题标签 [komodoedit]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
605 浏览

komodoedit - 如何删除 Komodo Edit 8 中的右列?

图片链接

你看,我想删除我的光标所在的列,但是文档中没有提到如何做到这一点。

我正在使用 Komodo Edit 8。我什至不知道它叫什么 -right-column、right-column、标记等。这个额外的空间在我的显示器上占用了太多空间。

0 投票
1 回答
487 浏览

komodoedit - Komodo Edit - 具有错误属性的自动完成填充脚本标签

我正在使用 Komodo Edit 8.0。每当我添加<script>标签时,它都会用

如何更改 Komodo 为 script 标签填写的内容?

0 投票
0 回答
136 浏览

python-2.7 - komodo 编辑 ValueError:无法将字符串转换为浮点数:

这是我在 Macbook Pro 上的 Komodo 编辑中使用 Python 2.7 的源代码。

每次我为 y 输入值时,都会出现值错误:无法将字符串转换为浮点数:警报出现。我正在关注麻省理工学院的开放课件,即使使用问题集的模型解决方案也会发生这种情况。我应该如何解决这个问题?

非常感谢

0 投票
3 回答
299 浏览

filepath - 当有多个同名文件时,在选项卡中显示文件路径

请看一下截图:

在此处输入图像描述

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

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

有任何想法吗?

干杯

更新:

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

0 投票
1 回答
2085 浏览

file-io - 打开文件时在 Komodo Edit 中自动打开自动换行

我使用 Komodo Edit 8.5,我想在打开文件时自动设置自动换行。不幸的是,我在“编辑 > 首选项”中找不到此设置。你能帮助我吗?是否有可能在“prefs.xml”文件中更改此设置?

0 投票
1 回答
489 浏览

windows-7 - 文件类型分组,如何取消分组

在 Windows 7 中,安装 Komodo Edit 后,我​​尝试使用来自 NirSoft 的 FileTypesMan 更改文件类型图标,但很奇怪,一旦我更改 .js 的描述,它也会更改为 .php 的相同,反之亦然其他方式也是。我的猜测是,也许 Komodo 将它添加到某些文件类型组中,但不知道如何区分它们?我的主要目标是为 php 和 js 文件(每个不同)有一个自定义的 php 图标

有没有经验的人,或者建议?以前听说过不同文件扩展名之间的这种绑定

0 投票
3 回答
582 浏览

komodoedit - How do you repeat a macro in Komodo Edit?

In many other editors, when you record a macro you can run that macro repeatedly. However, in Komodo Edit there is not an option to do so. In Komodo Edit, how do you repeat a macro X times, or repeat a macro to the end of a file?

NotePad++ lets you repeat a macro

NotePad++ lets you repeat a macro

Komodo Edit doesn't have that option in the menu

Komodo Edit doesn't have that option in the menu

0 投票
1 回答
95 浏览

python - 如果在 Komodo Edit 上按 Ctrl+Space 时总是有一个选择列表?

我是Komodo Edit / Python的新手。我想知道为什么 Komodo 有时会给我一个单词列表来自动完成我当前的单词,而在其他时候,它什么也没给我,或者它在不问我的情况下自动完成我的当前单词(即使有多个选择)

有没有办法告诉 Komodo 在按下 Ctrl+Space 时总是给我一个选择列表(比如 Visual Studio 的行为?)

0 投票
1 回答
814 浏览

python - komodo edit 不会在脚本执行时识别 python 包,但会在自动完成时识别它们

我正在尝试设置 Komodo 编辑以在运行 Mavericks 的新 Mac 上运行 Python 脚本。我安装了 Python 的 ActiveState 版本(ActivePython 2.7.5.6)和一些必要的包:

如果可能的话,为了安装我使用 pip(pip install 模块)的软件包。否则我会使用 setup_tools,如果前两个不起作用,则使用 python 设置脚本。

Komodo Edit 的自动完成功能还可以识别包(例如 bitarray、Pycluster),我可以从终端使用这些包运行脚本;但是,当我从 Komodo Edit 执行 Python 解释器时,我得到以下信息:

Traceback (most recent call last): File "/Users/stevensteinway/Desktop/t-02.py", line 1, in <module> import bitarray ImportError: No module named bitarray

在 Preferences --> Python 我已经导入了特定的目录,但这仍然不能解决问题:

有谁知道为什么会发生这种情况以及如何解决?

谢谢,

史蒂夫

@martineau

我包括以下代码:

import sys print sys.path

并得到这个输出:

'/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages']

最后一个文件夹是这样的:/Library/Python/2.7/site-packages

但我认为应该是这样的:

'/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages'</p>

我通过 Komodo 编辑 GUI(首选项 --> 语言 --> Python)输入了它,我包含的路径/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages似乎被截断了。这可能是问题吗?

0 投票
1 回答
196 浏览

api - 有没有办法在 Komodo Edit 中锁定文件?

我们的团队使用 ActiveState Komodo Edit 来编辑远程主机上的文件。如果文件已经打开进行编辑,有没有办法(如在 VIM 中)锁定文件以进行编辑?