this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Stowize ctags

+4 -10
-9
ctags/.ctags.d/Makefile
··· 1 - PWD = $(shell pwd) 2 - 3 - install: 4 - $(LN) ${PWD} ${HOME}/.ctags.d 5 - 6 - clean: 7 - $(RM) ${HOME}/.ctags.d 8 - 9 - .PHONY: install clean
+1
ctags/.ctags.d/elixir.ctags
··· 6 6 --regex-Elixir=/^[ \t]*defexception[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/e,exceptions,exceptions (defexception ...)/ 7 7 --regex-Elixir=/^[ \t]*defimpl[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/i,implementations,implementations (defimpl ...)/ 8 8 --regex-Elixir=/^[ \t]*defmacro(p?)[ \t]+([a-z_][a-zA-Z0-9_?!]*)\(/\2/a,macros,macros (defmacro ...)/ 9 + --regex-Elixir=/^[ \t]*defguard(p?)[ \t]+([a-z_][a-zA-Z0-9_?!]*)\(/\2/g,guards,guards (defguard ...)/ 9 10 --regex-Elixir=/^[ \t]*defmacro(p?)[ \t]+([a-zA-Z0-9_?!]+)?[ \t]+([^ \tA-Za-z0-9_]+)[ \t]*[a-zA-Z0-9_!?!]/\3/o,operators,operators (e.g. "defmacro a <<< b")/ 10 11 --regex-Elixir=/^[ \t]*defmodule[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/m,modules,modules (defmodule ...)/ 11 12 --regex-Elixir=/^[ \t]*defprotocol[ \t]+([A-Z][a-zA-Z0-9_]*\.)*([A-Z][a-zA-Z0-9_?!]*)/\2/p,protocols,protocols (defprotocol...)/
+2
ctags/.ctags.d/excludes.ctags
··· 1 1 --exclude=.git 2 + --exclude=.pijul 3 + --exclude=.hg 2 4 --exclude=log 3 5 --exclude=tmp 4 6
+1 -1
ctags/.ctags.d/rust.ctags
··· 1 - --exclude=target 1 + --exclude=target/*