comparison src/vim.h @ 16447:54ffc82f38a8 v8.1.1228

patch 8.1.1228: not possible to process tags with a function commit https://github.com/vim/vim/commit/45e18cbdc40afd8144d20dcc07ad2d981636f4c9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 28 18:05:35 2019 +0200 patch 8.1.1228: not possible to process tags with a function Problem: Not possible to process tags with a function. Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes https://github.com/vim/vim/issues/4010)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Apr 2019 18:15:07 +0200
parents 0f65f2808470
children 7e733046db1d
comparison
equal deleted inserted replaced
16446:cee0719a1b4b 16447:54ffc82f38a8
1131 #define DT_FREE 99 /* free cached matches */ 1131 #define DT_FREE 99 /* free cached matches */
1132 1132
1133 /* 1133 /*
1134 * flags for find_tags(). 1134 * flags for find_tags().
1135 */ 1135 */
1136 #define TAG_HELP 1 /* only search for help tags */ 1136 #define TAG_HELP 1 // only search for help tags
1137 #define TAG_NAMES 2 /* only return name of tag */ 1137 #define TAG_NAMES 2 // only return name of tag
1138 #define TAG_REGEXP 4 /* use tag pattern as regexp */ 1138 #define TAG_REGEXP 4 // use tag pattern as regexp
1139 #define TAG_NOIC 8 /* don't always ignore case */ 1139 #define TAG_NOIC 8 // don't always ignore case
1140 #ifdef FEAT_CSCOPE 1140 #ifdef FEAT_CSCOPE
1141 # define TAG_CSCOPE 16 /* cscope tag */ 1141 # define TAG_CSCOPE 16 // cscope tag
1142 #endif 1142 #endif
1143 #define TAG_VERBOSE 32 /* message verbosity */ 1143 #define TAG_VERBOSE 32 // message verbosity
1144 #define TAG_INS_COMP 64 /* Currently doing insert completion */ 1144 #define TAG_INS_COMP 64 // Currently doing insert completion
1145 #define TAG_KEEP_LANG 128 /* keep current language */ 1145 #define TAG_KEEP_LANG 128 // keep current language
1146 1146 #define TAG_NO_TAGFUNC 256 // do not use 'tagfunc'
1147 #define TAG_MANY 300 /* When finding many tags (for completion), 1147
1148 find up to this many tags */ 1148 #define TAG_MANY 300 // When finding many tags (for completion),
1149 // find up to this many tags
1149 1150
1150 /* 1151 /*
1151 * Types of dialogs passed to do_vim_dialog(). 1152 * Types of dialogs passed to do_vim_dialog().
1152 */ 1153 */
1153 #define VIM_GENERIC 0 1154 #define VIM_GENERIC 0