kakoune/src/debug.hh
Maxime Coste a19f4f059d Debug: add a write_debug function
write_debug writes in a Scratch buffer named '*debug*', so that debug
messages are accessibles from within kakoune
2011-10-07 14:16:38 +00:00

14 lines
167 B
C++

#ifndef debug_hh_INCLUDED
#define debug_hh_INCLUDED
#include <string>
namespace Kakoune
{
void write_debug(const std::string& str);
}
#endif // debug_hh_INCLUDED