diff options
author | Kabbaj Amine <amine.kabb@gmail.com> | 2016-10-10 16:02:39 +0300 |
---|---|---|
committer | Kabbaj Amine <amine.kabb@gmail.com> | 2016-10-10 18:05:18 +0300 |
commit | 4149971c089a56a3ea47ed30a9c6066ee90e8085 (patch) | |
tree | 9ca0f55b11c6b320a34cd9a81bd7c1a019165592 /plugin | |
parent | 4c9aa1c638ba228a5d97e0fcc4d39e00664c8f31 (diff) | |
download | ale-4149971c089a56a3ea47ed30a9c6066ee90e8085.zip |
Minor fixes:
* Ensure that php linter pattern does not include spaces:
PHP can return errors with extra spaces like the following:
`PHP Parse error: syntax error, unexpected end of file in t.php on line 4`
* Set option locally to buffer
* Rename noErrors variable according to the project's naming convention
* Make the jsonlint pattern a little better
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale/cursor.vim | 6 | ||||
-rw-r--r-- | plugin/ale/statusline.vim | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugin/ale/cursor.vim b/plugin/ale/cursor.vim index 06159714..a6d23979 100644 --- a/plugin/ale/cursor.vim +++ b/plugin/ale/cursor.vim @@ -68,14 +68,14 @@ function! ale#cursor#TruncatedEcho(message) " We need to turn T for truncated messages on for shortmess, " and then then we need to reset the option back to what it was. - let shortmess_options = &shortmess + let shortmess_options = getbufvar('%', '&shortmess') try " Echo the message truncated to fit without creating a prompt. - set shortmess+=T + setlocal shortmess+=T exec "norm :echomsg message\n" finally - let &shortmess = shortmess_options + call setbufvar('%', '&shortmess', shortmess_options) endtry endfunction diff --git a/plugin/ale/statusline.vim b/plugin/ale/statusline.vim index 9888a50f..baef418a 100644 --- a/plugin/ale/statusline.vim +++ b/plugin/ale/statusline.vim @@ -24,11 +24,11 @@ function! ALEGetStatusLine() abort let errors = errors ? printf(g:ale_statusline_format[0], errors) : '' let warnings = warnings ? printf(g:ale_statusline_format[1], warnings) : '' - let noErrors = g:ale_statusline_format[2] + let no_errors = g:ale_statusline_format[2] " Different formats if no errors or no warnings if empty(errors) && empty(warnings) - let res = noErrors + let res = no_errors elseif !empty(errors) && !empty(warnings) let res = printf('%s %s', errors, warnings) else |