diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-05-05 22:00:43 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-18 11:06:54 -0400 |
commit | a16eab9e57368188c834634cd824ce1ac5613db1 (patch) | |
tree | 5fabe22f8185b16c00285827fb57eb1dbec6c566 /src/nvim/main.c | |
parent | 64cecd917d8b8b7a428e61f1f75d4a9c769450de (diff) | |
download | rneovim-a16eab9e57368188c834634cd824ce1ac5613db1.tar.gz rneovim-a16eab9e57368188c834634cd824ce1ac5613db1.tar.bz2 rneovim-a16eab9e57368188c834634cd824ce1ac5613db1.zip |
Remove `-T` command-line option
It didn't actually do anything after
3baba1e7bc6698e6bc9f1d37fce88b30d6274bc9
Helped-by: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index ce96d2a7bf..5f0372f30e 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -100,7 +100,6 @@ typedef struct { bool headless; // Dont try to start an user interface // or read/write to stdio(unless // embedding) - char_u *term; /* specified terminal name */ int no_swap_file; /* "-n" argument used */ int use_debug_break_level; int window_count; /* number of windows to use */ @@ -1123,7 +1122,6 @@ static void command_line_scan(mparm_T *parmp) /*FALLTHROUGH*/ case 'S': /* "-S {file}" execute Vim script */ case 'i': /* "-i {viminfo}" use for viminfo */ - case 'T': /* "-T {terminal}" terminal name */ case 'u': /* "-u {vimrc}" vim inits file */ case 'U': /* "-U {gvimrc}" gvim inits file */ case 'W': /* "-W {scriptout}" overwrite */ @@ -1221,15 +1219,6 @@ scripterror: parmp->tagname = (char_u *)argv[0]; break; - case 'T': /* "-T {terminal}" terminal name */ - /* - * The -T term argument is always available and when - * HAVE_TERMLIB is supported it overrides the environment - * variable TERM. - */ - parmp->term = (char_u *)argv[0]; - break; - case 'u': /* "-u {vimrc}" vim inits file */ parmp->use_vimrc = argv[0]; break; @@ -2001,7 +1990,6 @@ static void usage(void) mch_msg(_(" -n No swap file, use memory only\n")); mch_msg(_(" -r, -L List swap files and exit\n")); mch_msg(_(" -r <file> Recover crashed session\n")); - mch_msg(_(" -T <terminal> Set terminal type to <terminal>\n")); mch_msg(_(" -u <nvimrc> Use <nvimrc> instead of the default\n")); mch_msg(_(" -i <nviminfo> Use <nviminfo> instead of the default\n")); mch_msg(_(" --noplugin Don't load plugin scripts\n")); |