refactor(misc1): move out high-level input functions to a new file: input.c

Possibly dialog code is messages.c could be moved here as well.
misc1.c is now empty, so delete it.
This commit is contained in:
Björn Linse
2021-12-10 18:05:49 +01:00
parent dc37beed75
commit df54d82b7c
64 changed files with 67 additions and 167 deletions

View File

@@ -39,6 +39,7 @@
#include "nvim/globals.h"
#include "nvim/hardcopy.h"
#include "nvim/if_cscope.h"
#include "nvim/input.h"
#include "nvim/keymap.h"
#include "nvim/lua/executor.h"
#include "nvim/main.h"
@@ -48,7 +49,6 @@
#include "nvim/memory.h"
#include "nvim/menu.h"
#include "nvim/message.h"
#include "nvim/misc1.h"
#include "nvim/mouse.h"
#include "nvim/move.h"
#include "nvim/normal.h"