Is your change request related to a problem? Please describe.
The autocompletion for lists does not appear, if one enters the method dot and it lists partly wrong methods.
Describe the solution you'd like
Make the autocompletion dialog for methods appear, if the user enters a dot after a symbol and propose betters suited autocompletions.
Describe possible alternatives you've considered
No alternative available.
Additional context
Add any other context or screenshots about the feature request here.
(Do not write below this line)
DEVS' SECTION
ANALYSIS
The following things have to be done to achieve the improved behavior:
In void NumeReEditor::OnChar( wxStyledTextEvent& event ) add a logical switch to detect, whether the current char is a dot and the previous char is not a whitespace character
Detect the type of the symbol left to the dot
Change then the signature in std::string NumeReSyntax::getAutoCompList(std::string sFirstChars, bool useSmartSense) to accept the additional var type to select the correct methods
DESCRIPTION
Is your change request related to a problem? Please describe. The autocompletion for lists does not appear, if one enters the method dot and it lists partly wrong methods.
Describe the solution you'd like Make the autocompletion dialog for methods appear, if the user enters a dot after a symbol and propose betters suited autocompletions.
Describe possible alternatives you've considered No alternative available.
Additional context Add any other context or screenshots about the feature request here.
(Do not write below this line)
DEVS' SECTION
ANALYSIS
The following things have to be done to achieve the improved behavior:
void NumeReEditor::OnChar( wxStyledTextEvent& event )
add a logical switch to detect, whether the current char is a dot and the previous char is not a whitespace characterstd::string NumeReSyntax::getAutoCompList(std::string sFirstChars, bool useSmartSense)
to accept the additional var type to select the correct methodsvoid GenericTerminal::tab()
IMPLEMENTATION STEPS
(see also our Wiki for implementation guidelines)
DOCUMENTATION STEPS
(see also our Wiki for further information)
*.NHLP
and*.NDB
files, if needed)*.NLNG
files, if needed)PULL REQUEST