From dd7657c1605246e8f7ade35184069a09dc254e84 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Tue, 8 Apr 2014 23:52:28 +0300 Subject: Removed FEAT_WINDOWS Support for multiple windows and status line. --- src/nvim/misc2.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/nvim/misc2.c') diff --git a/src/nvim/misc2.c b/src/nvim/misc2.c index 1db6c4193c..598e17ef7b 100644 --- a/src/nvim/misc2.c +++ b/src/nvim/misc2.c @@ -363,9 +363,7 @@ int get_real_state(void) } #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \ - || ((defined(FEAT_GUI_GTK)) \ - && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \ - || defined(PROTO) + || defined(FEAT_GUI_GTK) || defined(PROTO) /* * Change to a file's directory. * Caller must call shorten_fnames()! -- cgit From 9db774df44d3b516062e0c4d2c0e478941b73777 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 00:29:16 +0300 Subject: Remove FEAT_SEARCHPATH Support for gf(edit the file whose name is under or after the cursor) and (is replaced with the path name under the cursor). --- src/nvim/misc2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/nvim/misc2.c') diff --git a/src/nvim/misc2.c b/src/nvim/misc2.c index 598e17ef7b..953344bdd5 100644 --- a/src/nvim/misc2.c +++ b/src/nvim/misc2.c @@ -380,8 +380,7 @@ int vim_chdirfile(char_u *fname) #endif /* - * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search - * 'cdpath' for relative directory names, otherwise just os_chdir(). + * Change directory to "new_dir". Search 'cdpath' for relative directory names. */ int vim_chdir(char_u *new_dir) { -- cgit From bf87a83058348694eadde290a1cc1bd478735ca0 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 00:34:15 +0300 Subject: Remove FEAT_SESSION Support for :mksession command --- src/nvim/misc2.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/nvim/misc2.c') diff --git a/src/nvim/misc2.c b/src/nvim/misc2.c index 953344bdd5..c9c3edca71 100644 --- a/src/nvim/misc2.c +++ b/src/nvim/misc2.c @@ -362,8 +362,6 @@ int get_real_state(void) return State; } -#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \ - || defined(FEAT_GUI_GTK) || defined(PROTO) /* * Change to a file's directory. * Caller must call shorten_fnames()! @@ -377,7 +375,6 @@ int vim_chdirfile(char_u *fname) *path_tail_with_sep(dir) = NUL; return os_chdir((char *)dir) == 0 ? OK : FAIL; } -#endif /* * Change directory to "new_dir". Search 'cdpath' for relative directory names. -- cgit