remove some function from autocomplete.

This commit is contained in:
Olivier Gagnon
2021-09-04 20:14:33 -04:00
parent 7f15a19f12
commit 05f3b1c390
4 changed files with 31 additions and 53 deletions
+3
View File
@@ -49,6 +49,9 @@ let symbols: string[] = [];
return symbols;
}
symbols = populate(ns);
const exclude = ["heart", "break", "exploit", "bypass"];
symbols = symbols.filter((symbol: string) => !exclude.includes(symbol));
})();
interface IProps {