cswimr/home
Archived
Template
1
0
Fork 0
This repository has been archived on 2024-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
home/.config/bat/syntaxes/packages.sublime-syntax

19 lines
484 B
Text
Raw Normal View History

2024-11-14 16:24:28 -05:00
%YAML 1.2
---
name: Packages
file_extensions: [pkglist]
scope: source.packages
contexts:
main:
- match: \N[0-9a-zA-Z.\-_\+]+\-\d+|\b(?<!\.)\d(?!\.)\b
scope: version
2024-11-14 16:24:28 -05:00
# Match package names (assuming they are words with letters, numbers, hyphens, and underscores)
- match: \b[a-z][a-z0-9\-_\.]+\b
scope: keyword
# Match file sizes with different units (KiB, MiB, GiB, TiB, etc.)
- match: \d+(\.\d+)?\s+(KiB|MiB|GiB|TiB)
scope: constant.numeric