cl-tree-sitter
cl-tree-sitter copied to clipboard
Tree-Sitter bindings for Common Lisp
this package crashes when register language is called on a tree-sitter language shared library with the prefix lib. This can be avoided if the fn-name keyword parameter is used to...
When I clone and build grammars I have to rename the shared libraries from libtree-sitter-\.so to tree-sitter-\.so otherwise cffi can not find the functions to execute.   
This helps in case packages are installed on non-standard places (e.g. using nix). This is an example of how to glue things together: ```lisp (push "../cl-tree-sitter/" ql:*local-project-directories*) (push *default-pathname-defaults* ql:*local-project-directories*)...