Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pulsar-edit/second-mate
TextMate helpers, under WASM
https://github.com/pulsar-edit/second-mate
Last synced: about 1 month ago
JSON representation
TextMate helpers, under WASM
- Host: GitHub
- URL: https://github.com/pulsar-edit/second-mate
- Owner: pulsar-edit
- License: mit
- Created: 2023-03-14T18:37:03.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T20:47:08.000Z (over 1 year ago)
- Last Synced: 2024-10-29T14:23:14.021Z (about 2 months ago)
- Language: JavaScript
- Size: 867 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Second Mate
[![CI](https://github.com/pulsar-edit/second-mate/actions/workflows/ci.yml/badge.svg)](https://github.com/pulsar-edit/second-mate/actions/workflows/ci.yml)TextMate helpers
## Installing
```sh
npm install second-mate
```## Using
### ScopeSelector
```javascript
const {ScopeSelector, ready} = require('second-mate')
await ready;
const selector = new ScopeSelector('a | b')
selector.matches(['c']) // => false
selector.matches(['a']) // => true
```### GrammarRegistry
```js
const {GrammarRegistry, ready} = require('first-mate');
await ready;
const registry = new GrammarRegistry();
const grammar = registry.loadGrammarSync('./spec/fixtures/javascript.json');
const {line, tags} = grammar.tokenizeLine('var offset = 3;');
// convert compact tags representation into convenient, space-inefficient tokens
const tokens = registry.decodeTokens(line, tags);
for (let {value, scopes} of Array.from(tokens)) {
console.log(`Token text: '${value}' with scopes: ${scopes}`);
}
```#### loadGrammar(grammarPath, callback)
Asynchronously load a grammar and add it to the registry.
`grammarPath` - A string path to the grammar file.
`callback` - A function to call after the grammar is read and added to the
registry. The callback receives `(error, grammar)` arguments.#### loadGrammarSync(grammarPath)
Synchronously load a grammar and add it to the registry.
`grammarPath` - A string path to the grammar file.
Returns a `Grammar` instance.
#### scopeForId(id)
Translate an integer representing an open scope tag from a `tags` array to a
scope name.`id` - A negative, odd integer.
Returns a scope `String`.
#### decodeTokens(line, tags)
Convert a line and a corresponding tags array returned from
`Grammar::tokenizeLine` into an array of token objects.`line` - A `String` representing a line of text.
`tags` - An `Array` of integers returned from `Grammar::tokenizeLine`.
Returns an `Array` of token objects, each with a `value` field containing a
string of the token's text and a `scopes` field pointing to an array of every
scope name containing the token.### Grammar
#### tokenizeLine(line, [ruleStack], [firstLine])
Generate the tokenize for the given line of text.
`line` - The string text of the line.
`ruleStack` - An array of Rule objects that was returned from a previous call
to this method.`firstLine` - `true` to indicate that the very first line is being tokenized.
Returns an object with a `tags` key pointing to an array of integers encoding
the scope structure of the line, a `line` key returning the line provided for
convenience, and a `ruleStack` key pointing to an array of rules to pass to this
method on future calls for lines proceeding the line that was just tokenized.The `tags` array encodes the structure of the line as integers for efficient
storage. This can be converted to a more convenient representation if storage
is not an issue by passing the `line` string and `tags` array to `GrammarRegistry::decodeTokens`.Otherwise, the integers can be interpreted as follows:
* Positive integers represent tokens, with the number indicating the length of
the token. All positive integers in the array should total to the length of the
line passed to this method.* Negative integers represent scope start/stop tags. Odd integers are scope
starts, and even integers are scope stops. An odd scope tag can be converted to
a string via `GrammarRegistry::scopeForId`. If you want to convert an even scope
tag, representing a scope end, add 1 to it to determine the corresponding scope
start tag before calling `::scopeForId`.#### tokenizeLines(text)
`text` - The string text possibly containing newlines.
Returns an object containing a `lines` key, pointing to an array of tokenized
lines and a `tags` key, pointing to an array of tags arrays described above.## Developing
* Clone the repository
* Run `npm install`
* Run `npm test` to run the specs
* If you make changes to `./src/scope-selector-parser.pegjs` ensure to run `npm run parse` to generate the JS form of PegJS.