diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-12 00:29:16 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:54 -0400 |
commit | 9db774df44d3b516062e0c4d2c0e478941b73777 (patch) | |
tree | e2a8081dd81fd5b4fff33e7f9f9bcafdad07fd68 /src/nvim/misc2.c | |
parent | 75f152d09b984864732d7b110c76f9a1214b085c (diff) | |
download | rneovim-9db774df44d3b516062e0c4d2c0e478941b73777.tar.gz rneovim-9db774df44d3b516062e0c4d2c0e478941b73777.tar.bz2 rneovim-9db774df44d3b516062e0c4d2c0e478941b73777.zip |
Remove FEAT_SEARCHPATH
Support for gf(edit the file whose name is under or after the cursor)
and <cfile>(is replaced with the path name under the cursor).
Diffstat (limited to 'src/nvim/misc2.c')
-rw-r--r-- | src/nvim/misc2.c | 3 |
1 files changed, 1 insertions, 2 deletions
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) { |