Skip to content

Commit

Permalink
Separate Teensy's keywords from Arduino's
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulStoffregen committed Aug 24, 2015
1 parent 0bd6f01 commit 6a467b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/processing/app/syntax/PdeKeywords.java
Expand Up @@ -83,6 +83,8 @@ public PdeKeywords() {
public void reload() {
try {
parseKeywordsTxt(new File(BaseNoGui.getContentFile("lib"), "keywords.txt"));
File teensykeywords = new File(BaseNoGui.getContentFile("lib"), "keywords_teensy.txt");
if (teensykeywords.exists()) parseKeywordsTxt(teensykeywords);
for (ContributedLibrary lib : Base.getLibraries()) {
File keywords = new File(lib.getInstalledFolder(), "keywords.txt");
if (keywords.exists()) {
Expand Down

0 comments on commit 6a467b6

Please sign in to comment.