Max “Goldstein” Siling
Max “Goldstein” Siling
UPD: it's probably not because of message type, but because clangcheck entry doesn't contain bufnr.
Seems like only first message is shown 
Yes. I need disabled by default mypy for most of my projects.
I mostly write Python, though I don't see any difference between Python and not-Python files.
It was like this: ```vim let g:neomake_highlight_lines = 1 let g:neomake_highlight_columns = 0 let g:neomake_shellcheck_args = ['-fgcc'] let g:neomake_python_enabled_makers = ['python', 'flake8', 'mypy', 'pylint'] ``` Now I changed it to...
It's seems that can be easy done with something like ```vim match(getline(n), 'neomake: skip') != -1 ``` applied to first N lines. There's no need to handle multiple comment formats,...
This works for me: ```vim function! CheckNeomakeSkip() for linenr in range(5) if match(getline(linenr), 'neomake: skip') != -1 \ || match(getline(line('$') - linenr), 'neomake: skip') != -1 silent NeomakeDisableBuffer NeomakeClean return...
I thought any non-Copy types without custom destructors are allowed? I’m going to re-read that issue, thanks for correction.
@jhpratt Hi! Are you still working on that RFC? I’m willing to try to write this if nobody is doing it currently.
Hi! Sorry, I too got distracted from writing this (and also I don’t have RFC experience yet). @Fishrock123 you can take it.