linrongbin16 / fzfx.nvim

A Neovim fuzzy finder that updates on every keystroke.
https://linrongbin16.github.io/fzfx.nvim/
MIT License
123 stars 5 forks source link

error: invalid value 'number' for '--style <components>' #30

Closed nat-418 closed 1 year ago

nat-418 commented 1 year ago

image

linrongbin16 commented 1 year ago

Hi @nat-418, it looks like your bat command don't accept --style=number.

and can you try this command: bat --style=number {anyfile}?

nat-418 commented 1 year ago

Hi @nat-418, it looks like your bat command don't accept --style=number.

and can you try this command: bat --style=number {anyfile}?

error: invalid value 'number' for '--style <components>': Unknown style, 'number'

For more information, try '--help'.
linrongbin16 commented 1 year ago

well, I'm not sure what version of bat are you using, I guess it's not a updated version.

If you can upgrade your bat version, the issue will be solved.

If you cannot upgrade it, please check here: https://github.com/sharkdp/bat#output-style, and type:

bat --help

and find out what style do your bat support, for example if it supports --style=git, you can set:

vim.env.BAT_STYLE="git"

before setup this plugin, because this plugin respects your $BAT_STYLE environment variable.

I will also update this plugin, to make it allow you set a custom command for previewer.

linrongbin16 commented 1 year ago

Hi @nat-418 , did you solve the issue?

nat-418 commented 1 year ago

Hi @nat-418 , did you solve the issue?

No. I have bat version 0.23.0. Setting vim.env.BAT_STYLE="git" also produced an error as above.

linrongbin16 commented 1 year ago

I also have bat 0.23.0, that's strange!

Please provide:

$ bat --help
A cat(1) clone with syntax highlighting and Git integration.

Usage: bat [OPTIONS] [FILE]...
       bat <COMMAND>

Arguments:
  [FILE]...
          File(s) to print / concatenate. Use a dash ('-') or no argument at all to read from
          standard input.

Options:
  -A, --show-all
          Show non-printable characters like space, tab or newline. This option can also be used to
          print binary files. Use '--tabs' to control the width of the tab-placeholders.

      --nonprintable-notation <notation>
          Set notation for non-printable characters.

          Possible values:
            * unicode (␇, ␊, ␀, ..)
            * caret   (^G, ^J, ^@, ..)

==============================================================================
hop: require("hop.health").check()

Ensuring keys are unique ~
- OK Keys are unique

Checking for deprecated features ~
- OK All good

==============================================================================
lazy: require("lazy.health").check()

lazy.nvim ~
- OK Git installed
- OK no existing packages found by other package managers
- OK packer_compiled.lua not found

==============================================================================
mason: require("mason.health").check()

mason.nvim ~
- OK mason.nvim version v1.6.1
- OK PATH: prepend
- OK Providers: 
  mason.providers.registry-api
  mason.providers.client
- OK neovim version >= 0.7.0

And share your nvim configuration, I will take a look into it.

nat-418 commented 1 year ago

OS: NixOS 23.11pre492895.a64b73e07d4 (Tapir) x86_64 Neovim:

NVIM v0.9.1
Build type: Release
LuaJIT 2.1.0-beta3

   system vimrc file: "$VIM/sysinit.vim"
  fall-back for $VIM: "
/nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/share/nvim
"

which bat: /home/nat/.nix-profile/bin/bat

bat help:

A cat(1) clone with syntax highlighting and Git integration.

Usage: bat [OPTIONS] [FILE]...
       bat <COMMAND>

Arguments:
  [FILE]...
          File(s) to print / concatenate. Use a dash ('-') or no argument at all to read from
          standard input.

