From ea9f0bd41a91f6d2501cd914a9227119b2a01854 Mon Sep 17 00:00:00 2001 From: John Mumm Date: Fri, 11 Oct 2013 12:09:52 -0400 Subject: [PATCH] Minor --- 6502asm.JSON-tmLanguage | 18 +++++++++--------- 6502asm.tmLanguage | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/6502asm.JSON-tmLanguage b/6502asm.JSON-tmLanguage index f6fbdff..d04aa54 100644 --- a/6502asm.JSON-tmLanguage +++ b/6502asm.JSON-tmLanguage @@ -7,13 +7,13 @@ { "match": "(?i)\\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc)\\b", "name": "keyword.arithlogic.asm", - "comment": "Arithmetic and logic instruction mnemonics" + "comment": "Arithmetic and logic instructions" }, { "match": "(?i)\\b(bcc|bcs|beq|bmi|bne|bpl|bvc|bvs|jmp|jsr|rti|rts)\\b", "name": "keyword.branch.asm", - "comment": "Branch instruction mnemonics" + "comment": "Branch instructions" }, { @@ -37,7 +37,7 @@ { "match": "(\/\/|;)(\\s|\\S)*", "name": "comment.line.asm", - "comment": "Comment line" + "comment": "Comment" }, @@ -50,37 +50,37 @@ { "match": "(?i)\\.([\\w|\\d]*)\\b", "name": "entity.name.function.asm", - "comment": "." + "comment": "Directives" }, { "match": "(^|\\s)\"[\\w\\s\\W]*\"", "name": "string.asm", - "comment": "Single-line string" + "comment": "String" }, { "match": "(^|\\s)\\'[\\w\\s\\W]*\\'($|\\s)", "name": "string.asm", - "comment": "Single-line string" + "comment": "String" }, { "match": "(?i)\\$((\\d|[A-F])+)\\b", "name": "constant.numeric.asm", - "comment": "Hex number constant" + "comment": "Hex number" }, { "match": "(?i)\\%([0|1]+)\\b", "name": "constant.numeric.asm", - "comment": "Binary number constant" + "comment": "Binary number" }, { "match": "(?i)\\#([0-9]+)\\b", "name": "constant.numeric.asm", - "comment": "Decimal number constant" + "comment": "Decimal number" } ], diff --git a/6502asm.tmLanguage b/6502asm.tmLanguage index ad81696..69a9f5b 100644 --- a/6502asm.tmLanguage +++ b/6502asm.tmLanguage @@ -12,7 +12,7 @@ comment - Arithmetic and logic instruction mnemonics + Arithmetic and logic instructions match (?i)\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc)\b name @@ -20,7 +20,7 @@ comment - Branch instruction mnemonics + Branch instructions match (?i)\b(bcc|bcs|beq|bmi|bne|bpl|bvc|bvs|jmp|jsr|rti|rts)\b name @@ -52,7 +52,7 @@ comment - Comment line + Comment match (//|;)(\s|\S)* name @@ -68,7 +68,7 @@ comment - . + Directives match (?i)\.([\w|\d]*)\b name @@ -76,7 +76,7 @@ comment - Single-line string + String match (^|\s)"[\w\s\W]*" name @@ -84,7 +84,7 @@ comment - Single-line string + String match (^|\s)\'[\w\s\W]*\'($|\s) name @@ -92,7 +92,7 @@ comment - Hex number constant + Hex number match (?i)\$((\d|[A-F])+)\b name @@ -100,7 +100,7 @@ comment - Binary number constant + Binary number match (?i)\%([0|1]+)\b name @@ -108,7 +108,7 @@ comment - Decimal number constant + Decimal number match (?i)\#([0-9]+)\b name