Author Topic: color-coding Makefile  (Read 5279 times)

afflictedd2

  • Guest
color-coding Makefile
« on: September 07, 2008, 10:40:22 PM »
Hi guys,

Does anyone know how to import the color coding that emacs uses for Makefiles into Slickedit. I understand that one can import a VLX file, but where do I find this file. Or Anyone know of a better color-coding for Makefiles other than the one that Slick-edit comes with.

Thanks in advance,

Ed.

hs2

  • Senior Community Member
  • Posts: 2761
  • Hero Points: 292
Re: color-coding Makefile
« Reply #1 on: September 07, 2008, 10:52:34 PM »
See here where to find your user.vlx file.
I've added just a few things to my Makefile lexer:
Code: [Select]
[Makefile]
idchars=a-zA-Z 0-9_
case-sensitive=y
styles=bquote nonumbers dqbackslashml sqbackslash sqbackslashml
keywords= addprefix addsuffix basename define dir else enddef endif export
keywords= filter filter-out findstring firstword foreach if ifdef ifeq ifndef
keywords= ifneq include join notdir origin override patsubst shell sort
keywords= strip subst suffix unexport vpath wildcard word words
punctuation= - ! # $ % & ( ) * , . / : ; ? @ [ ] ^ ` { | } ~ + < = >
libkeywords= echo exec
operators= $ := ?= +=
linecomment=#

HS2