-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
Description
Describe the issue
I have the following Python code.
sweeper = daq.sweep()
sweeper.set('device', 'dev3225')
sweeper.subscribe('/dev3225/demods/0/sample')
sweeper.execute()
Highlighting of strings and literals is okay. However, it highlights set
as built-in and doesn't highlight the methods subscribe
and execute
at all.
Which language seems to have the issue?
As mentioned, the problem above is with Python, but there are similar issues with e.g., .NET, where method names are also consistently not highlighted.
Are you using highlight
or highlightAuto
?
I'm using highlightElement.
...
Sample Code to Reproduce
https://jsfiddle.net/Ldpfg657/
Expected behavior
I would expect the methods (like subscribe
, execute
) to have a distinct color, and especially a set
that is not the built-in one, not using the built-in highlight.
Additional context