|
Assembled 2
A column based text editor
|
#include <editor.h>
Public Attributes | |
| int | cy |
| 0-based index of current line. | |
| int | selected_buffers |
| Number of buffers selected. | |
| int | active_buffer_idx |
| 0-based index of the active buffer. | |
| int | buffer_count |
| Number of buffers present in buffers list (as_ctx.col_descs[as_ctx.col_desc_i].column_count). | |
| int | load_offset |
| The offset within. | |
| char * | name |
| Path to the file. | |
| FILE * | file |
| Pointer to the open file. | |
| struct AS_TextBuf ** | buffers |
| Array of pointers to all buffers. | |
| struct AS_TextBuf * | active_buffer |
| The buffer which is currently selected by the user. | |
| struct AS_TextFile * | next |
| Pointer to the next struct AS_TextFile, NULL if this is the last open file. | |
| struct AS_TextFile * | prev |
| Pointer to the previous struct AS_TextFile, NULL if this is the first open file. | |
Describes a single open file.