Skip to content

Commit

Permalink
Missing ACE operators. Fixes #6
Browse files Browse the repository at this point in the history
  • Loading branch information
heyglen committed Nov 28, 2017
1 parent 1b76f20 commit 4f855fd
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
11 changes: 10 additions & 1 deletion cisco-ace.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,16 @@ variables:
bgp|
ssh|
snmp
operators: '(?:(?:eq)|(?:ge)|(?:le))'
operators: |
(?xi)
(?:
(?:eq)|
(?:neq)|
(?:ge)|
(?:gt)|
(?:lt)|
(?:le)
)
port_target: '(?:(?:{{port_numbers}})|(?:{{port_names}}))'
drives: |
(?xi)
Expand Down
1 change: 1 addition & 0 deletions cisco-ios.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ variables:
(?xi)
(?:
(?:eq)|
(?:neq)|
(?:ge)|
(?:gt)|
(?:lt)|
Expand Down
11 changes: 10 additions & 1 deletion cisco-nxos.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,16 @@ variables:
(?:ssh)|
(?:snmp)
)
operators: '(?:(?:eq)|(?:ge)|(?:le))'
operators: |
(?xi)
(?:
(?:eq)|
(?:neq)|
(?:ge)|
(?:gt)|
(?:lt)|
(?:le)
)
cos: '[0-7]'
cos_range: '{{cos}}(?:-{{cos}})?(?:,\s*{{cos}}(?:-{{cos}})?)*'
port_target: '(?:(?:{{port_numbers}})|(?:{{port_names}}))'
Expand Down
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
"2.8.0": "messages/2.8.0.md",
"2.9.0": "messages/2.9.0.md",
"2.10.0": "messages/2.10.0.md",
"2.10.1": "messages/2.10.1.md",
}
7 changes: 7 additions & 0 deletions messages/2.10.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# [2.11.1] - 2017-11-28

## Bugfixes

- Cisco IOS / ASA / ACE / NXOS

- Missing ACL ACE operators (#6)

0 comments on commit 4f855fd

Please sign in to comment.