ze
Loading...
Searching...
No Matches
edit.h
Go to the documentation of this file.
1
8#pragma once
9
10#include "ze.h"
11
12void editorInsertChar(int c);
13void editorInsertTimestamp(void);
14void editorInsertNewline(void);
15void editorDelChar(void);
16
void editorInsertTimestamp(void)
Insert a formatted local timestamp string at the cursor.
Definition edit.c:46
void editorInsertNewline(void)
Insert a newline at the cursor position, splitting the line if needed.
Definition edit.c:70
void editorInsertChar(int c)
Insert a character at the current cursor position.
Definition edit.c:28
void editorDelChar(void)
Delete the character left of the cursor or join with previous row.
Definition edit.c:96
Core editor types, macros, and global state.