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 (using the vim python support), so I believe I first need to put the directory of my plugin on python's sys.path.

How can I (in vimscript) get the path to the currently executing script? In python, this is __file__. In ruby, it's __FILE__. I couldn't find anything similar for vim by googling, can it be done?

Note: I am not looking for the currently edited file ("%:p" and friends).

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

Found it:

let s:current_file=expand("<sfile>")
link|improve this answer
2  
Incase it helps anyone else. Make sure to do this at the top level scope. If you try to run it inside of a function you'll end up getting the function name rather than the path to the file containing the function. – Mat Schaffer Feb 12 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.