Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 64f6c3f

Browse files
committed
Use a single tab field separator in keywords.txt
Each field of keywords.txt is separated by a single true tab. When you use multiple tabs it causes the field to be interpreted as empty. On Arduino IDE 1.6.5 and newer an empty KEYWORD_TOKENTYPE causes the default editor.function.style highlighting to be used (as with KEYWORD2, KEYWORD3). On Arduino IDE 1.6.4 and older it causes the keyword to not be recognized for any special highlighting. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords
1 parent cf91248 commit 64f6c3f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

keywords.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@
55
#######################################
66
# Datatypes (KEYWORD1)
77
#######################################
8-
eOID_d (KEYWORD1)
9-
eSessionCtxId_d (KEYWORD1)
8+
eOID_d KEYWORD1
9+
eSessionCtxId_d KEYWORD1
1010
#######################################
1111
# Methods and Functions (KEYWORD2)
1212
#######################################
1313

14-
begin KEYWORD2
14+
begin KEYWORD2
1515
checkChip KEYWORD2
16-
reset KEYWORD2
16+
reset KEYWORD2
1717
getCertificate KEYWORD2
18-
getPublicKey KEYWORD2
18+
getPublicKey KEYWORD2
1919
getUniqueID KEYWORD2
2020
getRandom KEYWORD2
2121
getCurrentLimit KEYWORD2
2222
setCurrentLimit KEYWORD2
2323
getLastErrorCodes KEYWORD2
24-
sha256 KEYWORD2
24+
sha256 KEYWORD2
2525
calculateSignature KEYWORD2
2626
formatSignature KEYWORD2
2727
verifySignature KEYWORD2
@@ -38,7 +38,7 @@ trustX KEYWORD2
3838
#######################################
3939
# Constants (LITERAL1)
4040
#######################################
41-
eLCS_G LITERAL1
41+
eLCS_G LITERAL1
4242
eSECURITY_STATUS_G LITERAL1
4343
eCOPROCESSOR_UID LITERAL1
4444
eSLEEP_MODE_ACTIVATION_DELAY LITERAL1
@@ -52,6 +52,6 @@ eFIRST_DEVICE_PRIKEY_1 LITERAL1
5252
eFIRST_DEVICE_PRIKEY_2 LITERAL1
5353
eFIRST_DEVICE_PRIKEY_3 LITERAL1
5454
eFIRST_DEVICE_PRIKEY_4 LITERAL1
55-
eLCS_A LITERAL1
55+
eLCS_A LITERAL1
5656
eSECURITY_STATUS_A LITERAL1
57-
eERROR_CODES LITERAL1
57+
eERROR_CODES LITERAL1

0 commit comments

Comments
 (0)