aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update lockfile.json (#2529)github-actions[bot]2022-02-141-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* Update lockfile.json (#2528)github-actions[bot]2022-02-141-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* Update lockfile.jsonGitHub2022-02-141-1/+1
|
* Update lockfile.json (#2525)github-actions[bot]2022-02-131-1/+4
| | | Co-authored-by: GitHub <noreply@github.com>
* feat: add lalrpop parser (#2524)traxys2022-02-134-0/+72
| | | | LALRPOP is a parser generator for Rust. This only parses the LALRPOP side of the generator, not the nearly-rust code of the actions.
* tests: add failing test for incomplete argumentsStephan Seitz2022-02-132-1/+11
|
* indents(php): don't use aligned_indent for phpStephan Seitz2022-02-133-5/+17
| | | | Fixes #2497
* typo fixbadhi2022-02-131-1/+1
|
* added doc for setup_commandbadhi2022-02-131-0/+35
|
* Fixed formattingbadhi2022-02-131-1/+1
|
* Added extra argument to setup commands so that user can change the function ↵badhi2022-02-131-2/+4
| | | | args types
* Update lockfile.json (#2517)github-actions[bot]2022-02-121-2/+2
| | | Co-authored-by: GitHub <noreply@github.com>
* Add missing punctuation in vala's highlightMateus B. Melchiades2022-02-111-0/+4
|
* Improve Vala syntax highlightMateus Melchiades2022-02-111-5/+6
|
* Update lockfile.json (#2514)github-actions[bot]2022-02-111-2/+2
| | | Co-authored-by: GitHub <noreply@github.com>
* doc: add information about lua-heredockiyan2022-02-111-0/+1
|
* chore: update init.vim refs to init.luakiyan2022-02-112-5/+5
|
* chore: remove lua heredocs in documentation and readmekiyan2022-02-112-38/+8
|
* Update lockfile.json (#2512)github-actions[bot]2022-02-112-4/+4
| | | Co-authored-by: GitHub <noreply@github.com>
* Update lockfile.json (#2508)github-actions[bot]2022-02-101-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* Fix Elixir indents to match mix formatConnor Lay (Clay)2022-02-101-7/+12
|
* highlights(cpp): Highlight method with nested qualified_identifierFabian Viöl2022-02-091-0/+4
| | | | | | | | | | | | | | | | | | | | | | so that methods like these are correctly highlighted ```cpp class A { class B { void foo(); }; }; void A::B::foo() { // ^^^ } ``` This only increases the nesting level by one. AFAIK abritrary nesting is difficult to do with current queries. But this nesting is a pretty common case
* fix(makefile): add forgotten CXX_STANDARD againStephan Seitz2022-02-091-1/+2
|
* Only allow yaml at start of fileMDeiml2022-02-091-1/+1
|
* Update lockfile.jsonGitHub2022-02-091-1/+1
|
* Update lockfile.json (#2495)github-actions[bot]2022-02-081-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* chore(makefile): apply fixes to original makefileStephan Seitz2022-02-082-10/+48
|
* fix(makefile): fallback to c++14 when parser does not have cxx_standard setStephan Seitz2022-02-081-1/+1
|
* fix: revert to basic makefile where all variables are set by LuaStephan Seitz2022-02-081-52/+9
| | | | Fixes #2463
* fix: -Os should be used during compilation phase in makefileStephan Seitz2022-02-081-3/+4
|
* Update lockfile.jsonGitHub2022-02-081-1/+1
|
* add(vim): add highlight for more keywordsPierrick Guillaume2022-02-081-1/+18
|
* Update lockfile.json (#2490)github-actions[bot]2022-02-081-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* Update lockfile.jsonGitHub2022-02-071-1/+1
|
* locals(python): adapt as_pattern to upstream changeStephan Seitz2022-02-071-1/+1
|
* Update lockfile.jsonGitHub2022-02-071-2/+2
|
* feat(highlights/julia): Add missing highlights (#2464)Sergio A. Vargas2022-02-071-7/+13
| | | | | | | | | - Add highlights for: + command strings + abstract type definitions + module `end` delimiters - Distinguish `:` in quotes and ranges (it's already highlighted differently in ternary expressions).
* feat(vim): highlight default parametersZoltán Reegn2022-02-071-1/+2
|
* Update lockfile.json (#2481)github-actions[bot]2022-02-061-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* test(indent): fix typosMunif Tanjim2022-02-062-2/+2
|
* indents(lua): make ")" `@indent_endStephan Seitz2022-02-063-0/+10
| | | | Fixes #2476
* fix: readme typo, removing deprecated docsCarlo Sala2022-02-061-15/+3
|
* fix: Allow re-parsing in Python, XFAIL `\` indentation testStephan Seitz2022-02-063-5/+13
|
* tests(indent): also test creating new line when still in insert modeStephan Seitz2022-02-061-0/+11
|
* tests: add test for #2086Stephan Seitz2022-02-062-0/+4
| | | | While this does not test the described problem in insert mode
* chore: expose start and stop highlighterkiyan2022-02-062-21/+39
| | | | | | Decompose highlighter module in small functions to allow exporting a start and stop functions without the syntax change. Also fix linter issues in configs.lua
* refacto: deprecate used_by in parsers.luakiyan2022-02-063-37/+37
| | | | | | | | | | - remove print_warning function from utils.lua (unused) - cleanup some functions in parsers.lua (parameters overloading and wrong bufnr used). - log a deprecation notice when using used_by in a parser definition - default the filetype_to_parsername table to the list of filetypes previously in the used_by keys - update the README to indicate that change
* ci: use apt-get instead of apt to avoid warnings from aptDundar Göc2022-02-061-1/+1
|
* ci: remove unnecessary apt callsDundar Göc2022-02-062-3/+0
|
* Update 'troubleshooting' for using mirror.jedsek2022-02-061-0/+15
|