diff options
author | Ben Sima <ben@bsima.me> | 2024-06-12 16:07:50 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 10:06:42 -0500 |
commit | 209fa4ec72c8719d82e049c5d10a06f0a679671c (patch) | |
tree | a913643ad084716c9504dbb0427f129795b0d8ad /.ctags.d/nix.ctags | |
parent | 4bbbd9ded5a88a2d0681aab86892e1058b538467 (diff) |
Followup changes to ctags
These were just hanging around as I was doing other things. Included in this
commit are the following:
- Configure it in .ctags.d to only index the languages I use
- Add support for sources listed in Sources.json
- Fix broken link to inspekt3d repo
Diffstat (limited to '.ctags.d/nix.ctags')
-rw-r--r-- | .ctags.d/nix.ctags | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.ctags.d/nix.ctags b/.ctags.d/nix.ctags new file mode 100644 index 0000000..7a12815 --- /dev/null +++ b/.ctags.d/nix.ctags @@ -0,0 +1,14 @@ +--langdef=nix +--languages=+nix +--langmap=nix:.nix +# packages are "name = <tag>" or "pname = <tag>" +--kinddef-nix=p,package,package definition +--regex-nix=/[p?]name\s*=\s*"(\w+)"/\1/p/ +# functions have args, so have a : right of the = +--kinddef-nix=f,function,function definition +--regex-nix=/(\S+)\s*=\s+\w+:/\1/f/ +# attrs just have =, but only index if they have >=4 chars +--kinddef-nix=a,attr,attribute definition +--regex-nix=/\s+([a-zA-Z_0-9-]{4,20})\s*=/\1/a/ +# nixpkgs, ignore tests +--exclude=*pkgs/test* |