mirror of https://github.com/dense-analysis/ale
Enable C++ autocompletion on '::' and '->'
This commit is contained in:
parent
1c71da5624
commit
c5a4bbf8b0
|
@ -52,6 +52,7 @@ let s:should_complete_map = {
|
|||
\ 'lisp': s:lisp_regex,
|
||||
\ 'typescript': '\v[a-zA-Z$_][a-zA-Z$_0-9]*$|\.$|''$|"$',
|
||||
\ 'rust': '\v[a-zA-Z$_][a-zA-Z$_0-9]*$|\.$|::$',
|
||||
\ 'cpp': '\v[a-zA-Z$_][a-zA-Z$_0-9]*$|\.$|::$|-\>$',
|
||||
\}
|
||||
|
||||
" Regular expressions for finding the start column to replace with completion.
|
||||
|
@ -64,6 +65,7 @@ let s:trigger_character_map = {
|
|||
\ '<default>': ['.'],
|
||||
\ 'typescript': ['.', '''', '"'],
|
||||
\ 'rust': ['.', '::'],
|
||||
\ 'cpp': ['.', '::', '->'],
|
||||
\}
|
||||
|
||||
function! s:GetFiletypeValue(map, filetype) abort
|
||||
|
|
Loading…
Reference in New Issue