在 vimperator 中手动切换到 "Hints" 模式的命令是什么?

What is the command to manually switch to "Hints" mode in vimperator ?

我正在寻找在页面加载时在 vimperator 中自动切换到 "Hints" 模式而无需按 "f" 的方法。

在.vimperatorrc

autocmd PageLoad  .*  js <what goes here ? > 
hints.show("o")

是键 f 默认调用的内容,因此您需要使用

autocmd PageLoad  .*  js hints.show("o")

这种情况的另一种选择(如果你不想查阅源代码来查找 JS),是使用 :normal 命令,它执行对应于给定键序列。

autocmd PageLoad  .* normal f