aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-06 22:11:02 -0500
committerGitHub <noreply@github.com>2021-02-06 22:11:02 -0500
commitb894fbcbe8a0a518753bd47cdc2bb621bf1389d8 (patch)
treed9ecd901643a31baf33311f959e08595da012a6e /src/nvim/buffer_defs.h
parent336eb70822970cea6797251043158ee6bd76bc69 (diff)
parentf9c0af0180411429ad315a0d2974c477ac740f70 (diff)
downloadrneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.tar.gz
rneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.tar.bz2
rneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.zip
Merge pull request #13892 from janlazo/vim-8.1.2285
vim-patch:8.1.2285
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index cc09b7e989..360616609c 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -296,13 +296,11 @@ typedef struct arglist {
int id; ///< id of this arglist
} alist_T;
-/*
- * For each argument remember the file name as it was given, and the buffer
- * number that contains the expanded file name (required for when ":cd" is
- * used.
- *
- * TODO: move aentry_T to another header
- */
+// For each argument remember the file name as it was given, and the buffer
+// number that contains the expanded file name (required for when ":cd" is
+// used).
+//
+// TODO(Felipe): move aentry_T to another header
typedef struct argentry {
char_u *ae_fname; // file name as specified
int ae_fnum; // buffer number with expanded file name
@@ -1036,10 +1034,10 @@ struct matchitem {
int id; ///< match ID
int priority; ///< match priority
char_u *pattern; ///< pattern to highlight
- int hlg_id; ///< highlight group ID
regmmatch_T match; ///< regexp program for pattern
posmatch_T pos; ///< position matches
match_T hl; ///< struct for doing the actual highlighting
+ int hlg_id; ///< highlight group ID
int conceal_char; ///< cchar for Conceal highlighting
};