Created
June 18, 2013 17:59
-
-
Save sgur/5807746 to your computer and use it in GitHub Desktop.
general_completer_store.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Copyright (C) 2013 Stanislav Golovanov <[email protected]> | |
# Strahinja Val Markovic <[email protected]> | |
# | |
# This file is part of YouCompleteMe. | |
# | |
# YouCompleteMe is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# YouCompleteMe is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License | |
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>. | |
from ycm.completers.completer import Completer | |
from ycm.completers.all.identifier_completer import IdentifierCompleter | |
from ycm.completers.general.filename_completer import FilenameCompleter | |
try: | |
from ycm.completers.general.ultisnips_completer import UltiSnipsCompleter | |
USE_ULTISNIPS_COMPLETER = True | |
except ImportError: | |
USE_ULTISNIPS_COMPLETER = False | |
try: | |
from ycm.completers.general.neosnippet_completer import NeoSnippetCompleter | |
USE_NEOSNIPPET_COMPLETER = True | |
except ImportError: | |
USE_NEOSNIPPET_COMPLETER = False | |
class GeneralCompleterStore( Completer ): | |
""" | |
Holds a list of completers that can be used in all filetypes. | |
It overrides all Competer API methods so that specific calls to | |
GeneralCompleterStore are passed to all general completers. | |
""" | |
def __init__( self ): | |
super( GeneralCompleterStore, self ).__init__() | |
self._identifier_completer = IdentifierCompleter() | |
self._filename_completer = FilenameCompleter() | |
self._ultisnips_completer = ( UltiSnipsCompleter() | |
if USE_ULTISNIPS_COMPLETER else None ) | |
self._neosnippet_completer = ( NeoSnippetCompleter() | |
if USE_NEOSNIPPET_COMPLETER else None ) | |
self._non_filename_completers = filter( lambda x: x, | |
[ self._ultisnips_completer, | |
self._neosnippet_completer, | |
self._identifier_completer ] ) | |
self._all_completers = filter( lambda x: x, | |
[ self._identifier_completer, | |
self._filename_completer, | |
self._neosnippet_completer, | |
self._ultisnips_completer ] ) | |
self._current_query_completers = [] | |
def SupportedFiletypes( self ): | |
return set() | |
def ShouldUseNow( self, start_column ): | |
self._current_query_completers = [] | |
if self._filename_completer.ShouldUseNow( start_column ): | |
self._current_query_completers = [ self._filename_completer ] | |
return True | |
should_use_now = False | |
for completer in self._non_filename_completers: | |
should_use_this_completer = completer.ShouldUseNow( start_column ) | |
should_use_now = should_use_now or should_use_this_completer | |
if should_use_this_completer: | |
self._current_query_completers.append( completer ) | |
return should_use_now | |
def CandidatesForQueryAsync( self, query, start_column ): | |
for completer in self._current_query_completers: | |
completer.CandidatesForQueryAsync( query, start_column ) | |
def AsyncCandidateRequestReady( self ): | |
return all( x.AsyncCandidateRequestReady() for x in | |
self._current_query_completers ) | |
def CandidatesFromStoredRequest( self ): | |
candidates = [] | |
for completer in self._current_query_completers: | |
candidates += completer.CandidatesFromStoredRequest() | |
return candidates | |
def OnFileReadyToParse( self ): | |
for completer in self._all_completers: | |
completer.OnFileReadyToParse() | |
def OnCursorMovedInsertMode( self ): | |
for completer in self._all_completers: | |
completer.OnCursorMovedInsertMode() | |
def OnCursorMovedNormalMode( self ): | |
for completer in self._all_completers: | |
completer.OnCursorMovedNormalMode() | |
def OnBufferVisit( self ): | |
for completer in self._all_completers: | |
completer.OnBufferVisit() | |
def OnBufferUnload( self, deleted_buffer_file ): | |
for completer in self._all_completers: | |
completer.OnBufferUnload( deleted_buffer_file ) | |
def OnCursorHold( self ): | |
for completer in self._all_completers: | |
completer.OnCursorHold() | |
def OnInsertLeave( self ): | |
for completer in self._all_completers: | |
completer.OnInsertLeave() | |
def OnCurrentIdentifierFinished( self ): | |
for completer in self._all_completers: | |
completer.OnCurrentIdentifierFinished() | |
def GettingCompletions( self ): | |
for completer in self._all_completers: | |
completer.GettingCompletions() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment