dotvim/.vim/ycm.py

19 lines
311 B
Python
Raw Normal View History

2019-03-04 18:01:37 +00:00
def FlagsForFile(filename, **kwargs):
flags = [
'-Wall',
'-Wextra',
'-Werror'
'-pedantic',
'-I',
'.',
'-isystem',
'/usr/include',
'-xc++',
'-std=c++11'
]
return {
'flags': flags,
'do_cache': True
}