dotvim/.vim/ycm.py
2019-03-04 11:11:09 -08:00

16 lines
250 B
Python

def FlagsForFile(filename, **kwargs):
flags = [
'-Wall',
'-Wextra',
'-Werror'
'-pedantic',
'-std=c++11'
'-I',
'.',
]
return {
'flags': flags,
'do_cache': True
}