From d9c1669a5474ee0d09dbe60372a2959207187290 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Thu, 9 Dec 2021 21:23:03 +0100 Subject: refactor(misc1): move out misc functions which obviously belong elsewhere Also make some function names more descriptive/regular. --- src/nvim/memline.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/nvim/memline.c') diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 08202a6d5c..40da4b48f8 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -1841,6 +1841,17 @@ char_u *ml_get_pos(const pos_T *pos) return ml_get_buf(curbuf, pos->lnum, false) + pos->col; } +/// get codepoint at pos. pos must be either valid or have col set to MAXCOL! +int gchar_pos(pos_T *pos) + FUNC_ATTR_NONNULL_ARG(1) +{ + // When searching columns is sometimes put at the end of a line. + if (pos->col == MAXCOL) { + return NUL; + } + return utf_ptr2char(ml_get_pos(pos)); +} + /// Return a pointer to a line in a specific buffer /// /// @param will_change true mark the buffer dirty (chars in the line will be changed) -- cgit