In my vim plugin, I have two files:
myplugin/plugin.vim
myplugin/plugin_helpers.py
I would like to import plugin_helpers from plugin.vim (u
" Relative path of script file:
let s:path = expand('')
" Absolute path of script file:
let s:path = expand(':p')
" Absolute path of script file with symbolic links resolved:
let s:path = resolve(expand(':p'))
" Folder in which script resides: (not safe for symlinks)
let s:path = expand(':p:h')
" If you're using a symlink to your script, but your resources are in
" the same directory as the actual script, you'll need to do this:
" 1: Get the absolute path of the script
" 2: Resolve all symbolic links
" 3: Get the folder of the resolved absolute file
let s:path = fnamemodify(resolve(expand(':p')), ':h')
I use that last one often because my ~/.vimrc is a symbolic link to a script in a git repository.