Github user nickwallen commented on a diff in the pull request:
https://github.com/apache/metron/pull/740#discussion_r137926399
--- Diff:
metron-stellar/stellar-common/src/main/java/org/apache/metron/stellar/common/shell/StellarExecutor.java
---
@@ -203,6 +205,9 @@ public StellarExecutor(String zookeeperUrl, Console
console, Properties properti
index.put("quit", AutoCompleteType.TOKEN);
index.put(StellarShell.MAGIC_FUNCTIONS, AutoCompleteType.FUNCTION);
index.put(StellarShell.MAGIC_VARS, AutoCompleteType.FUNCTION);
+ index.put(StellarShell.MAGIC_GLOBALS, AutoCompleteType.FUNCTION);
+ index.put(StellarShell.MAGIC_DEFINE, AutoCompleteType.FUNCTION);
+ index.put(StellarShell.MAGIC_UNDEFINE, AutoCompleteType.FUNCTION);
--- End diff --
I also made sure the new magics are added to the auto-complete feature.
---