aboutsummaryrefslogtreecommitdiff
path: root/src/tree_sitter/lib.c
diff options
context:
space:
mode:
authorThomas Vigouroux <tomvig38@gmail.com>2020-11-03 13:36:25 +0100
committerGitHub <noreply@github.com>2020-11-03 13:36:25 +0100
commita766695c8b2c0b53b0b9f9f17bcff117183b21f9 (patch)
treed92dde6246c41e43432ca169e3d1ca3f4af290b7 /src/tree_sitter/lib.c
parenta061d53e18168130aad537a9e8012390834ff8c2 (diff)
parent8e73cf67314095fe7240be5e57232ea3d20aac94 (diff)
downloadrneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.tar.gz
rneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.tar.bz2
rneovim-a766695c8b2c0b53b0b9f9f17bcff117183b21f9.zip
Merge pull request #12931 from vigoux/treesitter-bundled
bundle: move tree-sitter as a bundled dep
Diffstat (limited to 'src/tree_sitter/lib.c')
-rw-r--r--src/tree_sitter/lib.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/tree_sitter/lib.c b/src/tree_sitter/lib.c
deleted file mode 100644
index 289d32f4c5..0000000000
--- a/src/tree_sitter/lib.c
+++ /dev/null
@@ -1,17 +0,0 @@
-// The Tree-sitter library can be built by compiling this one source file.
-//
-// The following directories must be added to the include path:
-// - include
-
-#define _POSIX_C_SOURCE 200112L
-
-#include "./get_changed_ranges.c"
-#include "./language.c"
-#include "./lexer.c"
-#include "./node.c"
-#include "./parser.c"
-#include "./query.c"
-#include "./stack.c"
-#include "./subtree.c"
-#include "./tree_cursor.c"
-#include "./tree.c"