diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-28 13:17:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-28 13:17:26 +0200 |
commit | 06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03 (patch) | |
tree | e6c08194d0487a450912b9fec1604fdb41eabf13 /src/proto.h | |
parent | 75e15670b8749845cde2962ddb738dd5c6e73191 (diff) | |
download | vim-git-06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03.tar.gz |
patch 8.2.1078: highlight and match functionality together in one filev8.2.1078
Problem: Highlight and match functionality together in one file.
Solution: Move match functionality to a separate file. (Yegappan Lakshmanan,
closes #6352)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index eec7ad530..8c768fc00 100644 --- a/src/proto.h +++ b/src/proto.h @@ -104,6 +104,7 @@ extern int _stricoll(char *a, char *b); # include "main.pro" # include "map.pro" # include "mark.pro" +# include "match.pro" # include "memfile.pro" # include "memline.pro" # ifdef FEAT_MENU |