vim +21490 script.py vim -c "goto 1553" soft/lsof.md vim -c ":goto 1553" soft/lsof.md # grep -b -r "str" . 获取 byte-offset
+{command} 或者 -c {command}
{command} will be executed after the first file has been read. {command} is interpreted as an Ex command. If the {command} contains spaces it must be enclosed in double quotes (this depends on the shell that is used).
Yanking is just a Vim name for copying. The “c” letter was already used for the change operator, and “y” was still available. Calling this operator “yank” made it easier to remember to use the “y” key.
fx - jump to next occurrence of character x
tx - jump to before next occurrence of character x
Fx - jump to previous occurence of character x
Tx - jump to after previous occurence of character
; - repeat previous f, t, F or T movement
, - repeat previous f, t, F or T movement, backwards 这两个都被其它快捷键覆盖了