easyVim  1.0
a simple vim-like text editor
config.hpp
Go to the documentation of this file.
1 
7 #ifndef EV_CONFIG_HPP
8 #define EV_CONFIG_HPP
9 
10 #define EV_VERSION "1.0.0"
11 
12 #include "core/core.hpp"
13 #include "encrypt/encrypt.hpp"
14 #include "instructions/inst.hpp"
16 #include "instructions/inst_operation.hpp"
17 #include "utils/parser.hpp"
18 
19 #include <vector>
20 #include <string>
21 #include <algorithm>
22 
23 
24 #define EV_F(n) n+264
25 #define EV_Esc 27
26 #define EV_Enter 10
27 #define EV_Tab 9
28 #define EV_Backspace 263
29 #define EV_Delete 330
30 #define EV_LEFT 260
31 #define EV_RIGHT 261
32 #define EV_UP 259
33 #define EV_DOWN 258
34 
35 #define INIT_LINE 0
36 #define INIT_COL 5
37 
38 
39 #endif
easyVim核心模块
easyVim加密解密模块
easyVim指令模块
easyVim指令模块头文件
解析命令行参数