File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1596,6 +1596,10 @@ g:coc_install_yarn_cmd *g:coc_install_yarn_cmd*
15961596Some variables are provided by coc.nvim so you can use them in your
15971597statusline. See | coc-status | for detail.
15981598
1599+ g:coc_service_initialized *g:coc_service_initialized*
1600+
1601+ Is `1 ` when coc.nvim initialized, used with autocmd | CocNvimInit | .
1602+
15991603b:coc_diagnostic_info *b:coc_diagnostic_info*
16001604
16011605 Diagnostic information of current buffer, the format would look like:
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export default class Plugin extends EventEmitter {
4141 } )
4242 this . cursors = new Cursors ( nvim )
4343 this . addAction ( 'hasProvider' , ( id : string ) => this . handler . hasProvider ( id ) )
44- this . addAction ( 'getTagList' , async ( ) => await this . handler . locations . getTagList ( ) )
44+ this . addAction ( 'getTagList' , ( ) => this . handler . locations . getTagList ( ) )
4545 this . addAction ( 'hasSelected' , ( ) => completion . hasSelected ( ) )
4646 this . addAction ( 'listNames' , ( ) => listManager . names )
4747 this . addAction ( 'listDescriptions' , ( ) => listManager . descriptions )
You can’t perform that action at this time.
0 commit comments