如何直接跳转到Vim中的列号

有时为了debugging的目的,我必须通过缩小javascript代码来执行令人兴奋的工作。 线条可达600列宽。 exception报告库非常友好,能够以行号和列号的forms为我提供确切的碰撞坐标。 但是我找不到直接跳到列号的方法,尽pipe我可以很容易地跳到这一行。

我该怎么做?

| 命令做你想要的,如在3 0 | 会带你到第30栏。

  bar | To screen column [count] in the current line. exclusive motion. Ceci n'est pas une pipe. 

http://vimdoc.sourceforge.net/htmldoc/motion.html#bar

您可以使用cursorfunction。 例如,要跳转到第15行的第25列,可以使用:call cursor(15,25)