aboutsummaryrefslogtreecommitdiff
path: root/editor.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-04-22 12:45:52 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-04-22 12:45:52 +0200
commit625244ab41640ec43d2621465ace81b4c242385b (patch)
treec3130b06d1fcb2994465f9bf9de4368cbb691363 /editor.h
parentacb864cdc5b24e54b0b2b08e06d706ccaa3fa4c1 (diff)
downloadvis-625244ab41640ec43d2621465ace81b4c242385b.tar.gz
vis-625244ab41640ec43d2621465ace81b4c242385b.tar.xz
Rename window.[ch] to view.[ch]
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor.h b/editor.h
index e2684a0..0bff84e 100644
--- a/editor.h
+++ b/editor.h
@@ -9,7 +9,7 @@ typedef struct Editor Editor;
typedef struct Win Win;
#include "ui.h"
-#include "window.h"
+#include "view.h"
#include "register.h"
#include "macro.h"
#include "syntax.h"
@@ -79,7 +79,7 @@ typedef struct {
typedef struct {
size_t (*cmd)(const Arg*); /* a custom movement based on user input from vis.c */
- size_t (*view)(View*); /* a movement based on current window content from window.h */
+ size_t (*view)(View*); /* a movement based on current window content from view.h */
size_t (*txt)(Text*, size_t pos); /* a movement form text-motions.h */
size_t (*file)(File*, size_t pos);
enum {