Options:
  -A, --show-all
          Show non-printable characters like space, tab or newline. This option can also be used to
          print binary files. Use '--tabs' to control the width of the tab-placeholders.

      --nonprintable-notation <notation>
          Set notation for non-printable characters.

          Possible values:
            * unicode (␇, ␊, ␀, ..)
            * caret   (^G, ^J, ^@, ..)

  -p, --plain...
          Only show plain style, no decorations. This is an alias for '--style=plain'. When '-p' is
          used twice ('-pp'), it also disables automatic paging (alias for '--style=plain
          --paging=never').

  -l, --language <language>
          Explicitly set the language for syntax highlighting. The language can be specified as a
          name (like 'C++' or 'LaTeX') or possible file extension (like 'cpp', 'hpp' or 'md'). Use
          '--list-languages' to show all supported language names and file extensions.

  -H, --highlight-line <N:M>
          Highlight the specified line ranges with a different background color For example:
            '--highlight-line 40' highlights line 40
            '--highlight-line 30:40' highlights lines 30 to 40
            '--highlight-line :40' highlights lines 1 to 40
            '--highlight-line 40:' highlights lines 40 to the end of the file
            '--highlight-line 30:+10' highlights lines 30 to 40

      --file-name <name>
          Specify the name to display for a file. Useful when piping data to bat from STDIN when bat
          does not otherwise know the filename. Note that the provided file name is also used for
          syntax detection.

  -d, --diff
          Only show lines that have been added/removed/modified with respect to the Git index. Use
          --diff-context=N to control how much context you want to see.

      --diff-context <N>
          Include N lines of context around added/removed/modified lines when using '--diff'.

      --tabs <T>
          Set the tab width to T spaces. Use a width of 0 to pass tabs through directly

      --wrap <mode>
          Specify the text-wrapping mode (*auto*, never, character). The '--terminal-width' option
          can be used in addition to control the output width.

  -S, --chop-long-lines
          Truncate all lines longer than screen width. Alias for '--wrap=never'.

      --terminal-width <width>
          Explicitly set the width of the terminal instead of determining it automatically. If
          prefixed with '+' or '-', the value will be treated as an offset to the actual terminal
          width. See also: '--wrap'.

  -n, --number
          Only show line numbers, no other decorations. This is an alias for '--style=numbers'

      --color <when>
          Specify when to use colored output. The automatic mode only enables colors if an
          interactive terminal is detected - colors are automatically disabled if the output goes to
          a pipe.
          Possible values: *auto*, never, always.

      --italic-text <when>
          Specify when to use ANSI sequences for italic text in the output. Possible values: always,
          *never*.

      --decorations <when>
          Specify when to use the decorations that have been specified via '--style'. The automatic
          mode only enables decorations if an interactive terminal is detected. Possible values:
          *auto*, never, always.

  -f, --force-colorization
          Alias for '--decorations=always --color=always'. This is useful if the output of bat is
          piped to another program, but you want to keep the colorization/decorations.

      --paging <when>
          Specify when to use the pager. To disable the pager, use --paging=never' or its
          alias,'-P'. To disable the pager permanently, set BAT_PAGER to an empty string. To control
          which pager is used, see the '--pager' option. Possible values: *auto*, never, always.

      --pager <command>
          Determine which pager is used. This option will override the PAGER and BAT_PAGER
          environment variables. The default pager is 'less'. To control when the pager is used, see
          the '--paging' option. Example: '--pager "less -RF"'.

  -m, --map-syntax <glob:syntax>
          Map a glob pattern to an existing syntax name. The glob pattern is matched on the full
          path and the filename. For example, to highlight *.build files with the Python syntax, use
          -m '*.build:Python'. To highlight files named '.myignore' with the Git Ignore syntax, use
          -m '.myignore:Git Ignore'. Note that the right-hand side is the *name* of the syntax, not
          a file extension.

      --ignored-suffix <ignored-suffix>
          Ignore extension. For example:
            'bat --ignored-suffix ".dev" my_file.json.dev' will use JSON syntax, and ignore '.dev'

      --theme <theme>
          Set the theme for syntax highlighting. Use '--list-themes' to see all available themes. To
          set a default theme, add the '--theme="..."' option to the configuration file or export
          the BAT_THEME environment variable (e.g.: export BAT_THEME="...").

      --list-themes
          Display a list of supported themes for syntax highlighting.

      --style <components>
          Configure which elements (line numbers, file headers, grid borders, Git modifications, ..)
          to display in addition to the file contents. The argument is a comma-separated list of
          components to display (e.g. 'numbers,changes,grid') or a pre-defined style ('full'). To
          set a default style, add the '--style=".."' option to the configuration file or export the
          BAT_STYLE environment variable (e.g.: export BAT_STYLE="..").

          Possible values:

            * default: enables recommended style components (default).
            * full: enables all available components.
            * auto: same as 'default', unless the output is piped.
            * plain: disables all available components.
            * changes: show Git modification markers.
            * header: alias for 'header-filename'.
            * header-filename: show filenames before the content.
            * header-filesize: show file sizes before the content.
            * grid: vertical/horizontal lines to separate side bar
                    and the header from the content.
            * rule: horizontal lines to delimit files.
            * numbers: show line numbers in the side bar.
            * snip: draw separation lines between distinct line ranges.

  -r, --line-range <N:M>
          Only print the specified range of lines for each file. For example:
            '--line-range 30:40' prints lines 30 to 40
            '--line-range :40' prints lines 1 to 40
            '--line-range 40:' prints lines 40 to the end of the file
            '--line-range 40' only prints line 40
            '--line-range 30:+10' prints lines 30 to 40

  -L, --list-languages
          Display a list of supported languages for syntax highlighting.

  -u, --unbuffered
          This option exists for POSIX-compliance reasons ('u' is for 'unbuffered'). The output is
          always unbuffered - this option is simply ignored.

      --diagnostic
          Show diagnostic information for bug reports.

      --acknowledgements
          Show acknowledgements.

  -h, --help
          Print help (see a summary with '-h')

  -V, --version
          Print version

You can use 'bat cache' to customize syntaxes and themes. See 'bat cache --help' for more
information

Neovim checkhealth:


==============================================================================
nvim: require("nvim.health").check()

Configuration ~
- OK no issues found

Runtime ~
- OK $VIMRUNTIME: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/share/nvim/runtime

Performance ~
- OK Build type: Release

Remote Plugins ~
- OK Up to date

terminal ~
- key_backspace (kbs) terminfo entry: `key_backspace=^H`
- key_dc (kdch1) terminfo entry: `key_dc=\E[3~`
- $VTE_VERSION="7202"
- $COLORTERM="truecolor"

==============================================================================
nvim-treesitter: require("nvim-treesitter.health").check()

Installation ~
- WARNING `tree-sitter` executable not found (parser generator, only needed for :TSInstallFromGrammar, not required for :TSInstall)
- WARNING `node` executable not found (only needed for :TSInstallFromGrammar, not required for :TSInstall)
- OK `git` executable found.
- OK `cc` executable found. Selected from { vim.NIL, "cc", "gcc", "clang", "cl", "zig" }
  Version: gcc (GCC) 12.3.0
- OK Neovim was compiled with tree-sitter runtime ABI version 14 (required >=13). Parsers must be compatible with runtime ABI.

OS Info:
{
  machine = "x86_64",
  release = "6.3.6",
  sysname = "Linux",
  version = "#1-NixOS SMP PREEMPT_DYNAMIC Mon Jun  5 07:29:47 UTC 2023"
} ~

Parser/Features         H L F I J
  - ada                 ✓ ✓ ✓ . .
  - agda                ✓ . ✓ . .
  - arduino             ✓ ✓ ✓ ✓ ✓
  - astro               ✓ ✓ ✓ ✓ ✓
  - awk                 ✓ . . . ✓
  - bash                ✓ ✓ ✓ . ✓
  - bass                ✓ ✓ ✓ ✓ ✓
  - beancount           ✓ . ✓ . .
  - bibtex              ✓ . ✓ ✓ .
  - bicep               ✓ ✓ ✓ ✓ ✓
  - blueprint           ✓ . . . .
  - c                   ✓ ✓ ✓ ✓ ✓
  - c_sharp             ✓ ✓ ✓ . ✓
  - capnp               ✓ ✓ ✓ ✓ ✓
  - chatito             ✓ ✓ ✓ ✓ ✓
  - clojure             ✓ ✓ ✓ . ✓
  - cmake               ✓ . ✓ . .
  - comment             ✓ . . . .
  - commonlisp          ✓ ✓ ✓ . .
  - cooklang            ✓ . . . .
  - corn                ✓ ✓ ✓ ✓ .
  - cpon                ✓ ✓ ✓ ✓ ✓
  - cpp                 ✓ ✓ ✓ ✓ ✓
  - css                 ✓ . ✓ ✓ ✓
  - cuda                ✓ ✓ ✓ ✓ ✓
  - cue                 ✓ ✓ ✓ ✓ ✓
  - dart                ✓ ✓ ✓ ✓ ✓
  - devicetree          ✓ ✓ ✓ ✓ ✓
  - dhall               ✓ . ✓ . ✓
  - diff                ✓ . . . .
  - dockerfile          ✓ . . . ✓
  - dot                 ✓ . . . ✓
  - ebnf                ✓ . . . .
  - eex                 ✓ . . . ✓
  - elixir              ✓ ✓ ✓ ✓ ✓
  - elm                 ✓ . . . ✓
  - elsa                ✓ ✓ ✓ ✓ ✓
  - elvish              ✓ . . . ✓
  - embedded_template   ✓ . . . ✓
  - erlang              ✓ . ✓ . .
  - fennel              ✓ ✓ ✓ . ✓
  - firrtl              ✓ ✓ ✓ ✓ ✓
  - fish                ✓ ✓ ✓ ✓ ✓
  - foam                ✓ ✓ ✓ ✓ ✓
  - fortran             ✓ . ✓ ✓ .
  - fsh                 ✓ . . . .
  - func                ✓ . . . .
  - fusion              ✓ ✓ ✓ ✓ .
  - gdscript            ✓ ✓ ✓ ✓ ✓
  - git_config          ✓ . . . .
  - git_rebase          ✓ . . . ✓
  - gitattributes       ✓ . . . ✓
  - gitcommit           ✓ . . . ✓
  - gitignore           ✓ . . . .
  - gleam               ✓ ✓ ✓ ✓ ✓
  - glimmer             ✓ . . . .
  - glsl                ✓ ✓ ✓ ✓ ✓
  - go                  ✓ ✓ ✓ ✓ ✓
  - godot_resource      ✓ ✓ ✓ . .
  - gomod               ✓ . . . ✓
  - gosum               ✓ . . . .
  - gowork              ✓ . . . ✓
  - graphql             ✓ . . ✓ ✓
  - hack                ✓ . . . .
  - hare                ✓ ✓ ✓ ✓ ✓
  - haskell             ✓ . ✓ . ✓
  - hcl                 ✓ . ✓ ✓ ✓
  - heex                ✓ ✓ ✓ ✓ ✓
  - hjson               ✓ ✓ ✓ ✓ ✓
  - hlsl                ✓ ✓ ✓ ✓ ✓
  - hocon               ✓ . . . ✓
  - html                ✓ ✓ ✓ ✓ ✓
  - htmldjango          ✓ . ✓ ✓ ✓
  - http                ✓ . . . ✓
  - ini                 ✓ . ✓ . .
  - ispc                ✓ ✓ ✓ ✓ ✓
  - janet_simple        ✓ ✓ ✓ . ✓
  - java                ✓ ✓ ✓ ✓ ✓
  - javascript          ✓ ✓ ✓ ✓ ✓
  - jq                  ✓ . . . ✓
  - jsdoc               ✓ . . . .
  - json                ✓ ✓ ✓ ✓ .
  - json5               ✓ . . . ✓
  - jsonc               ✓ ✓ ✓ ✓ ✓
  - jsonnet             ✓ . . . .
  - julia               ✓ ✓ ✓ ✓ ✓
  - kdl                 ✓ ✓ ✓ ✓ ✓
  - kotlin              ✓ ✓ ✓ . ✓
  - lalrpop             ✓ ✓ . . ✓
  - latex               ✓ . ✓ . ✓
  - ledger              ✓ . ✓ ✓ ✓
  - llvm                ✓ . . . .
  - lua                 ✓ ✓ ✓ ✓ ✓
  - luadoc              ✓ . . . .
  - luap                ✓ . . . .
  - luau                ✓ ✓ ✓ ✓ ✓
  - m68k                ✓ ✓ ✓ . ✓
  - make                ✓ . ✓ . ✓
  - markdown            ✓ . ✓ ✓ ✓
  - markdown_inline     ✓ . . . ✓
  - matlab              ✓ . ✓ . ✓
  - menhir              ✓ . . . ✓
  - mermaid             ✓ . . . .
  - meson               ✓ . ✓ . ✓
  - nickel              ✓ . . ✓ .
  - ninja               ✓ . ✓ ✓ .
  - nix                 ✓ ✓ ✓ . ✓
  - norg                . . . . .
  - objc                ✓ ✓ ✓ ✓ ✓
  - ocaml               ✓ ✓ ✓ ✓ ✓
  - ocaml_interface     ✓ ✓ ✓ ✓ ✓
  - odin                ✓ ✓ ✓ ✓ ✓
  - org                 . . . . .
  - pascal              ✓ ✓ ✓ ✓ ✓
  - passwd              ✓ . . . .
  - perl                ✓ . ✓ . ✓
  - php                 ✓ ✓ ✓ ✓ ✓
  - phpdoc              ✓ . . . .
  - pioasm              ✓ . . . ✓
  - po                  ✓ . ✓ . ✓
  - poe_filter          ✓ . ✓ ✓ ✓
  - pony                ✓ ✓ ✓ ✓ ✓
  - prisma              ✓ . . . .
  - proto               ✓ . ✓ . .
  - prql                ✓ . . . ✓
  - pug                 ✓ . . . ✓
  - puppet              ✓ ✓ ✓ ✓ ✓
  - python              ✓ ✓ ✓ ✓ ✓
  - ql                  ✓ ✓ ✓ ✓ ✓
  - qmldir              ✓ . . . ✓
  - qmljs               ✓ . ✓ . .
  - query               ✓ ✓ ✓ ✓ ✓
  - r                   ✓ ✓ . ✓ ✓
  - racket              ✓ . ✓ . ✓
  - rasi                ✓ ✓ ✓ ✓ .
  - regex               ✓ . . . .
  - rego                ✓ . . . ✓
  - rnoweb              ✓ . ✓ . ✓
  - ron                 ✓ ✓ ✓ ✓ ✓
  - rst                 ✓ ✓ . . ✓
  - ruby                ✓ ✓ ✓ ✓ ✓
  - rust                ✓ ✓ ✓ ✓ ✓
  - scala               ✓ ✓ ✓ . ✓
  - scheme              ✓ . ✓ . ✓
  - scss                ✓ . ✓ ✓ .
  - slint               ✓ . . ✓ .
  - smali               ✓ ✓ ✓ ✓ ✓
  - smithy              ✓ . . . .
  - solidity            ✓ . . . .
  - sparql              ✓ ✓ ✓ ✓ ✓
  - sql                 ✓ . . ✓ ✓
  - squirrel            ✓ ✓ ✓ ✓ ✓
  - starlark            ✓ ✓ ✓ ✓ ✓
  - supercollider       ✓ ✓ ✓ ✓ ✓
  - surface             ✓ . ✓ ✓ ✓
  - svelte              ✓ . ✓ ✓ ✓
  - sxhkdrc             ✓ . ✓ . ✓
  - t32                 ✓ ✓ ✓ ✓ ✓
  - tablegen            ✓ ✓ ✓ ✓ ✓
  - terraform           ✓ . ✓ ✓ ✓
  - thrift              ✓ ✓ ✓ ✓ ✓
  - tiger               ✓ ✓ ✓ ✓ ✓
  - tlaplus             ✓ ✓ ✓ . ✓
  - todotxt             ✓ . . . .
  - toml                ✓ ✓ ✓ ✓ ✓
  - tsx                 ✓ ✓ ✓ ✓ ✓
  - turtle              ✓ ✓ ✓ ✓ ✓
  - twig                ✓ . . . ✓
  - typescript          ✓ ✓ ✓ ✓ ✓
  - ungrammar           ✓ ✓ ✓ ✓ ✓
  - usd                 ✓ ✓ ✓ ✓ .
  - uxntal              ✓ ✓ ✓ ✓ ✓
  - v                   ✓ ✓ ✓ ✓ ✓
  - vala                ✓ . ✓ . .
  - verilog             ✓ ✓ ✓ . ✓
  - vhs                 ✓ . . . .
  - vim                 ✓ ✓ ✓ . ✓
  - vimdoc              ✓ . . . ✓
  - vue                 ✓ . ✓ ✓ ✓
  - wgsl                ✓ . ✓ ✓ .
  - wgsl_bevy           ✓ . ✓ ✓ .
  - yaml                ✓ ✓ ✓ ✓ ✓
  - yang                ✓ . ✓ ✓ ✓
  - yuck                ✓ ✓ ✓ ✓ ✓
  - zig                 ✓ . ✓ ✓ ✓

  Legend: H[ighlight], L[ocals], F[olds], I[ndents], In[j]ections
         +) multiple parsers found, only one will be used
         x) errors found in the query, try to run :TSUpdate {lang} ~

