%w(hashrockets spaceships bangbangs)

> non-optimized bits & pieces <

Open File & Goto Line

I only get to know this recently, you can open a file & goto a specific line in vim with:

1
$ vim /path/to/file +100

The above opens /path/to/file & sets u on line 100. When are already in vim, you can acheive it with:

1
:e /path/to/another/file +99

But this won’t work for buffer though, meaning NONE of the following will work :(

1
2
3
:b /path/to/another/file +99
:b<id> +99
:b# +99

tips, vim

Comments