Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neomake/neomake
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ycm-core/neomake
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 18, 2019

  1. Support YCM custom errors in the form file:line:col YCMnum msg, by ig…

    …noring uppercase letters before the error number
    puremourning committed Sep 18, 2019
    Copy the full SHA
    031f797 View commit details

Commits on Feb 15, 2020

  1. Copy the full SHA
    b398cb1 View commit details

Commits on May 17, 2020

  1. Copy the full SHA
    3bfe363 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 autoload/neomake/makers/ft/python.vim
4 changes: 2 additions & 2 deletions autoload/neomake/makers/ft/python.vim
Original file line number Diff line number Diff line change
@@ -116,8 +116,8 @@ function! neomake#makers#ft#python#flake8() abort
\ 'args': ['--format=default'],
\ 'errorformat':
\ '%E%f:%l: could not compile,%-Z%p^,' .
\ '%A%f:%l:%c: %t%n %m,' .
\ '%A%f:%l: %t%n %m,' .
\ '%A%f:%l:%c: %t%[A-Z]%#%n %m,' .
\ '%A%f:%l: %t%[A-Z]%#%n %m,' .
\ '%-G%.%#',
\ 'postprocess': function('neomake#makers#ft#python#Flake8EntryProcess'),
\ 'short_name': 'fl8',