Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/susisu/keyword-pair-matcher
Highlights keyword pairs :atom:
https://github.com/susisu/keyword-pair-matcher
Last synced: 28 days ago
JSON representation
Highlights keyword pairs :atom:
- Host: GitHub
- URL: https://github.com/susisu/keyword-pair-matcher
- Owner: susisu
- License: mit
- Created: 2018-09-22T18:27:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-10T09:12:43.000Z (over 2 years ago)
- Last Synced: 2023-05-21T16:34:37.338Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://atom.io/packages/keyword-pair-matcher
- Size: 94.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# keyword-pair-matcher
Highlights keyword pairs, like [bracket-matcher](https://github.com/atom/bracket-matcher).This package is not for a specific language, and thus does not provide default configuration of keyword pairs. Please configure them in `config.cson` for each language you like :)
For Shell Script:
``` coffee
".shell.source":
"keyword-pair-matcher":
keywordPairs: [
"if..fi"
"case..esac"
"for..done"
"while..done"
"until..done"
"select..done"
]
```For OCaml:
``` coffee
".ocaml.source":
"keyword-pair-matcher":
keywordPairs: [
"begin..end"
"for..done"
"while..done"
"struct..end"
"sig..end"
"object..end"
]
```