w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							63ecc8341d 
							
						 
					 
					
						
						
							
							Fix   #1202  - Do not use --all-targets by default, because it doesn't work some of the time.  
						
						 
						
						
						
					 
					
						2017-12-07 18:47:01 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Tournoij 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d6bf13502a 
							
						 
					 
					
						
						
							
							Add ALEStartLint autocmd  
						
						 
						
						... 
						
						
						
						This grew out of my work in #1193 ; to ensure the statusline was being
updated I had to add:
    fun! s:redraw(timer)
        redrawstatus
    endfun
    augroup ALEProgress
        autocmd!
        autocmd BufWritePost * call timer_start(100, function('s:redraw'))
        autocmd User ALELint redrawstatus
    augroup end
Which kind of works, but is ugly. With this, I can replace the
`BufWritePost` with:
    autocmd User ALEStartLint redrawstatus
Which is much better, IMHO.
Actually, this patch actually replaces adding a function, since you can
do:
    augroup ALEProgress
        autocmd!
        autocmd User ALEStartLint hi Statusline ctermfg=darkgrey
        autocmd User ALELint      hi Statusline ctermfg=NONE
    augroup end
or:
    let s:ale_running = 0
    let l:stl .= '%{s:ale_running ? "[linting]" : ""}'
    augroup ALEProgress
        autocmd!
        autocmd User ALEStartLint let s:ale_running = 1 | redrawstatus
        autocmd User ALELint      let s:ale_running = 0 | redrawstatus
    augroup end
