textmate,如何在自己编写的包中标记文本...?

发布于 2024-10-20 10:25:43 字数 390 浏览 6 评论 0原文

我开始喜欢上 Textmate,但是 Textmate 有一个功能我很怀念,我一直在 notepad++ 或 eclipse 中使用它。

如果您双击文本中的某个单词,您会看到每个单词的拼写都与此相同。这个功能使得代码阅读变得非常容易,尤其是外国代码,所以我想自己为textmate写一个bundle。

我熟悉reg-ex,我认为使用sed查找文档中$TM_CURRENT_WORD的用法不是问题。

我的问题: 我从来没有写过 textmate 包,而且我不知道是否有可能从 tm-bundle 中标记文本。我没有在不同的包中找到示例代码,而且我也不知道在包编辑器中使用哪个“输出”,因为没有建议适合我的问题。

任何提示都会有帮助,非常感谢!

i start to love textmate, but there is one feature i miss in textmate, which i always used in notepad++ or eclipse.

if you double click on a word in the text you get every word which is equally spelled like this. this feature makes code reading so easy, especially it is foreign code, so i thought to write a bundle for textmate on my own.

i am familiar with reg-ex and i think it is not a problem to use sed to find the usage of $TM_CURRENT_WORD in the document.

my problem:
i have never writen a textmate bundle and i don't know if there is a possibility to mark text out of a tm-bundle. i have not found an example code in a different bundle and i also don't know which "output" to use in the bundle editor, because no suggestion would fit to my problem.

any hint would help, thank you very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撞了怀 2024-10-27 10:25:43

您也许可以阅读整个文档,然后查找自己的(用户选择的单词),然后输出 HTML(在 CSS 类或其他内容中选择的单词)...这听起来像是一个相当大的努力。

我的模式是:

编辑 ->查找-> 使用选择查找 (Command + E)

然后
编辑->查找->查找下一个
编辑->查找->查找下一个

所以 Command+E、Command+G、Command+G

You might be able to read the whole document, then do a find yourself for the (word the user selected), then output HTML (with the word selected in a CSS class or something)... which sounds like a fair bit of effort.

My pattern for this is:

Edit -> Find -> Use Selection for Find (Command + E)

then
Edit -> Find -> Find Next
Edit -> Find -> Find Next

So Command+E, Command+G, Command+G

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文