Skip to content

Instantly share code, notes, and snippets.

View fabOnReact's full-sized avatar

Fabrizio Bertoglio fabOnReact

View GitHub Profile
@fabOnReact
fabOnReact / .ctags
Created August 19, 2020 20:26
ctags for kotlin, javascript and typescript
--langdef=typescript
--langdef=kotlin
--langmap=typescript:.ts.tsx
--langmap=kotlin:.kt.kts
--exclude=node_modules
--regex-typescript=/^[ \t]*(export[ \t]+([a-z]+[ \t]+)?)?class[ \t]+([a-zA-Z0-9_$]+)/\3/c,classes/
--regex-typescript=/^[ \t]*(declare[ \t]+)?namespace[ \t]+([a-zA-Z0-9_$]+)/\2/c,modules/
--regex-typescript=/^[ \t]*(export[ \t]+)?module[ \t]+([a-zA-Z0-9_$]+)/\2/n,modules/
--regex-typescript=/^[ \t]*(export[ \t]+)?(default[ \t]+)?(async[ \t]+)?function(\*)?[ \t]+([a-zA-Z0-9_$]+)/\5/f,functions/
--regex-typescript=/^[ \t]*export[ \t]+(var|let|const)[ \t]+([a-zA-Z0-9_$]+)/\2/v,variables/