vscode-rpgle
vscode-rpgle copied to clipboard
improved support for special characters in variables
trafficstars
this is my simple SQLRPGLE Program
/copy QCPYSRC,SPEC_H
dcl-ds $test qualified;
data varchar(10);
end-ds;
$test.data = 'test';
$test.
return;
The name of the DS write with special character '$', the content assit not resolve its scope and i cannot get the sub field
We've had this before. I need to track the issue down, but I am going to rename the title to better reflect the issue.
ok perfect. I will wait for a resolution
any updates?
@sebjulliand any ideas if you know the API to make the language server add support for these odd characters?
I found it:
languages.setLanguageConfiguration(`rpgle`, {
wordPattern:
})
Just need help building up the regex.