From 8180681c4f132ff2f7ebf03f91c4b913ec7cdd74 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Thu, 26 Oct 2023 19:25:05 +0530 Subject: [PATCH] Script to update queries This was previous in the GH action, just copying it here for easier access. --- scripts/get-neovim-queries | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/get-neovim-queries diff --git a/scripts/get-neovim-queries b/scripts/get-neovim-queries new file mode 100755 index 0000000..46f9723 --- /dev/null +++ b/scripts/get-neovim-queries @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +rm -rf /tmp/nts +git clone --depth 1 https://github.com/nvim-treesitter/nvim-treesitter-textobjects /tmp/nts +rm -r queries && cp -r /tmp/nts/queries . +./scripts/fix-queries \ No newline at end of file