gitextract_1hjhbj7p/ ├── .github/ │ └── workflows/ │ ├── test.yaml │ └── update-queries.yaml ├── .gitignore ├── AGENTS.md ├── Cask ├── Eask ├── LICENSE ├── Makefile ├── README.md ├── additional-queries/ │ ├── README.md │ ├── c/ │ │ └── textobjects.scm │ ├── go/ │ │ └── textobjects.scm │ ├── python/ │ │ └── textobjects.scm │ └── rust/ │ └── textobjects.scm ├── converter/ │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── docs/ │ └── updating-neovim-queries.md ├── evil-textobj-tree-sitter-core.el ├── evil-textobj-tree-sitter-query-test.el ├── evil-textobj-tree-sitter-test.el ├── evil-textobj-tree-sitter-thing-at-point.el ├── evil-textobj-tree-sitter.el ├── fixtures/ │ ├── bash/ │ │ └── textobjects.scm │ ├── javascript/ │ │ └── textobjects.scm │ ├── tsx/ │ │ └── textobjects.scm │ ├── typescript/ │ │ └── textobjects.scm │ └── zig/ │ └── textobjects.scm ├── flake.nix ├── queries/ │ ├── apex/ │ │ └── textobjects.scm │ ├── astro/ │ │ └── textobjects.scm │ ├── bash/ │ │ └── textobjects.scm │ ├── bibtex/ │ │ └── textobjects.scm │ ├── c/ │ │ └── textobjects.scm │ ├── c_sharp/ │ │ └── textobjects.scm │ ├── cmake/ │ │ └── textobjects.scm │ ├── cpp/ │ │ └── textobjects.scm │ ├── css/ │ │ └── textobjects.scm │ ├── cuda/ │ │ └── textobjects.scm │ ├── dart/ │ │ └── textobjects.scm │ ├── dockerfile/ │ │ └── textobjects.scm │ ├── ecma/ │ │ └── textobjects.scm │ ├── elixir/ │ │ └── textobjects.scm │ ├── elm/ │ │ └── textobjects.scm │ ├── enforce/ │ │ └── textobjects.scm │ ├── fennel/ │ │ └── textobjects.scm │ ├── fish/ │ │ └── textobjects.scm │ ├── foam/ │ │ └── textobjects.scm │ ├── gdscript/ │ │ └── textobjects.scm │ ├── git_config/ │ │ └── textobjects.scm │ ├── gleam/ │ │ └── textobjects.scm │ ├── glimmer/ │ │ └── textobjects.scm │ ├── glsl/ │ │ └── textobjects.scm │ ├── go/ │ │ └── textobjects.scm │ ├── hack/ │ │ └── textobjects.scm │ ├── haskell/ │ │ └── textobjects.scm │ ├── hcl/ │ │ └── textobjects.scm │ ├── heex/ │ │ └── textobjects.scm │ ├── hlsl/ │ │ └── textobjects.scm │ ├── html/ │ │ └── textobjects.scm │ ├── inko/ │ │ └── textobjects.scm │ ├── java/ │ │ └── textobjects.scm │ ├── javascript/ │ │ └── textobjects.scm │ ├── json/ │ │ └── textobjects.scm │ ├── jsx/ │ │ └── textobjects.scm │ ├── julia/ │ │ └── textobjects.scm │ ├── kotlin/ │ │ └── textobjects.scm │ ├── latex/ │ │ └── textobjects.scm │ ├── lua/ │ │ └── textobjects.scm │ ├── markdown/ │ │ └── textobjects.scm │ ├── matlab/ │ │ └── textobjects.scm │ ├── nasm/ │ │ └── textobjects.scm │ ├── nim/ │ │ └── textobjects.scm │ ├── nix/ │ │ └── textobjects.scm │ ├── ocaml/ │ │ └── textobjects.scm │ ├── odin/ │ │ └── textobjects.scm │ ├── perl/ │ │ └── textobjects.scm │ ├── php/ │ │ └── textobjects.scm │ ├── php_only/ │ │ └── textobjects.scm │ ├── python/ │ │ └── textobjects.scm │ ├── ql/ │ │ └── textobjects.scm │ ├── query/ │ │ └── textobjects.scm │ ├── r/ │ │ └── textobjects.scm │ ├── readline/ │ │ └── textobjects.scm │ ├── rst/ │ │ └── textobjects.scm │ ├── ruby/ │ │ └── textobjects.scm │ ├── rust/ │ │ └── textobjects.scm │ ├── scala/ │ │ └── textobjects.scm │ ├── scss/ │ │ └── textobjects.scm │ ├── slang/ │ │ └── textobjects.scm │ ├── supercollider/ │ │ └── textobjects.scm │ ├── svelte/ │ │ └── textobjects.scm │ ├── swift/ │ │ └── textobjects.scm │ ├── systemverilog/ │ │ └── textobjects.scm │ ├── tact/ │ │ └── textobjects.scm │ ├── terraform/ │ │ └── textobjects.scm │ ├── toml/ │ │ └── textobjects.scm │ ├── tsx/ │ │ └── textobjects.scm │ ├── twig/ │ │ └── textobjects.scm │ ├── typescript/ │ │ └── textobjects.scm │ ├── v/ │ │ └── textobjects.scm │ ├── verilog/ │ │ └── textobjects.scm │ ├── vim/ │ │ └── textobjects.scm │ ├── vue/ │ │ └── textobjects.scm │ ├── wgsl/ │ │ └── textobjects.scm │ ├── wgsl_bevy/ │ │ └── textobjects.scm │ ├── yaml/ │ │ └── textobjects.scm │ ├── zig/ │ │ └── textobjects.scm │ └── zsh/ │ └── textobjects.scm ├── scripts/ │ ├── append-additional-helix-queries │ ├── check-available │ ├── fix-queries │ ├── get-helix-queries │ └── get-neovim-queries └── treesit-queries/ ├── _jsx/ │ └── textobjects.scm ├── _typescript/ │ └── textobjects.scm ├── ada/ │ └── textobjects.scm ├── adl/ │ └── textobjects.scm ├── amber/ │ └── textobjects.scm ├── awk/ │ └── textobjects.scm ├── bash/ │ └── textobjects.scm ├── basic/ │ └── textobjects.scm ├── blade/ │ └── textobjects.scm ├── c/ │ └── textobjects.scm ├── c-sharp/ │ └── textobjects.scm ├── caddyfile/ │ └── textobjects.scm ├── cairo/ │ └── textobjects.scm ├── clojure/ │ └── textobjects.scm ├── cmake/ │ └── textobjects.scm ├── codeql/ │ └── textobjects.scm ├── cpp/ │ └── textobjects.scm ├── cross-config/ │ └── textobjects.scm ├── crystal/ │ └── textobjects.scm ├── cylc/ │ └── textobjects.scm ├── d/ │ └── textobjects.scm ├── dart/ │ └── textobjects.scm ├── dhall/ │ └── textobjects.scm ├── docker-bake/ │ └── textobjects.scm ├── docker-compose/ │ └── textobjects.scm ├── dockerfile/ │ └── textobjects.scm ├── doxyfile/ │ └── textobjects.scm ├── earthfile/ │ └── textobjects.scm ├── ecma/ │ └── textobjects.scm ├── eiffel/ │ └── textobjects.scm ├── elixir/ │ └── textobjects.scm ├── elm/ │ └── textobjects.scm ├── env/ │ └── textobjects.scm ├── erlang/ │ └── textobjects.scm ├── fga/ │ └── textobjects.scm ├── fish/ │ └── textobjects.scm ├── freebasic/ │ └── textobjects.scm ├── gas/ │ └── textobjects.scm ├── gdscript/ │ └── textobjects.scm ├── git-cliff-config/ │ └── textobjects.scm ├── git-commit/ │ └── textobjects.scm ├── git-config/ │ └── textobjects.scm ├── github-action/ │ └── textobjects.scm ├── gitlab-ci/ │ └── textobjects.scm ├── gjs/ │ └── textobjects.scm ├── gleam/ │ └── textobjects.scm ├── glsl/ │ └── textobjects.scm ├── go/ │ └── textobjects.scm ├── godot-resource/ │ └── textobjects.scm ├── graphql/ │ └── textobjects.scm ├── gren/ │ └── textobjects.scm ├── gts/ │ └── textobjects.scm ├── haskell/ │ └── textobjects.scm ├── hcl/ │ └── textobjects.scm ├── heex/ │ └── textobjects.scm ├── hocon/ │ └── textobjects.scm ├── html/ │ └── textobjects.scm ├── hurl/ │ └── textobjects.scm ├── inko/ │ └── textobjects.scm ├── java/ │ └── textobjects.scm ├── javascript/ │ └── textobjects.scm ├── jjconfig/ │ └── textobjects.scm ├── jq/ │ └── textobjects.scm ├── json/ │ └── textobjects.scm ├── json-ld/ │ └── textobjects.scm ├── json5/ │ └── textobjects.scm ├── jsonc/ │ └── textobjects.scm ├── jsx/ │ └── textobjects.scm ├── julia/ │ └── textobjects.scm ├── just/ │ └── textobjects.scm ├── kdl/ │ └── textobjects.scm ├── kotlin/ │ └── textobjects.scm ├── koto/ │ └── textobjects.scm ├── latex/ │ └── textobjects.scm ├── llvm/ │ └── textobjects.scm ├── llvm-mir/ │ └── textobjects.scm ├── lua/ │ └── textobjects.scm ├── luau/ │ └── textobjects.scm ├── mail/ │ └── textobjects.scm ├── matlab/ │ └── textobjects.scm ├── miseconfig/ │ └── textobjects.scm ├── mojo/ │ └── textobjects.scm ├── nasm/ │ └── textobjects.scm ├── nestedtext/ │ └── textobjects.scm ├── nim/ │ └── textobjects.scm ├── nix/ │ └── textobjects.scm ├── nu/ │ └── textobjects.scm ├── odin/ │ └── textobjects.scm ├── ohm/ │ └── textobjects.scm ├── opencl/ │ └── textobjects.scm ├── pascal/ │ └── textobjects.scm ├── penrose/ │ └── textobjects.scm ├── perl/ │ └── textobjects.scm ├── pest/ │ └── textobjects.scm ├── php/ │ └── textobjects.scm ├── picat/ │ └── textobjects.scm ├── pkgbuild/ │ └── textobjects.scm ├── po/ │ └── textobjects.scm ├── ponylang/ │ └── textobjects.scm ├── prisma/ │ └── textobjects.scm ├── properties/ │ └── textobjects.scm ├── protobuf/ │ └── textobjects.scm ├── purescript/ │ └── textobjects.scm ├── python/ │ └── textobjects.scm ├── qml/ │ └── textobjects.scm ├── rescript/ │ └── textobjects.scm ├── robots.txt/ │ └── textobjects.scm ├── rshtml/ │ └── textobjects.scm ├── ruby/ │ └── textobjects.scm ├── rust/ │ └── textobjects.scm ├── rust-format-args-macro/ │ └── textobjects.scm ├── sage/ │ └── textobjects.scm ├── scala/ │ └── textobjects.scm ├── scheme/ │ └── textobjects.scm ├── shellcheckrc/ │ └── textobjects.scm ├── slang/ │ └── textobjects.scm ├── slint/ │ └── textobjects.scm ├── solidity/ │ └── textobjects.scm ├── sourcepawn/ │ └── textobjects.scm ├── sql/ │ └── textobjects.scm ├── starlark/ │ └── textobjects.scm ├── sway/ │ └── textobjects.scm ├── swift/ │ └── textobjects.scm ├── tablegen/ │ └── textobjects.scm ├── tact/ │ └── textobjects.scm ├── textproto/ │ └── textobjects.scm ├── tilt/ │ └── textobjects.scm ├── toml/ │ └── textobjects.scm ├── tsx/ │ └── textobjects.scm ├── typescript/ │ └── textobjects.scm ├── typespec/ │ └── textobjects.scm ├── unison/ │ └── textobjects.scm ├── v/ │ └── textobjects.scm ├── vala/ │ └── textobjects.scm ├── verilog/ │ └── textobjects.scm ├── wesl/ │ └── textobjects.scm ├── wgsl/ │ └── textobjects.scm ├── woodpecker-ci/ │ └── textobjects.scm ├── wren/ │ └── textobjects.scm ├── xml/ │ └── textobjects.scm ├── yaml/ │ └── textobjects.scm └── zig/ └── textobjects.scm