Both seem to work very well in my testing.
No need to `ale#Statusline#IsRunning()` anymore, I think? 
						
					 
					
						2017-12-07 16:14:20 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							0e57ca3df3 
							
						 
					 
					
						
						
							
							Include the operating system in the issue template  
						
						 
						
						
						
					 
					
						2017-12-07 13:24:23 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							440ef30b79 
							
						 
					 
					
						
						
							
							Update the issue template  
						
						 
						
						
						
					 
					
						2017-12-07 13:23:17 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Evan Rutledge Borden 
							
						 
					 
					
						
						
						
						
							
						
						
							f66837818a 
							
						 
					 
					
						
						
							
							Update doc/ale.txt to include brittany.  
						
						 
						
						
						
					 
					
						2017-12-05 15:04:02 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franco Victorio 
							
						 
					 
					
						
						
						
						
							
						
						
							85e0bd3314 
							
						 
					 
					
						
						
							
							Extract error code from message  
						
						 
						
						
						
					 
					
						2017-12-05 16:02:15 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jeff Willette 
							
						 
					 
					
						
						
						
						
							
						
						
							e2a8f759d8 
							
						 
					 
					
						
						
							
							Added option for gometalinter to lint package ( #1156 )  
						
						 
						
						... 
						
						
						
						* Added option for `gometalinter` to lint package
* added tests for the `gometalinter` command
* changed gometalinter commands to use BufferCdString 
						
					 
					
						2017-12-04 18:42:36 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franco Victorio 
							
						 
					 
					
						
						
						
						
							
						
						
							57e1b03435 
							
						 
					 
					
						
						
							
							Add test for solhint handler  
						
						 
						
						
						
					 
					
						2017-12-04 14:23:46 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franco Victorio 
							
						 
					 
					
						
						
						
						
							
						
						
							3e1bd8d922 
							
						 
					 
					
						
						
							
							Update documentation  
						
						 
						
						
						
					 
					
						2017-12-04 14:23:34 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Franco Victorio 
							
						 
					 
					
						
						
						
						
							
						
						
							0d627d4613 
							
						 
					 
					
						
						
							
							Add solhint support  
						
						 
						
						
						
					 
					
						2017-12-04 14:23:23 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							159733c459 
							
						 
					 
					
						
						
							
							Merge pull request  #1191  from deltaskelta/add-importjs-fixer  
						
						 
						
						... 
						
						
						
						added importjs fixer 
						
					 
					
						2017-12-04 16:14:20 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jeff Willette 
							
						 
					 
					
						
						
						
						
							
						
						
							fba3c57872 
							
						 
					 
					
						
						
							
							added importjs fixer  
						
						 
						
						... 
						
						
						
						- added tests for fixer functions
- added docs 
						
					 
					
						2017-12-05 00:37:31 +09:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							2f9869de44 
							
						 
					 
					
						
						
							
							Escape the perl executable, and cover the callbacks with tests  
						
						 
						
						
						
					 
					
						2017-12-02 20:47:01 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							a4f8506227 
							
						 
					 
					
						
						
							
							Fix   #1186  - Disable checking code with perl by default  
						
						 
						
						
						
					 
					
						2017-12-02 20:43:47 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							acd1260339 
							
						 
					 
					
						
						
							
							Revert "Fix  #1186  - Use -w by default for Perl, which does not execute code"  
						
						 
						
						... 
						
						
						
						This reverts commit f5fc746d00 . 
						
					 
					
						2017-12-02 20:38:28 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dave Wongillies 
							
						 
					 
					
						
						
						
						
							
						
						
							2bd966c5cc 
							
						 
					 
					
						
						
							
							Puppet: allow for when parser doesn't supply column for errors ( #1182 )  
						
						 
						
						... 
						
						
						
						* puppet: add test for puppet parser validate
* puppet: handle where parser validate doesn't supply the column
* puppet: add test for when parser validate doesn't supply column
* Fix puppet regex to handle Windows paths 
						
					 
					
						2017-12-02 12:29:17 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							f5fc746d00 
							
						 
					 
					
						
						
							
							Fix   #1186  - Use -w by default for Perl, which does not execute code  
						
						 
						
						
						
					 
					
						2017-12-02 12:26:44 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							83760a0952 
							
						 
					 
					
						
						
							
							Merge pull request  #1188  from ejsexton82/master  
						
						 
						
						... 
						
						
						
						Fixed Command String for phpcbf Fixer 
						
					 
					
						2017-12-02 12:25:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								E.J. Sexton 
							
						 
					 
					
						
						
						
						
							
						
						
							122fdfd329 
							
						 
					 
					
						
						
							
							Fixed command string for phpcbf fixer  
						
						 
						
						
						
					 
					
						2017-12-02 09:27:18 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							6650c9a901 
							
						 
					 
					
						
						
							
							Break up the rest of the test script code into smaller files  
						
						 
						
						
						
					 
					
						2017-12-01 18:06:09 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							499c154272 
							
						 
					 
					
						
						
							
							Move the Bash code for running Vader tests to its own file  
						
						 
						
						
						
					 
					
						2017-12-01 17:50:24 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sven-Hendrik Haase 
							
						 
					 
					
						
						
						
						
							
						
						
							51b127a4fd 
							
						 
					 
					
						
						
							
							Add glslls ( #1179 )  
						
						 
						
						... 
						
						
						
						* Add glslls-based LSP linter
* Make logfile configureable 
						
					 
					
						2017-12-01 17:36:44 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							6053f764bd 
							
						 
					 
					
						
						
							
							Make toggling work when pattern options are enabled  
						
						 
						
						
						
					 
					
						2017-12-01 17:12:19 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlos Coêlho 
							
						 
					 
					
						
						
						
						
							
						
						
							daee4a4722 
							
						 
					 
					
						
						
							
							Add prospector for checking Python code ( #1183 )  
						
						 
						
						
						
					 
					
						2017-12-01 17:04:30 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								E.J. Sexton 
							
						 
					 
					
						
						
						
						
							
						
						
							6b3927820b 
							
						 
					 
					
						
						
							
							Fixed command string for phpcbf fixer  
						
						 
						
						
						
					 
					
						2017-12-01 14:55:34 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							948035e13d 
							
						 
					 
					
						
						
							
							Merge pull request  #1185  from svenstaro/patch-1  
						
						 
						
						... 
						
						
						
						Delete unnecessary unlets 
						
					 
					
						2017-12-01 09:19:57 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sven-Hendrik Haase 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0406af4484 
							
						 
					 
					
						
						
							
							Delete unnecessary unlets  
						
						 
						
						... 
						
						
						
						I'm not even sure why these were here. 
						
					 
					
						2017-12-01 03:03:10 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							a990188e27 
							
						 
					 
					
						
						
							
							Fix   #1176  - Add an option for caching failing executable checks  
						
						 
						
						
						
					 
					
						2017-11-30 10:34:51 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							fd261264d7 
							
						 
					 
					
						
						
							
							Escape the filename for finddir  
						
						 
						
						
						
					 
					
						2017-11-30 10:25:32 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c977bb2d05 
							
						 
					 
					
						
						
							
							Merge pull request  #1181  from lgalke/tsserver-in-cygwin  
						
						 
						
						... 
						
						
						
						[WIP] Finding tsserver inside cygwin 
						
					 
					
						2017-11-30 09:46:24 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lukas Galke 
							
						 
					 
					
						
						
						
						
							
						
						
							5d65980c42 
							
						 
					 
					
						
						
							
							fnameescape when searching nearest file  
						
						 
						
						
						
					 
					
						2017-11-30 00:33:13 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							6503b85d3d 
							
						 
					 
					
						
						
							
							Fix   #1178  - Don't use the output from eslint_d for fixing files when the output is an error message  
						
						 
						
						
						
					 
					
						2017-11-29 10:08:54 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Evan Rutledge Borden 
							
						 
					 
					
						
						
						
						
							
						
						
							edb3a0c5e4 
							
						 
					 
					
						
						
							
							Add brittany for Haskell formatting  
						
						 
						
						... 
						
						
						
						`brittany` is one of the options for Haskell source formatting. This
adds the necessary fixer files and documentation to support `brittany`
in `ALE`. 
						
					 
					
						2017-11-28 17:58:13 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							a43ada93e4 
							
						 
					 
					
						
						
							
							Allow warnings about trailing whitespace to be disabled for pycodestyle, and cover the flake8 code with tests  
						
						 
						
						
						
					 
					
						2017-11-28 10:12:49 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							0ab689db0a 
							
						 
					 
					
						
						
							
							Allow warnings about trailing blank lines to be hidden for flake8 and pycodestyle  
						
						 
						
						
						
					 
					
						2017-11-28 10:08:34 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							4e821e64c7 
							
						 
					 
					
						
						
							
							Fix   #1168  - Make the ruby linter executable configurable  
						
						 
						
						
						
					 
					
						2017-11-28 09:48:35 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bba6b4c23c 
							
						 
					 
					
						
						
							
							Merge pull request  #1169  from benjie/master  
						
						 
						
						... 
						
						
						
						Add support for linting GraphQL with ESLint 
						
					 
					
						2017-11-27 18:20:39 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Benjie Gillam 
							
						 
					 
					
						
						
						
						
							
						
						
							b0114deabc 
							
						 
					 
					
						
						
							
							Reference the JS ESLint options  
						
						 
						
						
						
					 
					
						2017-11-27 15:57:17 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Benjie Gillam 
							
						 
					 
					
						
						
						
						
							
						
						
							09f9c21f1b 
							
						 
					 
					
						
						
							
							Fix typo  
						
						 
						
						
						
					 
					
						2017-11-27 15:55:57 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Benjie Gillam 
							
						 
					 
					
						
						
						
						
							
						
						
							e84ee4332f 
							
						 
					 
					
						
						
							
							Add support for linting GraphQL with ESLint  
						
						 
						
						
						
					 
					
						2017-11-27 14:41:49 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							d4ea0423a2 
							
						 
					 
					
						
						
							
							Fix go to definition tests on Windows  
						
						 
						
						
						
					 
					
						2017-11-26 23:20:21 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							f311a46f79 
							
						 
					 
					
						
						
							
							Add go to definition to the README  
						
						 
						
						
						
					 
					
						2017-11-26 23:12:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							17f93b16ab 
							
						 
					 
					
						
						
							
							Test go to definition tests on Windows  
						
						 
						
						
						
					 
					
						2017-11-26 23:08:38 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							17574e2fe1 
							
						 
					 
					
						
						
							
							Document go to definition support and put that and completion in an LSP section  
						
						 
						
						
						
					 
					
						2017-11-26 23:02:51 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							21b460bb1d 
							
						 
					 
					
						
						
							
							Implement go to defintion for LSP linters  
						
						 
						
						
						
					 
					
						2017-11-26 22:27:08 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							01318b6930 
							
						 
					 
					
						
						
							
							Compress one line  
						
						 
						
						
						
					 
					
						2017-11-26 21:30:26 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							c07b3b9bfc 
							
						 
					 
					
						
						
							
							Fix   #1166  - Add an option for the rls toolchain  
						
						 
						
						
						
					 
					
						2017-11-26 18:47:30 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							ae7cd2c090 
							
						 
					 
					
						
						
							
							Fix   #918  - Save prettier details for Haskell linters  
						
						 
						
						
						
					 
					
						2017-11-26 18:24:10 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							8254e507d6 
							
						 
					 
					
						
						
							
							#1162  Get LSP completions working reasonably well  
						
						 
						
						
						
					 
					
						2017-11-26 13:01:01 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								w0rp 
							
						 
					 
					
						
						
						
						
							
						
						
							b1a6abdda6 
							
						 
					 
					
						
						
							
							#1162  Add unfinished experimental code for supporting LSP completion, clean up the tests, and make the completion cancelling better  
						
						 
						
						
						
					 
					
						2017-11-26 12:24:18 +00:00