summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-04 15:54:55 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-04 15:54:55 +0200
commitb005cd80cfda591be95146024d9b97eef383500f (patch)
treece7d5ac25d5c8e3442828130c180e04820565d29 /src/feature.h
parent1e1d30048e722906a13665bd6c3c24c87eb2fe25 (diff)
patch 8.1.1979: code for handling file names is spread outv8.1.1979
Problem: Code for handling file names is spread out. Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
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 8afa98797a..c4ccd2177c 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -107,6 +107,7 @@
* +multi_byte Generic multi-byte character handling.
* +cmdline_compl completion of mappings/abbreviations in cmdline mode.
* +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode.
+ * +modify_fname modifiers for file name. E.g., "%:p:h".
*
* Obsolete:
* +tag_old_static Old style static tags: "file:tag file ..".
@@ -354,13 +355,6 @@
#endif
/*
- * +modify_fname modifiers for file name. E.g., "%:p:h".
- */
-#ifdef FEAT_NORMAL
-# define FEAT_MODIFY_FNAME
-#endif
-
-/*
* +diff Displaying diffs in a nice way.
* Requires +windows and +autocmd.
*/