2018-09-17 18:47:06 +00:00
|
|
|
/*
|
|
|
|
4coder_combined_write_commands.cpp - Commands for writing text specialized for particular contexts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
struct Snippet{
|
|
|
|
char *name;
|
|
|
|
char *text;
|
2019-02-26 23:17:53 +00:00
|
|
|
i32 cursor_offset;
|
|
|
|
i32 mark_offset;
|
2018-09-17 18:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Snippet_Array{
|
|
|
|
Snippet *snippets;
|
2019-02-26 23:17:53 +00:00
|
|
|
i32 count;
|
2018-09-17 18:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|