mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-26 20:54:22 +01:00
Remove autocomplete for macros
Was causing NPE on certain cores
This commit is contained in:
parent
79339d24f7
commit
5e8895c475
@ -117,7 +117,7 @@ public class ClangCompletionProvider extends LanguageAwareCompletionProvider {
|
||||
}
|
||||
for (ArduinoCompletion cc : allCc) {
|
||||
|
||||
if (cc.type.equals("Function") || cc.type.equals("Macro")) {
|
||||
if (cc.type.equals("Function")) {
|
||||
List<Parameter> params = new ArrayList<>();
|
||||
int i=0;
|
||||
String fancyParameters = "(";
|
||||
|
Loading…
x
Reference in New Issue
Block a user