aboutsummaryrefslogtreecommitdiff
path: root/cmake.deps/cmake
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-07-09 15:26:48 +0200
committerGitHub <noreply@github.com>2024-07-09 15:26:48 +0200
commit51d85f7ea58bd715cec1fdfa8d19826cafe7185d (patch)
tree2fb27e61fe757ecfcb0c73855a1d103f6384af97 /cmake.deps/cmake
parent487f44a6c14f83a4f80a4d03a4a8c16ad690927a (diff)
downloadrneovim-51d85f7ea58bd715cec1fdfa8d19826cafe7185d.tar.gz
rneovim-51d85f7ea58bd715cec1fdfa8d19826cafe7185d.tar.bz2
rneovim-51d85f7ea58bd715cec1fdfa8d19826cafe7185d.zip
build(deps): drop unused bundled bash, python parsers and queries
Problem: Neovim bundles treesitter parsers for bash and python but does not use them by default. This dilutes the messaging about the bundled parsers being required for functionality or reasonable out-of-the-box experience. It also increases the risk of query incompatibilities for no gain. Solution: Stop bundling bash and python parser and queries.
Diffstat (limited to 'cmake.deps/cmake')
-rw-r--r--cmake.deps/cmake/BuildTreesitterParsers.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake.deps/cmake/BuildTreesitterParsers.cmake b/cmake.deps/cmake/BuildTreesitterParsers.cmake
index 837d075d20..060447e6fe 100644
--- a/cmake.deps/cmake/BuildTreesitterParsers.cmake
+++ b/cmake.deps/cmake/BuildTreesitterParsers.cmake
@@ -28,7 +28,7 @@ function(BuildTSParser)
${EXTERNALPROJECT_OPTIONS})
endfunction()
-foreach(lang c lua vim vimdoc query python bash)
+foreach(lang c lua vim vimdoc query)
BuildTSParser(LANG ${lang})
endforeach()
BuildTSParser(LANG markdown CMAKE_FILE MarkdownParserCMakeLists.txt)