Skip to content

Commit

Permalink
Merge pull request #325 from Milly/skeleton-comment
Browse files Browse the repository at this point in the history
Fix skeleton comment
  • Loading branch information
tyru authored Jan 31, 2022
2 parents e604467 + 7f519b6 commit ddbcca8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ function! s:on_load_pre()
let g:openbrowser_github_always_use_commit_hash = 1
endfunction
" Plugin configuration like the code written in vimrc.
" This configuration is executed *after* a plugin is loaded.
function! s:on_load_post()
call openbrowser#open('https://example.net/my-start-page.html')
endfunction
" This function determines when a plugin is loaded.
"
" Possible values are:
Expand All @@ -286,7 +292,7 @@ function! s:loaded_on()
endfunction
" Dependencies of this plugin.
" The specified dependencies are loaded after this plugin is loaded.
" The specified plugins are loaded *before* this plugin is loaded.
"
" This function must contain 'return [<repos>, ...]' code.
" (the argument of :return must be list literal, and the elements are string)
Expand Down
2 changes: 1 addition & 1 deletion plugconf/plugconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ function! s:loaded_on()
endfunction`

const skeletonPlugconfDepends = `" Dependencies of this plugin.
" The specified dependencies are loaded after this plugin is loaded.
" The specified plugins are loaded *before* this plugin is loaded.
"
" This function must contain 'return [<repos>, ...]' code.
" (the argument of :return must be list literal, and the elements are string)
Expand Down

0 comments on commit ddbcca8

Please sign in to comment.