feat(emacs-pkgs/treecrumbs): tree-sitter based breadcrumbs

Adds a new 'treecrumbs' Emacs package that allows displaying fast,
tree-sitter based breadcrumbs. The initial version only supports
YAML (which is what I needed this for!).

The package is documented, please go read the code and comments for
more information.

I assign copyright over this package to the FSF, paperwork is on file.
This means that I can only accept contributions from people with the
right paperwork. If this package ends up being useful, I intend to
eventually submit it to GNU Emacs.

Change-Id: If1297a080f63f402f83b6cc57fa7c970d32d3695
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11104
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2024-03-09 00:38:40 +03:00 committed by clbot
parent 5ce76a1bae
commit 0be7b938c2
2 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ depot, ... }:
depot.tools.emacs-pkgs.buildEmacsPackage {
pname = "treecrumbs";
version = "1.0";
src = ./treecrumbs.el;
}