summaryrefslogtreecommitdiff
path: root/queries/javascript
AgeCommit message (Collapse)Author
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-10-04Remove textobjects moduleStephan Seitz
2020-09-19Add @keyword.operator for operators that are English words and add ↵Stephan Seitz
@exception for Java/JS
2020-09-14Fix #307: Use and document TSVariable/TSVariableBuiltin in all languagesStephan Seitz
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-10fix(highlights): add missing js operatorsSteven Sojka
2020-09-07fix using highlight query extension for every query typekyazdani42
2020-09-06feat(folds): add ts and js foldsSteven Sojka
2020-09-02fix(locals): js add arrow function parameter as definitionSteven Sojka
2020-08-26fix(locals): add js namespace import as definitionSteven Sojka
2020-08-17@function.method -> @methodNathan Smith
2020-08-17Merge pull request #319 from kyazdani42/feat/add-jsx-fragment-and-self-closingSteven Sojka
add jsx fragment and jsx self closing element highlights
2020-08-17chore(highlights): remove is predicate usageSteven Sojka
2020-08-17add jsx fragment and jsx self closing element highlightskiyan42
2020-08-17some refacto, doc fixes and jsx querieskiyan42
- compute query language extensions *after* default ones (jsx after javascript) - remove outdated ts_utils functions from docs - add better regex detection to javascript - javascriptreact to use javascript queries - add javascript.jsx to javascript queries - write jsx.scm hl file
2020-08-16fix(queries): use vim-match for non lua regexesSteven Sojka
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
2020-08-14fix(locals): add shorthand identifiers as references and definitionsSteven Sojka
2020-08-04Add PHP, TOML, and update HTML, javascript queriesShirasaka
- PHP : Add highlights and locals query - TOML : Add highlights and locals query - HTML : Add scope - javascript : Add some scopes
2020-07-22add js textobject queriesSteven Sojka
2020-07-22add rest_parameters as definition in javascriptSteven Sojka
2020-07-08Introduce @definition.import for Python/JavascriptStephan Seitz
2020-07-01feat(javascript): add import specifier as definitionSteven Sojka
2020-06-30refactor(refactor): use higher local apis and some cleanupSteven Sojka
2020-06-30feat(refactor): highlight usages moduleSteven Sojka
2020-06-15fix(javascript): set booleans to boolean highlightsSteven Sojka
2020-06-14feat(queries): add typescript and javascript queriesSteven Sojka