==============================================================================
provider: health#provider#check

Clipboard (optional) ~
- OK Clipboard tool found: xsel

Python 3 provider (optional) ~
- Using: g:python3_host_prog = "/nix/store/14kq83jlffjf408r0zijpskkyv5iii1w-neovim-0.9.1/bin/nvim-python3"
- Executable: /nix/store/14kq83jlffjf408r0zijpskkyv5iii1w-neovim-0.9.1/bin/nvim-python3
- Python version: 3.10.11
- pynvim version: 0.4.3
- OK Latest pynvim is installed.

Python virtualenv ~
- OK no $VIRTUAL_ENV

Ruby provider (optional) ~
- Ruby: ruby 3.1.4p223 (2023-03-30 revision 957bb7cb81) [x86_64-linux]
- Host: /nix/store/14kq83jlffjf408r0zijpskkyv5iii1w-neovim-0.9.1/bin/nvim-ruby
- OK Latest "neovim" gem is installed: 0.9.0

Node.js provider (optional) ~
- Disabled (g:loaded_node_provider=0).

Perl provider (optional) ~
- WARNING "Neovim::Ext" cpan module is not installed
  - ADVICE:
    - See :help |provider-perl| for more information.
    - You may disable this provider (and warning) by adding `let g:loaded_perl_provider = 0` to your init.vim

