Skip to content

fix(vim-8.2): Fix missing ']' message #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion autoload/mmtemplates/core.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,16 @@ function! s:IncludeFile ( templatefile, ... )
if read_abs
let templatefile = s:ConcatNormalizedFilename ( templatefile )
else
let templatefile = s:ConcatNormalizedFilename ( s:t_runtime.state_stack[-1].current_path, templatefile )
" check whether the first item in runtimepath, e.g. $HOME/.vim/templates has the template file
let templatepath_tmp = s:ConcatNormalizedFilename( split(&runtimepath, ',')[0], "templates")
let templatepath_tmp = s:ConcatNormalizedFilename( templatepath_tmp, templatefile)

if filereadable(templatepath_tmp)
let templatefile = templatepath_tmp
else
let templatefile = s:ConcatNormalizedFilename ( s:t_runtime.state_stack[-1].current_path, templatefile )
endif
unlet templatepath_tmp
endif
"
" file does not exists or was already visited?
Expand Down