units
Use physical dimensions at compile-time or run-time.
|
Configuration for vim's YouCompleteMe plugin. More...
Go to the source code of this file.
Functions | |
OlderGroup | |
Functions that seem necessary for older YCM. | |
def | MakeRelativePathsInFlagsAbsolute (flags, working_directory) |
def | FlagsForFile (filename, kwargs) |
This seems to be the entry point for older YCM; this function is called by ycmd to produce flags for a file. More... | |
NewerGroup | |
Functions that seem necessary for newer YCM. | |
def | IsHeaderFile (filename) |
def | FindCorrespondingSourceFile (filename) |
def | Settings (kwargs) |
This seems to be the entry point for newer YCM. More... | |
Variables | |
DIR_OF_THIS_SCRIPT = os.path.abspath( os.path.dirname( __file__ ) ) | |
list | flags |
Compilation flags that will be used in case there's no compilation database set (by default, one is not set). More... | |
list | SOURCE_EXTENSIONS = [ '.cpp', '.cxx', '.cc', '.c', '.m', '.mm' ] |
Variable that seems necessary for new YCM. More... | |
Configuration for vim's YouCompleteMe plugin.
Definition in file .ycm_extra_conf.py.
def FindCorrespondingSourceFile | ( | filename | ) |
Definition at line 73 of file .ycm_extra_conf.py.
def FlagsForFile | ( | filename, | |
kwargs | |||
) |
This seems to be the entry point for older YCM; this function is called by ycmd to produce flags for a file.
Definition at line 58 of file .ycm_extra_conf.py.
def IsHeaderFile | ( | filename | ) |
def MakeRelativePathsInFlagsAbsolute | ( | flags, | |
working_directory | |||
) |
Definition at line 32 of file .ycm_extra_conf.py.
def Settings | ( | kwargs | ) |
This seems to be the entry point for newer YCM.
Definition at line 83 of file .ycm_extra_conf.py.
DIR_OF_THIS_SCRIPT = os.path.abspath( os.path.dirname( __file__ ) ) |
Definition at line 8 of file .ycm_extra_conf.py.
list flags |
Compilation flags that will be used in case there's no compilation database set (by default, one is not set).
CHANGE THIS LIST OF FLAGS. YES, THIS IS THE DROID YOU HAVE BEEN LOOKING FOR.
Definition at line 14 of file .ycm_extra_conf.py.
list SOURCE_EXTENSIONS = [ '.cpp', '.cxx', '.cc', '.c', '.m', '.mm' ] |
Variable that seems necessary for new YCM.
SOURCE_EXTENSIONS is used by FindCorrespondingSourceFile.
Definition at line 26 of file .ycm_extra_conf.py.