vim-snipe icon indicating copy to clipboard operation
vim-snipe copied to clipboard

Unicode messes up jump targets

Open globalchubby opened this issue 8 years ago • 0 comments

function! LightlineAleWarning()
  let counts = ale#statusline#Count(bufnr(''))
  let n_warnings = counts.style_warning + counts.warning + counts.info
  return counts.total == 0 || n_warnings == 0
        \ ? ''
        \ : printf('%d ◆', n_warnings)
endfunction

Try (snipe-f-w) on the same line as , before .

globalchubby avatar Dec 24 '17 22:12 globalchubby