WIP remove filename from editor
This commit is contained in:
parent
ae7c8571b4
commit
1ee0d2b459
@ -57,7 +57,6 @@ struct editorConfig
|
|||||||
int numrows;
|
int numrows;
|
||||||
erow *row;
|
erow *row;
|
||||||
int dirty;
|
int dirty;
|
||||||
char *filename;
|
|
||||||
char statusmsg[80];
|
char statusmsg[80];
|
||||||
time_t statusmsg_time;
|
time_t statusmsg_time;
|
||||||
bool running;
|
bool running;
|
||||||
@ -397,31 +396,10 @@ void editorOpen(const char *data)
|
|||||||
|
|
||||||
void editorSave()
|
void editorSave()
|
||||||
{
|
{
|
||||||
if (E.filename == NULL)
|
// int len;
|
||||||
{
|
// char *buf = editorRowsToString(&len);
|
||||||
E.filename = editorPrompt("Save as: %s (ESC to cancel)", NULL);
|
// free(buf);
|
||||||
if (E.filename == NULL)
|
// editorSetStatusMessage("Saved");
|
||||||
{
|
|
||||||
editorSetStatusMessage("Save aborted");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int len;
|
|
||||||
char *buf = editorRowsToString(&len);
|
|
||||||
|
|
||||||
std::ofstream file(E.filename, std::ios::binary | std::ios::out);
|
|
||||||
if (!file.is_open())
|
|
||||||
{
|
|
||||||
free(buf);
|
|
||||||
editorSetStatusMessage("Can't save! I/O error");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
file.write(buf, len);
|
|
||||||
file.close();
|
|
||||||
|
|
||||||
free(buf);
|
|
||||||
editorSetStatusMessage("Saved to disk");
|
|
||||||
E.dirty = 0;
|
E.dirty = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -632,7 +610,7 @@ void editorDrawStatusBar(struct abuf *ab)
|
|||||||
abAppend(ab, "\x1b[7m", 4);
|
abAppend(ab, "\x1b[7m", 4);
|
||||||
char status[80], rstatus[80];
|
char status[80], rstatus[80];
|
||||||
int len = snprintf(status, sizeof(status), "%.20s - %d lines %s",
|
int len = snprintf(status, sizeof(status), "%.20s - %d lines %s",
|
||||||
E.filename ? E.filename : "[No Name]", E.numrows,
|
"[No Name]", E.numrows,
|
||||||
E.dirty ? "(modified)" : "");
|
E.dirty ? "(modified)" : "");
|
||||||
int rlen = snprintf(rstatus, sizeof(rstatus), "%s | %d/%d",
|
int rlen = snprintf(rstatus, sizeof(rstatus), "%s | %d/%d",
|
||||||
"no ft", E.cy + 1, E.numrows);
|
"no ft", E.cy + 1, E.numrows);
|
||||||
@ -907,7 +885,6 @@ void initEditor()
|
|||||||
E.numrows = 0;
|
E.numrows = 0;
|
||||||
E.row = NULL;
|
E.row = NULL;
|
||||||
E.dirty = 0;
|
E.dirty = 0;
|
||||||
E.filename = NULL;
|
|
||||||
E.statusmsg[0] = '\0';
|
E.statusmsg[0] = '\0';
|
||||||
E.statusmsg_time = 0;
|
E.statusmsg_time = 0;
|
||||||
E.running = true;
|
E.running = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user