2011-09-30 21:16:23 +02:00
|
|
|
#ifndef filters_hh_INCLUDED
|
|
|
|
#define filters_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <boost/regex.hpp>
|
|
|
|
#include "display_buffer.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
void colorize_regex(DisplayBuffer& display_buffer,
|
|
|
|
const boost::regex& ex, Color color);
|
|
|
|
|
2011-10-03 16:30:14 +02:00
|
|
|
void colorize_cplusplus(DisplayBuffer& display_buffer);
|
|
|
|
|
2011-09-30 21:16:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // filters_hh_INCLUDED
|