Skip to content

Commit

Permalink
Fix ignore tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Dec 28, 2023
1 parent 5985e18 commit ee5a82e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/dein/install.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ function! dein#install#_copy_directories_vim(srcs, dest) abort

if srcpath->isdirectory()
call mkdir(destpath, 'p')
elseif srcpath !~# 'tags\%(-\w*\)\?$'
elseif srcpath !~# 'doc/tags\%(-\w*\)\?$'
" Ignore tags
call dein#install#_copy_file_vim(srcpath, destpath)
endif
Expand Down
1 change: 1 addition & 0 deletions doc/dein.txt
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,7 @@ on_func (List) or (String)
NOTE: It does not work when Vim initialized.
NOTE: It does not work for Vim9 script. It is |FuncUndefined|
limitation.
NOTE: It does not work for |autoload-functions|.

*dein-options-on_ft*
on_ft (List) or (String)
Expand Down

0 comments on commit ee5a82e

Please sign in to comment.