Improve coc error/warning status format to include count

This commit is contained in:
eximus
2022-11-04 13:47:07 -04:00
parent d734be8cd3
commit b86e5e09b2
2 changed files with 16 additions and 21 deletions

View File

@@ -650,11 +650,11 @@ coc <https://github.com/neoclide/coc.nvim>
* enable/disable coc status display >
g:airline#extensions#coc#show_coc_status = 1
* change the error format: >
let airline#extensions#coc#stl_format_err = '(L%d)'
* change the error format (%C - error count, %L - line number): >
let airline#extensions#coc#stl_format_err = '%C(L%L)'
<
* change the warning format: >
let airline#extensions#coc#stl_format_warn = '(L%d)'
* change the warning format (%C - error count, %L - line number): >
let airline#extensions#coc#stl_format_warn = '%C(L%L)'
<
------------------------------------- *airline-commandt*
command-t <https://github.com/wincent/command-t>