如何为 vi 键绑定添加 xdvi 中的 find-previous 或 xpdf 中的 findPrevious?
有没有办法在 xdvi 中添加 find-previous 函数或在 xpdf 中添加 findPrevious 函数?这些相当于打开搜索对话框并已选中“向后搜索”选项的功能。
我需要这样的函数才能
bind ? any findPrevious
在我的 .xpdfrc 和
xdvi.mainTranslations: #override\
<Key>?:find-previous()
.Xdefaults 中定义键绑定。然后我在这两个程序中都会有一套完整的类似 vi 的键绑定。
Is there a way to add a find-previous function in xdvi or a findPrevious function in xpdf? Those would be equivalent to a function that brings up the search dialog with the "Search backwards" option already checked.
I need such functions in order to define keybindings
bind ? any findPrevious
in my .xpdfrc and
xdvi.mainTranslations: #override\
<Key>?:find-previous()
in my .Xdefaults. I'd then have a complete set of vi-like keybindings in both programs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要更改 xpdf 的代码。我读过一次xpdf的源代码,它提供了
search-backwards
功能,但没有给出按键绑定。You may have to change the code of xpdf. I read the source code of xpdf once, it provides the
search-backwards
function, but does not give a key binding.