w0rp

Results 195 comments of w0rp
trafficstars

I believe I added support for a post-processing function for fixing files, so it might be possible to remove those lines from the output before writing them to the buffer.

I reopened this issue. This is a bug someone will have to fix in the linter. Check out `ale_linters/go/gobuild.vim` for an example of how to handle this.

Have a look at `autoload/ale/fixers/eslint.vim` for an example of the `process_with` callback for fixers, and the documentation with `:help ale-fix`. It should be possible to modify the `prettier-eslint` fixer, or...

I haven't looked into this yet, but my guess would be that `YouCompleteMe` updates the menu whenever `b:changedtick` is changed, and `b:changedtick` could be changed when calling any of the...

I'll have a look into this. I don't know what's causing this yet for sure. It may be possible to reduce the amount of flicking by only calling certain functions...

Does the flickering stop happening when you set `g:ale_echo_cursor` to `1`?

Yeah, `0` sorry. Okay then, so it's not the cursor echoing stuff. I'll see if I can repeat the bug myself later and see if anything can be done about...

@JohnTJohnston See `:help ale-lint` for more options. I use these options personally. ```vim let g:ale_lint_on_text_changed = 'normal' let g:ale_lint_on_insert_leave = 1 ```

It might be related to this bug in Vim, which has already been fixed: https://bugs.launchpad.net/ubuntu/+source/vim/+bug/1768026 The Debian/Ubuntu package managers are long overdue for fixing that package. Which version of Vim...