aboutsummaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-04-11 10:31:28 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-04-11 10:31:28 +0200
commit3f3125ee103401cf561b38b00f9b34187b8d6a52 (patch)
tree5d7ac85675550ee40679a90d1beb9c57c7d0ab67 /editor.h
parent9ae7a429320e7db76743448e7f3b216003de8755 (diff)
downloadvis-3f3125ee103401cf561b38b00f9b34187b8d6a52.tar.gz
vis-3f3125ee103401cf561b38b00f9b34187b8d6a52.tar.xz
Eliminate global state for :set options
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor.h b/editor.h
index dd242ec..771f8f8 100644
--- a/editor.h
+++ b/editor.h
@@ -122,6 +122,7 @@ struct Editor {
bool expandtab; /* whether typed tabs should be converted to spaces */
bool autoindent; /* whether indentation should be copied from previous line on newline */
Map *cmds; /* ":"-commands, used for unique prefix queries */
+ Map *options; /* ":set"-options */
};
Editor *editor_new(Ui*);