summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-25 18:12:06 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-25 18:12:06 +0100
commit2bd9dbc19fc67395cfa1226dda7326071ab22464 (patch)
tree31448e8eb576d7580627724ad62b42e6b793dfc1 /src/feature.h
parent520f6ef60a59f7b5f3da9199999d13dbe817d3ce (diff)
patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny versionv9.0.0270
Problem: Some values of 'path' and 'tags' do not work in the tiny version. Solution: Graduate the +path_extra feature.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/feature.h b/src/feature.h
index 9c094e5aad..bffd80a919 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -117,6 +117,7 @@
* +smartindent smart C code indenting when the 'si' option is set.
* +textobjects Text objects: "vaw", "das", etc.
* +file_in_path "gf" and "<cfile>" commands.
+ * +path_extra up/downwards searching in 'path' and 'tags'.
*
* Obsolete:
* +tag_old_static Old style static tags: "file:tag file ..".
@@ -211,13 +212,6 @@
#endif
/*
- * +path_extra up/downwards searching in 'path' and 'tags'.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_PATH_EXTRA
-#endif
-
-/*
* +rightleft Right-to-left editing/typing support.
*/
#if defined(FEAT_BIG) && !defined(DISABLE_RIGHTLEFT)