vim

· sillybit


is my favorite editor

I read practical vim cover to cover and still haven't figured out how to exit /s

tips #

shift + k

looks up command keywordprog or something useful in man pages like this

man `ssh`
search for ssh_config
put cursor over ssh_config(5)
try `gf` for go to file
get E447: Can't find file "ssh_config" in path
instead, hit `K`
get navigated to `man ssh_config`
see man page for ssh_config 
status bar shows man://ssh_config(5) [RO]                                                                                                                                    1,1            Top
man ssh_config

I was fumbling to find an example for an ssh config because it's been a while since I wrote one.

last updated: