From 625244ab41640ec43d2621465ace81b4c242385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 22 Apr 2015 12:45:52 +0200 Subject: Rename window.[ch] to view.[ch] --- editor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editor.h') 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 { -- cgit v1.2.3