micro/runtime/syntax/arduino.micro

117 lines
3.6 KiB
Text
Raw Normal View History

2016-03-21 19:16:02 +03:00
## FILENAME: arduino.nanorc
##
## DESCRIPTION: The arduino.nanorc syntax files allows syntax highlighting
## for Arduino sketch files in the GNU nano text editor.
##
## Maintainer: Nicholas Wilde
## Version: 0.1
## DATE: 06/23/2011
##
## HOMEPAGE: http://code.google.com/p/arduino-nano-editor-syntax/
##
## COMMENTS: -Most of the code was taken from the c.nanorc code found with
## GNU nano 2.2.6.
## -Direction was taken from the arduino vim syntax code by johannes
## <https://bitbucket.org/johannes/arduino-vim-syntax/>
## -Tested on Ubuntu Server 11.04 Natty Narwhal and GNU nano 2.2.6
##
## DIRECTIONS: For Ubuntu Server 11.04 Natty Narwhal:
## -Move this file <arduino.nanorc> to the nano directory
## /usr/share/nano/
## -Add arduino.nanorc reference to the nanorc settings file
## /etc/nanorc
## ...
## ## Arduino
## /usr/share/nano/arduino.nanorc
## ...
syntax "INO" "\.?ino$"
##
2016-03-25 23:41:36 +03:00
color brightred "\<[A-Z_][0-9A-Z_]+\>"
2016-03-21 19:16:02 +03:00
##
2016-03-25 23:41:36 +03:00
color green "\<((s?size)|((u_?)?int(8|16|32|64|ptr)))_t\>"
2016-03-21 19:16:02 +03:00
## Constants
2016-03-25 23:41:36 +03:00
green (i) "\<(HIGH|LOW|INPUT|OUTPUT)\>"
2016-03-21 19:16:02 +03:00
## Serial Print
2016-03-25 23:41:36 +03:00
red (i) "\<(DEC|BIN|HEX|OCT|BYTE)\>"
2016-03-21 19:16:02 +03:00
## PI Constants
2016-03-25 23:41:36 +03:00
green (i) "\<(PI|HALF_PI|TWO_PI)\>"
2016-03-21 19:16:02 +03:00
## ShiftOut
2016-03-25 23:41:36 +03:00
green (i) "\<(LSBFIRST|MSBFIRST)\>"
2016-03-21 19:16:02 +03:00
## Attach Interrupt
2016-03-25 23:41:36 +03:00
green (i) "\<(CHANGE|FALLING|RISING)\>"
2016-03-21 19:16:02 +03:00
## Analog Reference
2016-03-25 23:41:36 +03:00
green (i) "\<(DEFAULT|EXTERNAL|INTERNAL|INTERNAL1V1|INTERNAL2V56)\>"
2016-03-21 19:16:02 +03:00
## === FUNCTIONS === ##
## Data Types
2016-03-25 23:41:36 +03:00
color green "\<(boolean|byte|char|float|int|long|word)\>"
2016-03-21 19:16:02 +03:00
## Control Structions
2016-03-25 23:41:36 +03:00
color brightyellow "\<(case|class|default|do|double|else|false|for|if|new|null|private|protected|public|short|signed|static|String|switch|this|throw|try|true|unsigned|void|while)\>"
color magenta "\<(goto|continue|break|return)\>"
2016-03-21 19:16:02 +03:00
## Math
2016-03-25 23:41:36 +03:00
color brightyellow "\<(abs|acos|asin|atan|atan2|ceil|constrain|cos|degrees|exp|floor|log|map|max|min|radians|random|randomSeed|round|sin|sq|sqrt|tan)\>"
2016-03-21 19:16:02 +03:00
## Bits & Bytes
2016-03-25 23:41:36 +03:00
color brightyellow "\<(bitRead|bitWrite|bitSet|bitClear|bit|highByte|lowByte)\>"
2016-03-21 19:16:02 +03:00
## Analog I/O
2016-03-25 23:41:36 +03:00
color brightyellow "\<(analogReference|analogRead|analogWrite)\>"
2016-03-21 19:16:02 +03:00
## External Interrupts
2016-03-25 23:41:36 +03:00
color brightyellow "\<(attachInterrupt|detachInterrupt)\>"
2016-03-21 19:16:02 +03:00
## Time
2016-03-25 23:41:36 +03:00
color brightyellow "\<(delay|delayMicroseconds|millis|micros)\>"
2016-03-21 19:16:02 +03:00
## Digital I/O
2016-03-25 23:41:36 +03:00
color brightyellow "\<(pinMode|digitalWrite|digitalRead)\>"
2016-03-21 19:16:02 +03:00
## Interrupts
2016-03-25 23:41:36 +03:00
color brightyellow "\<(interrupts|noInterrupts)\>"
2016-03-21 19:16:02 +03:00
## Advanced I/O
2016-03-25 23:41:36 +03:00
color brightyellow "\<(noTone|pulseIn|shiftIn|shiftOut|tone)\>"
2016-03-21 19:16:02 +03:00
## Serial
2016-03-25 23:41:36 +03:00
color magenta "\<(Serial|Serial1|Serial2|Serial3|begin|end|peek|read|print|println|available|flush)\>"
2016-03-21 19:16:02 +03:00
## Structure
2016-03-25 23:41:36 +03:00
color brightyellow "\<(setup|loop)\>"
2016-03-21 19:16:02 +03:00
##
color brightcyan "^[[:space:]]*#[[:space:]]*(define|include(_next)?|(un|ifn?)def|endif|el(if|se)|if|warning|error|pragma)"
##
2016-03-25 23:41:36 +03:00
color brightmagenta "'([^']|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'"
2016-03-21 19:16:02 +03:00
## GCC builtins
color cyan "__attribute__[[:space:]]*\(\([^)]*\)\)" "__(aligned|asm|builtin|hidden|inline|packed|restrict|section|typeof|weak)__"
2016-03-25 23:41:36 +03:00
## String highlighting. You will in general want your comments and
2016-03-21 19:16:02 +03:00
## strings to come last, because syntax highlighting rules will be
## applied in the order they are read in.
color brightyellow "<[^= ]*>" ""(\\.|[^"])*""
## This string is VERY resource intensive!
2016-03-25 23:41:36 +03:00
color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
2016-03-21 19:16:02 +03:00
## Comments
color brightblue "//.*"
2016-03-25 23:41:36 +03:00
color brightblue start="/\*" end="\*/"
2016-03-21 19:16:02 +03:00
## Trailing whitespace
color ,green "[[:space:]]+$"