From 6480c63a6f4d5852705184b8fe5b3b78281cd9b2 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 15 Jul 2018 02:39:40 -0700 Subject: [PATCH] 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 coloration to be used (as with KEYWORD2, KEYWORD3, LITERAL2). On Arduino IDE 1.6.4 and older it causes the keyword to not be recognized for any special coloration. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords --- Base64/keywords.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Base64/keywords.txt b/Base64/keywords.txt index 970fda0..6a23e20 100755 --- a/Base64/keywords.txt +++ b/Base64/keywords.txt @@ -7,16 +7,16 @@ ####################################### # I WANT BASE64.h HIGHLIGHTED, DAMMIT! -Base64 KEYWORD1 +Base64 KEYWORD1 ####################################### # Methods and Functions (KEYWORD2) ####################################### -base64_encode KEYWORD2 -base64_decode KEYWORD2 -base64_enc_len KEYWORD2 -base64_dec_len KEYWORD2 +base64_encode KEYWORD2 +base64_decode KEYWORD2 +base64_enc_len KEYWORD2 +base64_dec_len KEYWORD2 ####################################### # Constants (LITERAL1)