Skip to content

Commit

Permalink
Use correct separator in keywords.txt
Browse files Browse the repository at this point in the history
The Arduino IDE requires the use of a tab separator between the name and identifier. Without this tab the keyword is not highlighted.

Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords
  • Loading branch information
per1234 committed Sep 3, 2017
1 parent 4a64e0e commit 888e27f
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions keywords.txt
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@

# Datatypes (KEYWORD1)

bool KEYWORD1
uint8_t KEYWORD1
QRCode KEYWORD1
bool KEYWORD1
uint8_t KEYWORD1
QRCode KEYWORD1


# Methods and Functions (KEYWORD2)

qrcode_getBufferSize KEYWORD2
qrcode_initText KEYWORD2
qrcode_initBytes KEYWORD2
qrcode_getModule KEYWORD2
qrcode_getBufferSize KEYWORD2
qrcode_initText KEYWORD2
qrcode_initBytes KEYWORD2
qrcode_getModule KEYWORD2


# Instances (KEYWORD2)


# Constants (LITERAL1)

false LITERAL1
true LITERAL1
false LITERAL1
true LITERAL1

ECC_LOW LITERAL1
ECC_MEDIUM LITERAL1
ECC_QUARTILE LITERAL1
ECC_HIGH LITERAL1
MODE_NUMERIC LITERAL1
MODE_ALPHANUMERIC LITERAL1
MODE_BYTE LITERAL1
ECC_LOW LITERAL1
ECC_MEDIUM LITERAL1
ECC_QUARTILE LITERAL1
ECC_HIGH LITERAL1
MODE_NUMERIC LITERAL1
MODE_ALPHANUMERIC LITERAL1
MODE_BYTE LITERAL1

0 comments on commit 888e27f

Please sign in to comment.