summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
AgeCommit message (Collapse)Author
2022-11-06rust: use @type.qualifier and @storageclassTrard
2022-10-19feat(diff): add diff parsergbprod
This commit introduce diff parser.
2022-10-17docs: document all the captures in CONTRIBUTING.mdObserverOfTime
2022-09-10Update CONTRIBUTING.mdCameron
Add `@variable.globle` to available variable captures.
2022-09-06feat(spell): upstream spell queries from spellsitterLewis Russell
2022-08-03Updated CONTRIBUING.mdlfenzo
2022-03-30Add capture groups for remaining builtin highlight groupsGregory Anders
Some builtin highlight groups (see `:h group-name`) do not yet have associated capture groups, so add them.
2022-03-30Zulip link was missing protocol portion?sogaiu
2022-03-26highlights: conceal `"` in JSONStephan Seitz
Fixes #645
2022-02-05docs: add `@zero_indent` to CONTRIBUTING.mdStephan Seitz
2022-01-25update TLA+ revision, add queries for PlusCal (#2344)Vasiliy Morkovkin
2022-01-21feat(indent): ecma - support try_catch and if_elseMunif Tanjim
2022-01-21feat(indent): support `@aligned_indent` for pythonMunif Tanjim
2022-01-21feat: rewrite indent moduleMunif Tanjim
2022-01-19docs(CONTRIBUTING.md): mention Neovim's tree-sitter Matrix channel (#2294)Stephan Seitz
As suggested here: https://github.com/nvim-treesitter/nvim-treesitter/pull/2288#issuecomment-1015163267
2022-01-18docs: refresh CONTRIBUTING.mdThomas Vigouroux
- Mention Zulip instead of Gitter - Use query filetype instead of scheme
2021-12-22Update queriesSantos Gallegos
- Don't use the old form for predicates - Update some invalid queries
2021-12-18Fix misleading text in `CONTRIBUTING.md` (#2137)Omer Tuchfeld
2021-11-02chore: fix typosDundar Göc
2021-09-08Typo fix and reword docAbin Simon
2021-08-25add keywords to scala highlights (#1662)Stuart Mashaal
* add keywords to scala highlights * special capture for special keywords * add while to 'repeat' capture * pr cleanup, exmaples in CONTRIBUTING.md * add backquotes for consistency in docs * group @repeat keywords, fix null * comment-out 'macro' and 'forSome' * fix 'this' and 'super' keyword * remove accidental files :facepalm: * update revision * fix "super" and "this" * godammit these .metals files are killing me * why did I commit this??? Co-authored-by: Stuart Mashaal <smashaal@hopper.com>
2021-07-14add @tag.attribute for html like attributeslmlorca
2021-07-04Use stylua for autoformat code (#1480)Santos Gallegos
2021-07-04feat(keywords) merge return and yield into keyword.return groupantonk52
2021-07-04feat(keywords) add keyword.return & keyword.yieldantonk52
2021-05-31Improve check-queries (#1253)Santos Gallegos
- Add checks for injections. - Allow queries that start with [A-Z] for highlights only. - Don't stop on the first error, finish checking all queries.
2021-03-30Add text.reference and text.environmentStephan Seitz
2021-03-30latex: add TSMath that behaves like vimtex math highlightingStephan Seitz
2021-03-12Add comment parser to highlight comment tags (#893)Santos Gallegos
Closes #236
2021-03-04[highlights] Add TSSymbol highlight groupDennis B
Addresses issue #892 Ruby and Dart literal symbols will now be highlighted by the new TSSymbol highlight group, which itself will, by default, link to the Vim Identifier highlight group. Vim theme authors can then set their TSSymbol colors. Symbol highlighting can apply to a number of languages as noted in the following Wikipedia page: https://en.wikipedia.org/wiki/Symbol_(programming) Not just for Ruby and Dart.
2021-02-11HTML: improve highlights & injectionsSantos Gallegos
2021-01-06Remove usages of `@embedded` in highlightsStephan Seitz
2021-01-03Python highlights: Add regex injections: re.match(r"...")Stephan Seitz
2021-01-03Regex highlights: Add constant highlight for class_characterStephan Seitz
2020-10-23Remove textobjects from contributingStephan Seitz
2020-10-11feat(queries): modeline mechanism for base langsThomas Vigouroux
This implements https://github.com/neovim/neovim/pull/13059#issuecomment-704414189 This behaves like modelines and remove the use of the base_language map. Also, this allows to fine-tune what we actually want to include per query, which is better IMO.
2020-10-10fix(highlights): Add TSNamespace highlightStephan Seitz
Start adding highlights for - C++ - Rust (including other scoped_identifier/scoped_type_identifier fixes) - JS (only namespace_import) Addresses #516
2020-09-19Add @keyword.operator for operators that are English words and add ↵Stephan Seitz
@exception for Java/JS
2020-09-18Add TSTag and TSTagDelimiter groupsTravonteD
These groups will be added for use with xml-like tags such as html and jsx.
2020-09-17Update CONTRIBUTING.mdSantos Gallegos
Co-authored-by: Thomas Vigouroux <tomvig38@gmail.com>
2020-09-17Update contributingSantos Gallegos
2020-09-17Remove @definition.doc capturesSantos Gallegos
These aren't really definitions and are being show in the definitions list. We aren't using them at the moment, we could use another group or query file.
2020-09-15add @none to contributing.mdkiyan42
2020-09-14Folds: rename query files to folds.scm to be consistentSantos Gallegos
We use plural names for all query files except folds.
2020-09-11ci: check capture names in queriesThomas Vigouroux
2020-09-01docs(fold): document and commentThomas Vigouroux
2020-08-16Docs: document `@punctuation.special`Santos Gallegos
2020-08-16Merge pull request #296 from steelsojka/feat-is-predicateSteven Sojka
feat(highlights): add is predicate
2020-08-16feat(definitions): allow setting of scopeSteven Sojka
2020-08-16feat(highlights): add is predicateSteven Sojka