123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- # Copyright (C) 2020, YouCompleteMe Contributors
- #
- # 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.client.semantic_tokens_request import SemanticTokensRequest
- from ycm.client.base_request import BuildRequestData
- from ycm import vimsupport
- from ycm import text_properties as tp
- from ycm import scrolling_range as sr
- import vim
- HIGHLIGHT_GROUP = {
- 'namespace': 'Type',
- 'type': 'Type',
- 'class': 'Structure',
- 'enum': 'Structure',
- 'interface': 'Structure',
- 'struct': 'Structure',
- 'typeParameter': 'Identifier',
- 'parameter': 'Identifier',
- 'variable': 'Identifier',
- 'property': 'Identifier',
- 'enumMember': 'Identifier',
- 'enumConstant': 'Constant',
- 'event': 'Identifier',
- 'function': 'Function',
- 'member': 'Identifier',
- 'macro': 'Macro',
- 'method': 'Function',
- 'keyword': 'Keyword',
- 'modifier': 'Keyword',
- 'comment': 'Comment',
- 'string': 'String',
- 'number': 'Number',
- 'regexp': 'String',
- 'operator': 'Operator',
- 'decorator': 'Special',
- 'unknown': 'Normal',
- # These are not part of the spec, but are used by clangd
- 'bracket': 'Normal',
- 'concept': 'Type',
- # These are not part of the spec, but are used by jdt.ls
- 'annotation': 'Macro',
- }
- REPORTED_MISSING_TYPES = set()
- def Initialise():
- if vimsupport.VimIsNeovim():
- return
- props = tp.GetTextPropertyTypes()
- if 'YCM_HL_UNKNOWN' not in props:
- tp.AddTextPropertyType( 'YCM_HL_UNKNOWN',
- highlight = 'WarningMsg',
- priority = 0 )
- for token_type, group in HIGHLIGHT_GROUP.items():
- prop = f'YCM_HL_{ token_type }'
- if prop not in props and vimsupport.GetIntValue(
- f"hlexists( '{ vimsupport.EscapeForVim( group ) }' )" ):
- tp.AddTextPropertyType( prop,
- highlight = group,
- priority = 0 )
- # "arbitrary" base id
- NEXT_TEXT_PROP_ID = 70784
- def NextPropID():
- global NEXT_TEXT_PROP_ID
- try:
- return NEXT_TEXT_PROP_ID
- finally:
- NEXT_TEXT_PROP_ID += 1
- class SemanticHighlighting( sr.ScrollingBufferRange ):
- """Stores the semantic highlighting state for a Vim buffer"""
- def __init__( self, bufnr ):
- self._prop_id = NextPropID()
- super().__init__( bufnr )
- def _NewRequest( self, request_range ):
- request: dict = BuildRequestData( self._bufnr )
- request[ 'range' ] = request_range
- return SemanticTokensRequest( request )
- def _Draw( self ):
- # We requested a snapshot
- tokens = self._latest_response.get( 'tokens', [] )
- prev_prop_id = self._prop_id
- self._prop_id = NextPropID()
- for token in tokens:
- prop_type = f"YCM_HL_{ token[ 'type' ] }"
- rng = token[ 'range' ]
- self.GrowRangeIfNeeded( rng )
- try:
- tp.AddTextProperty( self._bufnr, self._prop_id, prop_type, rng )
- except vim.error as e:
- if 'E971:' in str( e ): # Text property doesn't exist
- if token[ 'type' ] not in REPORTED_MISSING_TYPES:
- REPORTED_MISSING_TYPES.add( token[ 'type' ] )
- vimsupport.PostVimMessage(
- f"Token type { token[ 'type' ] } not supported. "
- f"Define property type { prop_type }. "
- f"See :help youcompleteme-customising-highlight-groups" )
- else:
- raise e
- tp.ClearTextProperties( self._bufnr, prop_id = prev_prop_id )
|