I want to edit a file with (:e
) which is a symlink and make vim follow it. I dont want this to be the default behavior or anything.
I know that using resolve and expand I can get full link.
:echo resolve(expand("~/.vimrc"))
prints the full link.
I want to be able to do something like this
:e resolve(expand("~/.vimrc"))
Note: I want it to follow the symlink because of context, like quickly editing other files in that folder and stuff like that.