comparison src/feature.h @ 17966:46f95606b9ec v8.1.1979

patch 8.1.1979: code for handling file names is spread out Commit: https://github.com/vim/vim/commit/b005cd80cfda591be95146024d9b97eef383500f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 15:54:55 2019 +0200 patch 8.1.1979: code for handling file names is spread out Problem: Code for handling file names is spread out. Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 16:00:04 +0200
parents 59f8948b7590
children 5ae41d0ea397
comparison
equal deleted inserted replaced
17965:621590abaf54 17966:46f95606b9ec
105 * +virtualedit 'virtualedit' option and its implementation 105 * +virtualedit 'virtualedit' option and its implementation
106 * +user_commands Allow the user to define his own commands. 106 * +user_commands Allow the user to define his own commands.
107 * +multi_byte Generic multi-byte character handling. 107 * +multi_byte Generic multi-byte character handling.
108 * +cmdline_compl completion of mappings/abbreviations in cmdline mode. 108 * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
109 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode. 109 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode.
110 * +modify_fname modifiers for file name. E.g., "%:p:h".
110 * 111 *
111 * Obsolete: 112 * Obsolete:
112 * +tag_old_static Old style static tags: "file:tag file ..". 113 * +tag_old_static Old style static tags: "file:tag file ..".
113 * Support was removed in 8.1.1093. 114 * Support was removed in 8.1.1093.
114 * +farsi Farsi (Persian language) Keymap support. 115 * +farsi Farsi (Persian language) Keymap support.
349 # define FEAT_PRINTER 350 # define FEAT_PRINTER
350 #endif 351 #endif
351 #if defined(FEAT_PRINTER) && ((defined(MSWIN) && defined(MSWINPS)) \ 352 #if defined(FEAT_PRINTER) && ((defined(MSWIN) && defined(MSWINPS)) \
352 || (!defined(MSWIN) && defined(FEAT_EVAL))) 353 || (!defined(MSWIN) && defined(FEAT_EVAL)))
353 # define FEAT_POSTSCRIPT 354 # define FEAT_POSTSCRIPT
354 #endif
355
356 /*
357 * +modify_fname modifiers for file name. E.g., "%:p:h".
358 */
359 #ifdef FEAT_NORMAL
360 # define FEAT_MODIFY_FNAME
361 #endif 355 #endif
362 356
363 /* 357 /*
364 * +diff Displaying diffs in a nice way. 358 * +diff Displaying diffs in a nice way.
365 * Requires +windows and +autocmd. 359 * Requires +windows and +autocmd.