Skip to content
Snippets Groups Projects
Commit 63ca3ce6 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

improve aql completion

parent d9e084e8
No related branches found
No related tags found
1 merge request!55Dev
......@@ -72,6 +72,9 @@ ReadlinePromptCompletion::CompletionContext ReadlinePromptCompletion::context (
if ( p >= rl_line_buffer && ( *p == '<' || *p == '>' ) )
return CompletionContext::FILEPATH_OR_VARIABLE;
 
if ( p >= rl_line_buffer && ( *p == '|' || *p == '(' ) )
return CompletionContext::ALGORITHM;
if ( startswith ( line, "execute" ) && start == 8 )
return CompletionContext::ALGORITHM;
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment