diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-05-16 02:33:26 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-05-19 16:58:46 -0400 |
commit | 3c2eae6cc69dbdd212c469d8770a1ad1e1da92ff (patch) | |
tree | d82a8c4a93639009783ffce0df04afc857347676 /src | |
parent | e211362a6daec463902f5f4f1bd124c106b3350e (diff) | |
download | rneovim-3c2eae6cc69dbdd212c469d8770a1ad1e1da92ff.tar.gz rneovim-3c2eae6cc69dbdd212c469d8770a1ad1e1da92ff.tar.bz2 rneovim-3c2eae6cc69dbdd212c469d8770a1ad1e1da92ff.zip |
options: Search upwards for tags file #2670
Also remove some references to emacs tags from the docs.
References https://github.com/neovim/neovim/issues/1664
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index bb6acc79dc..4911377c06 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1491,7 +1491,7 @@ static vimoption_T {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP, (char_u *)&p_tags, PV_TAGS, { - (char_u *)"./tags,tags", + (char_u *)"./tags;,tags", (char_u *)0L } SCRIPTID_INIT}, {"tagstack", "tgst", P_BOOL|P_VI_DEF, |