您的位置:首页 > 其它

vim g系列命令补充

2017-09-22 13:04 169 查看
发现一些g系列的命令 以前没有注意到  大家可以看看

gd      will take you to the local declaration.

gD     will take you to the global declaration.

g*      search for the word under the cursor (like *, but g* on 'rain' will find words like 'rainbow').

g#    same as g* but in backward direction.

gg    goes to the first line in the buffer (or provide a count before the command for a specific line).

G      goes to the last line (or provide a count before the command for a specific line).

See alsoEdit

gf    will go to the file under the cursor

g]    and other commands will jump to a tag definition (a tag can be a function or variable name, or more).
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: