aboutsummaryrefslogtreecommitdiff
path: root/vis-core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vis-core.h')
-rw-r--r--vis-core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vis-core.h b/vis-core.h
index 842c753..f6999dc 100644
--- a/vis-core.h
+++ b/vis-core.h
@@ -116,6 +116,7 @@ struct File { /* shared state among windows displaying the same file */
struct stat stat; /* filesystem information when loaded/saved, used to detect changes outside the editor */
int refcount; /* how many windows are displaying this file? (always >= 1) */
Mark marks[VIS_MARK_INVALID]; /* marks which are shared across windows */
+ enum TextSaveMethod save_method; /* whether the file is saved using rename(2) or overwritten */
File *next, *prev;
};