diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-03-16 09:57:39 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-03-16 09:57:39 +0000 |
| commit | 5f7464d90d0bfe641dd2c7bbbca6e78d92d9d818 (patch) | |
| tree | 2f83259b53104545893c7e59f7a96d04e037278e /src/main.cc | |
| parent | 7eaa05845043420c8f8c58932667b71b6784714a (diff) | |
Try to clean up option include a bit
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main.cc b/src/main.cc index 426e7809..2c6b996d 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,6 +1,6 @@ #include "assert.hh" -#include "buffer.hh" #include "backtrace.hh" +#include "buffer.hh" #include "buffer_manager.hh" #include "buffer_utils.hh" #include "client_manager.hh" @@ -13,14 +13,15 @@ #include "file.hh" #include "highlighters.hh" #include "insert_completer.hh" -#include "shared_string.hh" -#include "ncurses_ui.hh" #include "json_ui.hh" +#include "ncurses_ui.hh" +#include "option_types.hh" #include "parameters_parser.hh" +#include "regex.hh" #include "register_manager.hh" #include "remote.hh" -#include "regex.hh" #include "scope.hh" +#include "shared_string.hh" #include "shell_manager.hh" #include "string.hh" #include "unit_tests.hh" |
