vim 运行 perl 脚本,光标下的单词作为参数

发布于 2024-09-27 17:37:39 字数 53 浏览 7 评论 0原文

是否可以通过键入快捷方式将光标下的单词发送到 perl 脚本?

我该怎么做?

is it possible to send the word under the cursor to a perl script by typing a shortcut?

how do i do that?

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

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

发布评论

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

评论(3

ヅ她的身影、若隐若现 2024-10-04 17:37:39

如果光标下的单词包含特殊字符,上述解决方案并不安全。你应该改用

nnoremap <F2> :execute "!/path/to/script.pl ".shellescape(expand("<cword>"), 1)<CR>

对于整行,将 expand("") 替换为 getline('.')。对于光标下的文件名,请使用 expand("")

Above solutions are not safe if word under cursor contains special characters. You should use

nnoremap <F2> :execute "!/path/to/script.pl ".shellescape(expand("<cword>"), 1)<CR>

instead.

For the whole line, replace expand("<cword>") with getline('.'). For the filename under cursor use expand("<cfile>").

開玄 2024-10-04 17:37:39

给定一个 Perl 脚本 ${HOME}/test.pl,您可以使用:

:nnoremap <F2> :!${HOME}/test.pl <C-R><C-W><CR>

然后按 F2 会将光标下的单词发送到您的脚本。

根据我对你之前的问题的回答,CTRL-R CTRL-W 代表光标下的单词。

请参阅 Vim 中的以下帮助主题来开始编写键盘快捷键:

我的测试脚本:

#!/usr/bin/env perl -w
print "You selected '$ARGV[0]'.\n";

Given a perl script ${HOME}/test.pl, you could use:

:nnoremap <F2> :!${HOME}/test.pl <C-R><C-W><CR>

Then pressing F2 would send the word under the cursor to your script.

As per my answer to your previous question, CTRL-R CTRL-W represents the word under the cursor.

See the following help topics in Vim to get you started with writing keyboard shortcuts:

My test script:

#!/usr/bin/env perl -w
print "You selected '$ARGV[0]'.\n";
生生不灭 2024-10-04 17:37:39

您可以执行以下操作:

nnoremap <f5> :!perl my_script.pl <c-r><c-w><enter>

在 vi​​mrc 中,此行将 F5 键映射到该字符组合。 CTRL-R CTRL-W 在命令行中插入当前单词。

You can do the following:

nnoremap <f5> :!perl my_script.pl <c-r><c-w><enter>

In your vimrc, this lines maps the F5 key to this combination of characters. CTRL-R CTRL-W inserts current word in a command line.

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