summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-25install can take 'all' as parameterkiyan42
2020-06-25add command to install all parserskiyan42
2020-06-24fix(locals): compute locals after later tickSteven Sojka
2020-06-24Adapt Python highlights to new query syntaxStephan Seitz
2020-06-23add highlight queries for bashTravonteD
2020-06-23Update CONTRIBUTING.mdThomas Vigouroux
This makes it more readable
2020-06-23Fix the ":" in symbols when used in pairsTravonteD
This fixes the colon not being highlighted when a symbol is represented in a pair like so: symbol: true
2020-06-22rename and finish ft->lang migrationkiyan42
2020-06-21Merge pull request #98 from theHamsta/disclaimerKiyan Yazdani
WIP: Add disclaimer to README.md
2020-06-21fix: separate queries with newlinesThomas Vigouroux
2020-06-21Add disclaimer to README.mdStephan Seitz
2020-06-21Merge pull request #101 from stsewd/fix-parser-ulrKiyan Yazdani
Fix bash parser url
2020-06-21Fix bash parser urlSantos Gallegos
Not sure if this was on purpose or if it was a mistake
2020-06-21fix(statusline): don't call if no parserThomas Vigouroux
2020-06-21Merge pull request #96 from theHamsta/python-__dunder__Thomas Vigouroux
Add highlighting of dunder identifiers (e.g. __all__, __add__) to Python highlights
2020-06-21Merge pull request #90 from kyazdani42/fix/parser-names-as-filetypesKiyan Yazdani
refacto/fix: filetype / parser name distinction
2020-06-21Add highlighting of dunder identifiers (e.g. __all__, __add__) to Python ↵Stephan Seitz
highlights
2020-06-21Merge pull request #72 from doubleloop/pythonStephan Seitz
Updated python highlights
2020-06-21Merge pull request #91 from TravonteD/sibling-refactorThomas Vigouroux
Refactor: utilize new consolidated syntax
2020-06-21Updated python highlightsJakub Łuczyński
* allow for digits in constant names * removed redundant/conflicting rules * added missing hlmap * fixed escape_sequence * more explicit @constructor assignment * added rules for function decoration identifiers
2020-06-20refactor: use newly introduced consolidated syntaxTravonteD
2020-06-20refactor: parser list and lang->ft/ft->langkiyan42
- move parser list in `parsers.lua` - most `ft` variable where changed to `lang`, `ft` is only used on autocmd binding, and lang is used for everything else. Functions have been defined to make the switch between `ft` and `lang`
2020-06-19fix: declare parse names as their appropriate filetype and change clone urlkiyan42
2020-06-19Merge pull request #89 from kyazdani42/refacto/remove-buf-state-and-apiThomas Vigouroux
refacto: remove buf state and api
2020-06-19add winnr to get_node_at_cursorkiyan42
2020-06-19update docskiyan42
2020-06-19refacto: remove buf_statekiyan42
- remove buf_state and related code - add get_node_at_cursor() - better incremental selection (code is localized)
2020-06-17Merge pull request #88 from PitcherTear22/masterThomas Vigouroux
Give credits for java queries
2020-06-17Give creditsChinmay Dalal
2020-06-17Give creditsChinmay Dalal
2020-06-15Merge pull request #87 from steelsojka/fix/js-boolean-fixKiyan Yazdani
fix(javascript): set booleans to boolean highlights
2020-06-15Merge pull request #86 from steelsojka/feat/jsonKiyan Yazdani
feat(lang): add json highlights
2020-06-15feat(lang): add json highlightsSteven Sojka
2020-06-15fix(javascript): set booleans to boolean highlightsSteven Sojka
2020-06-15Merge pull request #85 from PitcherTear22/masterThomas Vigouroux
Add java support
2020-06-15Fix typesChinmay Dalal
2020-06-15Add java to supported languagesChinmay Dalal
2020-06-15Add operatorsChinmay
2020-06-15Merge pull request #79 from steelsojka/feat/typescript-queriesKiyan Yazdani
feat(queries): add typescript and javascript queries
2020-06-15Fix method highlightingChinmay
2020-06-15Merge pull request #83 from theHamsta/fixup-cpp-localsThomas Vigouroux
Fixup: Introduce base languages for queries
2020-06-15chore(queries): use inherited queries for ts/jsSteven Sojka
2020-06-15Merge branch 'master' into feat/typescript-queriesSteven Sojka
* master: Change regexes in C/C++ highlights Update C/C++ highlights to new query syntax Add better highlighting for preprocessor functions in C highlights Add operators /=,*=,|=,&= to C highlights Add compound_statement to c queries Add punctuation.bracket/punctuation.delimiter to C highlights Make =,~,! operators in C highlights Add cpp/locals.scm Add @error highlight to c/highlights.scm Add C++ highlights.scm Introduce base languages for queries Add tree-sitter-regex feat(queries): allow for user overrides Update issue templates
2020-06-15Fixup: Introduce base languages for queriesStephan Seitz
Use same argument for nvim_get_runtime_file for base language
2020-06-15Merge pull request #63 from theHamsta/cpp-localsKiyan Yazdani
Introduce base languages for queries (for C++ locals)
2020-06-15Change regexes in C/C++ highlightsStephan Seitz
2020-06-15Update C/C++ highlights to new query syntaxStephan Seitz
2020-06-15Add better highlighting for preprocessor functions in C highlightsStephan Seitz
2020-06-15Add operators /=,*=,|=,&= to C highlightsStephan Seitz
2020-06-15Add compound_statement to c queriesStephan Seitz