diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-25 13:33:29 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-25 13:33:29 +0100 |
commit | aabddea6ddec88c017799c84fff3ee48eab6ee5d (patch) | |
tree | fd40b622fb0681fbb67a64d31360a929eba6ef34 /README.md | |
parent | 5ee2ada8e9f09d900fe607c0d2cd8123fdb3d5fd (diff) | |
download | ale-aabddea6ddec88c017799c84fff3ee48eab6ee5d.zip |
Fix the Count example in the README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -310,7 +310,7 @@ figure. You can do the following: ```vim function! LinterStatus() abort - let l:counts = ale#statusline#Count() + 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 |