textmate / make.tmbundle

TextMate support for Make

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sugestion: phony targets shoud be colored with different color

yukulele opened this issue · comments

in this example, "build" in line 1 should not have the same color as "style.css" because it's a phony target

build:
    npm run build

style.css: style.scss
    sass style.scss

.PHONY: build

This should help to check if a target is not in .PHONY

The current grammar system is not capable of supporting this.

A dedicated parser for make files would be required, but there is currently no API inplace for this.

Closing issue due to lack of feasibility, but not a bad idea :)