a19f4f059d
write_debug writes in a Scratch buffer named '*debug*', so that debug messages are accessibles from within kakoune
14 lines
167 B
C++
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
|