2018-10-19 13:24:58 +02:00
|
|
|
#ifndef _HL_H
|
|
|
|
#define _HL_H
|
|
|
|
|
2018-10-25 12:17:28 +02:00
|
|
|
#include "fn.h" // for erow
|
|
|
|
|
|
|
|
|
2018-10-19 13:24:58 +02:00
|
|
|
int is_separator(int c);
|
|
|
|
void editorUpdateSyntax(erow *row);
|
|
|
|
int editorSyntaxToColor(int hl);
|
|
|
|
void editorSelectSyntaxHighlight();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|