Function: treesit-available-p
treesit-available-p is a function defined in treesit.c.
Signature
(treesit-available-p)
Documentation
Return non-nil if tree-sitter support is built-in and available.
Source Code
// Defined in /usr/src/emacs/src/treesit.c
{
#if HAVE_TREE_SITTER
return load_tree_sitter_if_necessary (false) ? Qt : Qnil;
#else
return Qnil;
#endif
}