tskeleton_vim
tskeleton_vim copied to clipboard
<+CURSOR+> ignored, if <+call:func()+> used at same line
My template is:
<+call:expand("%:p")+><+CURSOR+>
Actual result of expansion:
|/path/to/file
Character «|» denote a cursor position. Note: cursor at beginning of line.
Expected result of expansion:
/path/to/file|
Note: cursor at end of line.
My template is:
|<+call:expand("%:p")+><+CURSOR+>| Works fine for me. What's the output of
:set
and:version
. Did you try it with a minimal vimrc file without loading any other plugin?