1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# Anjuta internal configuration file
#----------------- WARNING ------------------------------------#
# Any modification in this file without knowing proper internal
# working of Anjuta may lead to instabilites.
#----------------- WARNING ------------------------------------#
# Anjuta uses this file for internal operations,
# therefore this file should never be modified.
# Only Anjuta developers will be tampering with this file.
# Any modification if needed should be approved by the Anjuta
# developers, so that the source code is also changed (if needed)
# and the changes incorporated in the next release of Anjuta.
##################################################
# Filters to be used in file open/close/save etc #
##################################################
file.patterns.matlab=*.m
filter.matlab=Matlab (.m)|$(file.patterns.matlab)|
####################################################
# Lexer to be used for corresponding file patterns #
####################################################
lexer.$(file.patterns.matlab)=matlab
#######################
# Keywords for Matlab #
#######################
keywordclass.matlab=break case catch continue else elseif end for function \
global if otherwise persistent return switch try while
keywords.$(file.patterns.matlab)=$(keywordclass.matlab)
#################
# Matlab styles #
#################
comment.block.matlab=%~
# White space
style.matlab.0=fore:#000000
# Comment
style.matlab.1=$(colour.code.comment.line),$(font.code.comment.line)
# Command
style.matlab.2=$(colour.preproc)
# Number
style.matlab.3=$(colour.number)
# Keyword
style.matlab.4=$(colour.keyword),bold
# String
style.matlab.5=$(colour.string)
# Operator
style.matlab.6=$(colour.operator),bold
# Identifier
style.matlab.7=
|