我正在寻找一种在页面加载时自动在vimperator中切换到“提示”模式的方法,而无需按“f”键。

在.vimperatorrc中

autocmd PageLoad  .*  js <what goes here ? >

最佳答案

hints.show("o")

是f默认情况下调用的键,因此您想使用
autocmd PageLoad  .*  js hints.show("o")

09-26 04:36