0.3.1 • Published 8 months ago

purstags v0.3.1

Weekly downloads
-
License
BSD-3-Clause
Repository
-
Last release
8 months ago

purescript-tags

A command line tool for generating Emacs tags for PureScript code independent from the `docs` component of the PureScript compiler. Instead, this project makes use of the language-cst-parser package to parse source files into their CST representation and into Emacs tags.

Usage

From the root of the project to create tags for:

node ~/projects/purescript-tags/dist/index.js -a -e "src/**/*.purs"

Notes

To navigate to qualified tags you may need in your .emacs file:

(modify-syntax-entry ?. "." purescript-mode-syntax-table)

(source)