==============================================================================
vim.lsp: require("vim.lsp.health").check()

- LSP log level : WARN
- Log path: /home/nat/.local/state/nvim/lsp.log
- Log size: 7806 KB

vim.lsp: Active Clients ~
- No active clients

==============================================================================
vim.treesitter: require("vim.treesitter.health").check()

- Nvim runtime ABI version: 14
- OK Parser: tcl        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/https-github.com-lewis6991-tree-sitter-tcl.git/parser/tcl.so
- OK Parser: ada        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ada/parser/ada.so
- OK Parser: agda       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-agda/parser/agda.so
- OK Parser: arduino    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-arduino/parser/arduino.so
- OK Parser: astro      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-astro/parser/astro.so
- OK Parser: awk        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-awk/parser/awk.so
- OK Parser: bash       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-bash/parser/bash.so
- OK Parser: bass       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-bass/parser/bass.so
- OK Parser: beancount  ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-beancount/parser/beancount.so
- OK Parser: bibtex     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-bibtex/parser/bibtex.so
- OK Parser: bicep      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-bicep/parser/bicep.so
- OK Parser: blueprint  ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-blueprint/parser/blueprint.so
- OK Parser: c          ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-c/parser/c.so
- OK Parser: c_sharp    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-c_sharp/parser/c_sharp.so
- OK Parser: capnp      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-capnp/parser/capnp.so
- OK Parser: chatito    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-chatito/parser/chatito.so
- OK Parser: clojure    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-clojure/parser/clojure.so
- OK Parser: cmake      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cmake/parser/cmake.so
- OK Parser: comment    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-comment/parser/comment.so
- OK Parser: commonlisp ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-commonlisp/parser/commonlisp.so
- OK Parser: cooklang   ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cooklang/parser/cooklang.so
- OK Parser: corn       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-corn/parser/corn.so
- OK Parser: cpon       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cpon/parser/cpon.so
- OK Parser: cpp        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cpp/parser/cpp.so
- OK Parser: css        ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-css/parser/css.so
- OK Parser: cuda       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cuda/parser/cuda.so
- OK Parser: cue        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-cue/parser/cue.so
- OK Parser: d          ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-d/parser/d.so
- OK Parser: dart       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-dart/parser/dart.so
- OK Parser: devicetree ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-devicetree/parser/devicetree.so
- OK Parser: dhall      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-dhall/parser/dhall.so
- OK Parser: diff       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-diff/parser/diff.so
- OK Parser: dockerfile ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-dockerfile/parser/dockerfile.so
- OK Parser: dot        ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-dot/parser/dot.so
- OK Parser: ebnf       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ebnf/parser/ebnf.so
- OK Parser: eex        ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-eex/parser/eex.so
- OK Parser: elixir     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-elixir/parser/elixir.so
- OK Parser: elm        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-elm/parser/elm.so
- OK Parser: elsa       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-elsa/parser/elsa.so
- OK Parser: elvish     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-elvish/parser/elvish.so
- OK Parser: embedded_template ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-embedded_template/parser/embedded_template.so
- OK Parser: erlang     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-erlang/parser/erlang.so
- OK Parser: fennel     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-fennel/parser/fennel.so
- OK Parser: firrtl     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-firrtl/parser/firrtl.so
- OK Parser: fish       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-fish/parser/fish.so
- OK Parser: foam       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-foam/parser/foam.so
- OK Parser: fortran    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-fortran/parser/fortran.so
- OK Parser: fsh        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-fsh/parser/fsh.so
- OK Parser: func       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-func/parser/func.so
- OK Parser: fusion     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-fusion/parser/fusion.so
- OK Parser: gdscript   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gdscript/parser/gdscript.so
- OK Parser: git_config ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-git_config/parser/git_config.so
- OK Parser: git_rebase ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-git_rebase/parser/git_rebase.so
- OK Parser: gitattributes ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gitattributes/parser/gitattributes.so
- OK Parser: gitcommit  ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gitcommit/parser/gitcommit.so
- OK Parser: gitignore  ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gitignore/parser/gitignore.so
- OK Parser: gleam      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gleam/parser/gleam.so
- OK Parser: glimmer    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-glimmer/parser/glimmer.so
- OK Parser: glsl       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-glsl/parser/glsl.so
- OK Parser: go         ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-go/parser/go.so
- OK Parser: godot_resource ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-godot_resource/parser/godot_resource.so
- OK Parser: gomod      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gomod/parser/gomod.so
- OK Parser: gosum      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gosum/parser/gosum.so
- OK Parser: gowork     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-gowork/parser/gowork.so
- OK Parser: graphql    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-graphql/parser/graphql.so
- OK Parser: hack       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hack/parser/hack.so
- OK Parser: hare       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hare/parser/hare.so
- OK Parser: haskell    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-haskell/parser/haskell.so
- OK Parser: hcl        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hcl/parser/hcl.so
- OK Parser: heex       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-heex/parser/heex.so
- OK Parser: hjson      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hjson/parser/hjson.so
- OK Parser: hlsl       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hlsl/parser/hlsl.so
- OK Parser: hocon      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-hocon/parser/hocon.so
- OK Parser: html       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-html/parser/html.so
- OK Parser: htmldjango ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-htmldjango/parser/htmldjango.so
- OK Parser: http       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-http/parser/http.so
- OK Parser: ini        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ini/parser/ini.so
- OK Parser: ispc       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ispc/parser/ispc.so
- OK Parser: janet_simple ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-janet_simple/parser/janet_simple.so
- OK Parser: java       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-java/parser/java.so
- OK Parser: javascript ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-javascript/parser/javascript.so
- OK Parser: jq         ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-jq/parser/jq.so
- OK Parser: jsdoc      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-jsdoc/parser/jsdoc.so
- OK Parser: json       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-json/parser/json.so
- OK Parser: json5      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-json5/parser/json5.so
- OK Parser: jsonc      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-jsonc/parser/jsonc.so
- OK Parser: jsonnet    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-jsonnet/parser/jsonnet.so
- OK Parser: julia      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-julia/parser/julia.so
- OK Parser: kdl        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-kdl/parser/kdl.so
- OK Parser: kotlin     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-kotlin/parser/kotlin.so
- OK Parser: lalrpop    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-lalrpop/parser/lalrpop.so
- OK Parser: latex      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-latex/parser/latex.so
- OK Parser: ledger     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ledger/parser/ledger.so
- OK Parser: llvm       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-llvm/parser/llvm.so
- OK Parser: lua        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-lua/parser/lua.so
- OK Parser: luadoc     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-luadoc/parser/luadoc.so
- OK Parser: luap       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-luap/parser/luap.so
- OK Parser: luau       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-luau/parser/luau.so
- OK Parser: m68k       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-m68k/parser/m68k.so
- OK Parser: make       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-make/parser/make.so
- OK Parser: markdown   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-markdown/parser/markdown.so
- OK Parser: markdown_inline ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-markdown_inline/parser/markdown_inline.so
- OK Parser: matlab     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-matlab/parser/matlab.so
- OK Parser: menhir     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-menhir/parser/menhir.so
- OK Parser: mermaid    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-mermaid/parser/mermaid.so
- OK Parser: meson      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-meson/parser/meson.so
- OK Parser: mlir       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-mlir/parser/mlir.so
- OK Parser: nickel     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-nickel/parser/nickel.so
- OK Parser: ninja      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ninja/parser/ninja.so
- OK Parser: nix        ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-nix/parser/nix.so
- OK Parser: norg       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-norg/parser/norg.so
- OK Parser: objc       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-objc/parser/objc.so
- OK Parser: ocaml      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ocaml/parser/ocaml.so
- OK Parser: ocaml_interface ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ocaml_interface/parser/ocaml_interface.so
- OK Parser: ocamllex   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ocamllex/parser/ocamllex.so
- OK Parser: odin       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-odin/parser/odin.so
- OK Parser: org        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-org/parser/org.so
- OK Parser: pascal     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-pascal/parser/pascal.so
- OK Parser: passwd     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-passwd/parser/passwd.so
- OK Parser: perl       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-perl/parser/perl.so
- OK Parser: php        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-php/parser/php.so
- OK Parser: phpdoc     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-phpdoc/parser/phpdoc.so
- OK Parser: pioasm     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-pioasm/parser/pioasm.so
- OK Parser: po         ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-po/parser/po.so
- OK Parser: poe_filter ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-poe_filter/parser/poe_filter.so
- OK Parser: pony       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-pony/parser/pony.so
- OK Parser: prisma     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-prisma/parser/prisma.so
- OK Parser: proto      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-proto/parser/proto.so
- OK Parser: prql       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-prql/parser/prql.so
- OK Parser: pug        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-pug/parser/pug.so
- OK Parser: puppet     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-puppet/parser/puppet.so
- OK Parser: python     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-python/parser/python.so
- OK Parser: ql         ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ql/parser/ql.so
- OK Parser: qmldir     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-qmldir/parser/qmldir.so
- OK Parser: qmljs      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-qmljs/parser/qmljs.so
- OK Parser: query      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-query/parser/query.so
- OK Parser: r          ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-r/parser/r.so
- OK Parser: racket     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-racket/parser/racket.so
- OK Parser: rasi       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-rasi/parser/rasi.so
- OK Parser: regex      ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-regex/parser/regex.so
- OK Parser: rego       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-rego/parser/rego.so
- OK Parser: rnoweb     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-rnoweb/parser/rnoweb.so
- OK Parser: ron        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ron/parser/ron.so
- OK Parser: rst        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-rst/parser/rst.so
- OK Parser: ruby       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ruby/parser/ruby.so
- OK Parser: rust       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-rust/parser/rust.so
- OK Parser: scala      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-scala/parser/scala.so
- OK Parser: scheme     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-scheme/parser/scheme.so
- OK Parser: scss       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-scss/parser/scss.so
- OK Parser: slint      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-slint/parser/slint.so
- OK Parser: smali      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-smali/parser/smali.so
- OK Parser: smithy     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-smithy/parser/smithy.so
- OK Parser: solidity   ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-solidity/parser/solidity.so
- OK Parser: sparql     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-sparql/parser/sparql.so
- OK Parser: sql        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-sql/parser/sql.so
- OK Parser: squirrel   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-squirrel/parser/squirrel.so
- OK Parser: starlark   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-starlark/parser/starlark.so
- OK Parser: supercollider ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-supercollider/parser/supercollider.so
- OK Parser: surface    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-surface/parser/surface.so
- OK Parser: svelte     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-svelte/parser/svelte.so
- OK Parser: swift      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-swift/parser/swift.so
- OK Parser: sxhkdrc    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-sxhkdrc/parser/sxhkdrc.so
- OK Parser: t32        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-t32/parser/t32.so
- OK Parser: tablegen   ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-tablegen/parser/tablegen.so
- OK Parser: teal       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-teal/parser/teal.so
- OK Parser: terraform  ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-terraform/parser/terraform.so
- OK Parser: thrift     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-thrift/parser/thrift.so
- OK Parser: tiger      ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-tiger/parser/tiger.so
- OK Parser: tlaplus    ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-tlaplus/parser/tlaplus.so
- OK Parser: todotxt    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-todotxt/parser/todotxt.so
- OK Parser: toml       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-toml/parser/toml.so
- OK Parser: tsx        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-tsx/parser/tsx.so
- OK Parser: turtle     ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-turtle/parser/turtle.so
- OK Parser: twig       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-twig/parser/twig.so
- OK Parser: typescript ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-typescript/parser/typescript.so
- OK Parser: ungrammar  ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-ungrammar/parser/ungrammar.so
- OK Parser: usd        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-usd/parser/usd.so
- OK Parser: uxntal     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-uxntal/parser/uxntal.so
- OK Parser: v          ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-v/parser/v.so
- OK Parser: vala       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-vala/parser/vala.so
- OK Parser: verilog    ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-verilog/parser/verilog.so
- OK Parser: vhs        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-vhs/parser/vhs.so
- OK Parser: vim        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-vim/parser/vim.so
- OK Parser: vimdoc     ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-vimdoc/parser/vimdoc.so
- OK Parser: vue        ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-vue/parser/vue.so
- OK Parser: wgsl       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-wgsl/parser/wgsl.so
- OK Parser: wgsl_bevy  ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-wgsl_bevy/parser/wgsl_bevy.so
- OK Parser: yaml       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-yaml/parser/yaml.so
- OK Parser: yang       ABI: 13, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-yang/parser/yang.so
- OK Parser: yuck       ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-yuck/parser/yuck.so
- OK Parser: zig        ABI: 14, path: /nix/store/jwfyx0j3aiavv16d9bmi16abmllwca98-vim-pack-dir/pack/myNeovimPackages/start/nvim-treesitter-grammar-zig/parser/zig.so
- OK Parser: c          ABI: 14, path: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/lib/nvim/parser/c.so
- OK Parser: lua        ABI: 14, path: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/lib/nvim/parser/lua.so
- OK Parser: query      ABI: 14, path: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/lib/nvim/parser/query.so
- OK Parser: vim        ABI: 14, path: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/lib/nvim/parser/vim.so
- OK Parser: vimdoc     ABI: 14, path: /nix/store/xlbdsj1c3wpcdgby160pi06iii44vg1i-neovim-unwrapped-0.9.1/lib/nvim/parser/vimdoc.so

relevant config:

vim.env.BAT_STYLE="git"
require('fzfx').setup({})
linrongbin16 commented 1 year ago

Oh, that's a stupid typo: "number" => "numbers".

Fixed in: #34 , please pull again and try.

nat-418 commented 1 year ago

still doesn't work

linrongbin16 commented 1 year ago

emmm, still the same error?

linrongbin16 commented 1 year ago

@nat-418 Forgot to tell you, vim.env.BAT_STYLE="git" is invalid, please use vim.env.BAT_STYLE="numbers". For now, you can actually delete the config vim.env.BAT_STYLE=xxx, this plugin should work out of box.

nat-418 commented 1 year ago

@nat-418 Forgot to tell you, vim.env.BAT_STYLE="git" is invalid, please use vim.env.BAT_STYLE="numbers". For now, you can actually delete the config vim.env.BAT_STYLE=xxx, this plugin should work out of box.

I did that, and the same error. I will check back on this issue in a day or so.

linrongbin16 commented 1 year ago

Hi @nat-418 , how about your issue now?

linrongbin16 commented 1 year ago

close for no response