mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	What works: 1. ShaDa file dumping: header, registers, jump list, history, search patterns, substitute strings, variables. 2. ShaDa file reading: registers, global marks, variables. Most was not tested. TODO: 1. Merging. 2. Reading history, local marks, jump and buffer lists. 3. Documentation update. 4. Converting some data from &encoding. 5. Safer variant of dumping viminfo (dump to temporary file then rename). 6. Removing old viminfo code (currently masked with `#if 0` in a ShaDa file for reference).
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# .ycm_extra_conf.py for nvim source code.
 | 
						|
import os
 | 
						|
import ycm_core
 | 
						|
 | 
						|
 | 
						|
def DirectoryOfThisScript():
 | 
						|
    return os.path.dirname(os.path.abspath(__file__))
 | 
						|
 | 
						|
 | 
						|
def GetDatabase():
 | 
						|
    compilation_database_folder = os.path.join(DirectoryOfThisScript(),
 | 
						|
                                               '..', '..', 'build')
 | 
						|
    if os.path.exists(compilation_database_folder):
 | 
						|
        return ycm_core.CompilationDatabase(compilation_database_folder)
 | 
						|
    return None
 | 
						|
 | 
						|
 | 
						|
def IsHeaderFile(filename):
 | 
						|
    extension = os.path.splitext(filename)[1]
 | 
						|
    return extension == '.h'
 | 
						|
 | 
						|
 | 
						|
def GetCompilationInfoForFile(filename):
 | 
						|
    database = GetDatabase()
 | 
						|
    if not database:
 | 
						|
        return None
 | 
						|
    if IsHeaderFile(filename):
 | 
						|
        basename = os.path.splitext(filename)[0]
 | 
						|
        c_file = basename + '.c'
 | 
						|
        # for pure headers (no c file), default to main.c
 | 
						|
        if not os.path.exists(c_file):
 | 
						|
            c_file = os.path.join(DirectoryOfThisScript(), 'nvim', 'main.c')
 | 
						|
        if os.path.exists(c_file):
 | 
						|
            compilation_info = database.GetCompilationInfoForFile(c_file)
 | 
						|
            if compilation_info.compiler_flags_:
 | 
						|
                return compilation_info
 | 
						|
        return None
 | 
						|
    return database.GetCompilationInfoForFile(filename)
 | 
						|
 | 
						|
 | 
						|
def FlagsForFile(filename):
 | 
						|
    compilation_info = GetCompilationInfoForFile(filename)
 | 
						|
    if not compilation_info:
 | 
						|
        return None
 | 
						|
    # Add flags not needed for clang-the-binary,
 | 
						|
    # but needed for libclang-the-library (YCM uses this last one).
 | 
						|
    flags = (list(compilation_info.compiler_flags_)
 | 
						|
             if compilation_info.compiler_flags_
 | 
						|
             else [])
 | 
						|
    extra_flags = ['-Wno-newline-eof']
 | 
						|
    final_flags = flags + extra_flags
 | 
						|
    return {
 | 
						|
        'flags': final_flags,
 | 
						|
        'do_cache': True
 | 
						|
    }
 |