aboutsummaryrefslogtreecommitdiff
path: root/ycm_extra_conf.py
blob: 092887de4d833363e17c301c5e4a1ab212ba0ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def FlagsForFile(filename, **kwargs):
    return {
        'flags': [
            '-x',
            'c',
            '-isystem',
            '/usr/include',
            '-isystem',
            '-isystem',
            '-I',
            '.',
        ],
    }
..