-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsource.sparql.js
More file actions
24 lines (22 loc) · 662 Bytes
/
source.sparql.js
File metadata and controls
24 lines (22 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// This is a TextMate grammar distributed by `starry-night`.
// This grammar is developed at
// <https://github.com/peta/turtle.tmbundle>
// and licensed `mit`.
// See <https://github.com/wooorm/starry-night> for more info.
/**
* @import {Grammar} from '@wooorm/starry-night'
*/
/** @type {Grammar} */
const grammar = {
dependencies: ['source.turtle'],
extensions: ['.sparql', '.rq'],
names: ['sparql'],
patterns: [
{include: 'source.turtle#sparqlKeywords'},
{include: 'source.turtle#sparqlFilterFns'},
{include: 'source.turtle#sparqlLangConsts'},
{include: 'source.turtle'}
],
scopeName: 'source.sparql'
}
export default grammar