From 5f96be9593b97c345f6e314ca4ed7e091c278969 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 4 Jul 2023 19:11:46 +0000 Subject: [PATCH] fix(vim-ale): use ascii rather than utf8 --- vim-ale/ale.vim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vim-ale/ale.vim b/vim-ale/ale.vim index a21b1fa..569ee6e 100644 --- a/vim-ale/ale.vim +++ b/vim-ale/ale.vim @@ -10,18 +10,19 @@ let g:ale_lint_on_save = 1 let g:ale_virtualtext_cursor = 'current' " These emojis go in the sidebar for errors and warnings -" other considerations: '💥' '☢️' '⚡' '☠' '●' '.' +" other considerations: '💥' '☢️' '⚡' '☠' '●' '.' '✘' '⚠️' " Note: one- and two-byte characters are more compatible -let g:ale_sign_error = '✘' -let g:ale_sign_warning = '⚠️' +let g:ale_sign_error = 'x' +let g:ale_sign_warning = '!' " show error count function! LinterStatus() abort let l:counts = ale#statusline#Count(bufnr('')) let l:all_errors = l:counts.error + l:counts.style_error let l:all_non_errors = l:counts.total - l:all_errors + " \ '%d⨉ %d⚠ ', return l:counts.total == 0 ? 'OK' : printf( - \ '%d⨉ %d⚠ ', + \ '%dx %d! ', \ all_non_errors, \ all_errors \)