Textmate:如何输入重复的字符序列?

发布于 2024-07-13 11:24:39 字数 290 浏览 6 评论 0原文

我经常需要像这样输入文本(由重复的字符组成):

------------------------------------
 TODO
------------------------------------

在 emacs 中,我可以执行以下

C-u 60 - 

操作:先按 Ctrl+U,然后按“60”,再按“-”,这样就可以轻松输入重复的字符序列。

有什么方法可以在 TextMate 中执行类似的操作吗?

I often need to enter text (consisting of repeated characters) like this:

------------------------------------
 TODO
------------------------------------

In emacs, I can do a

C-u 60 - 

that's a Ctrl+U followed by a "60" followed by a "-", which makes entering a repeated sequence of characters easy.

Is there any way to do something like this in TextMate?

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

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

发布评论

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

评论(2

无远思近则忧 2024-07-20 11:24:39

在 TextMate 中,打开捆绑包编辑器并选择您想要执行此操作的语言。(如果您希望在所有语言中都具有此功能,请使用源捆绑包)单击左下角的加号,然后选择“新命令。” 为“保存”字段选择“无”,为两个输入字段选择“选定的文本或行”。 然后将其粘贴到命令字段中:

#!/usr/bin/python
import sys
commandLine = raw_input("")
tmArgs = commandLine.split()
numberOfArgs = len(tmArgs)
for i in range(eval(tmArgs[0])):
    for j in range(1, numberOfArgs):
        sys.stdout.write(tmArgs[j])

然后您可以在激活字段中选择键盘快捷键来激活它。 它的工作方式与 emacs 命令非常相似:键入所需的字符数,然后键入该字符。 然后选择它们(如果它们是该行中唯一的文本,则无需执行此步骤)并按快捷键。 我的脚本允许您指定要打印的多个字符,并以空格分隔。 因此,如果您输入

10 - =

并按下快捷键,您会得到

-=-=-=-=-=-=-=-=-=-=

编辑:经过思考...这是另一个版本。 这将在数​​字后面打印字符串。 例如

6 -= (space)

打印

-= -= -= -= -= -= 

以下是该版本:

#!/usr/bin/python
import sys
import string
commandLine = raw_input("")
timesToPrint = eval(commandLine.split()[0])
firstSpace = string.find(commandLine, " ")
for i in range(timesToPrint):
        sys.stdout.write(commandLine[firstSpace + 1:])

In TextMate, open the Bundle Editor and select the language you'd like to do this in. (If you'd like to have this functionality in all languages, use the Source bundle) Click the plus symbol at the bottom left, and choose "New Command." Chose "Nothing" for the Save field and "Selected Text or Line" for the two input fields. Then paste this into the Commands field:

#!/usr/bin/python
import sys
commandLine = raw_input("")
tmArgs = commandLine.split()
numberOfArgs = len(tmArgs)
for i in range(eval(tmArgs[0])):
    for j in range(1, numberOfArgs):
        sys.stdout.write(tmArgs[j])

You can then choose a keyboard shortcut to activate this with in the Activation field. The way it works is very similar to that emacs command: type the number of characters you want followed by the character. Then select both of them (this step is unnecessary if they're the only text on the line) and press the shortcut key. My script allows you to specify multiple characters to print, delimited by spaces. So if you typed

10 - =

and hit the shortcut key, you'd get

-=-=-=-=-=-=-=-=-=-=

Edit: After thinking about it...here's another version. This one will print the string after the number. So for example

6 -= (space)

prints

-= -= -= -= -= -= 

Here's that version:

#!/usr/bin/python
import sys
import string
commandLine = raw_input("")
timesToPrint = eval(commandLine.split()[0])
firstSpace = string.find(commandLine, " ")
for i in range(timesToPrint):
        sys.stdout.write(commandLine[firstSpace + 1:])
牵你手 2024-07-20 11:24:39

对于您给出的具体示例,您可以键入 Ctrl-Shift-B、“TODO”来创建文本横幅。

For the specific example you've given, you can type Ctrl-Shift-B, "TODO" to create a text banner.

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