I took a leap and started my journey with CM6. Implemented my own language pack (lezer parser is magical!), found an AST builder for Lua and now I would like to add lint errors in the gutter and maybe inline too as seen in this example:
https://codemirror.net/demo/lint.html
Checked the source for the above demo and the doc.addLineWidget
seem to be not available in CM6. Also didnt’ find a way to use doc.setGutterMarker
, it would be cool to update a gutter line programatically (based on the AST tree built from LUA).
Checked out this thread too for inspiration, but honestly I feel stuck. Any pointers appreciated.