mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-22 08:47:15 +09:00
Use Go regex word boundaries
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
syntax "inputrc" "inputrc$"
|
||||
|
||||
color constant.bool.false "\<(off|none)\>"
|
||||
color constant.bool.true "\<on\>"
|
||||
color preproc "\<set|\$include\>"
|
||||
color constant.bool.false "\b(off|none)\b"
|
||||
color constant.bool.true "\bon\b"
|
||||
color preproc "\bset|\$include\b"
|
||||
color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'"
|
||||
color constant.specialChar "\\.?"
|
||||
color comment "(^|[[:space:]])#([^{].*)?$"
|
||||
|
||||
Reference in New Issue
Block a user