diff options
author | ZyX <kp-pav@yandex.ru> | 2017-12-12 00:44:25 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-12-12 00:44:25 +0300 |
commit | 1f9dd689b9f2b68edbc40cc3c60d46db853dda94 (patch) | |
tree | 1da60fa8fcc4fb8e2a578fac90edae3eb5618202 /src/nvim/api/buffer.c | |
parent | 9f534422e6c3649ee40904ae3606455d26b48188 (diff) | |
parent | 8813b29cec13f7410427fbb8913d3753dd6626a7 (diff) | |
download | rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.gz rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.tar.bz2 rneovim-1f9dd689b9f2b68edbc40cc3c60d46db853dda94.zip |
Merge branch 'master' into hide-container-impl
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 4b6a88e5fa..fdde28f2bb 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -763,8 +763,8 @@ ArrayOf(Integer, 2) nvim_buf_get_mark(Buffer buffer, String name, Error *err) /// or -1 for ungrouped highlight /// @param hl_group Name of the highlight group to use /// @param line Line to highlight (zero-indexed) -/// @param col_start Start of range of columns to highlight -/// @param col_end End of range of columns to highlight, +/// @param col_start Start of (byte-indexed) column range to highlight +/// @param col_end End of (byte-indexed) column range to highlight, /// or -1 to highlight to end of line /// @param[out] err Error details, if any /// @return The src_id that was used |