path - vim travel to pathfile via shortcut, directly, always -
when travel between files using shortcut on pathfile, seems don't travel between files.
i go file using >, within file change location of cursor , something, press <. instead of going previous file, first goes original location @ when entered file, need press < again previous file.
that's nuisance doesn't allow me change stored location within destination file. remains same enter @ same place, plus requires 2 clicks travel when 1 necessary. , makes system behavior more confusing.
this problem seems arise when enter large files. small ones location works fine.
how make < button move me previous file in, directly, always?
p.s.
use following mapping in vimrc:
noremap > gf
noremap < <c-o>
have tried substituting <c-o> <c-6>, doesn't work, reason.
you can use :bp
in mapping (previous buffer):
:noremap < :bp<cr>
Comments
Post a Comment