diff src/mark.c @ 20635:3e36a51ff152 v8.2.0871

patch 8.2.0871: cannot use getmarklist() as a method Commit: https://github.com/vim/vim/commit/f17e7ea67a798d0aa45ce24ea80c9e21d5164326 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 14:14:44 2020 +0200 patch 8.2.0871: cannot use getmarklist() as a method Problem: Cannot use getmarklist() as a method. Solution: Make getmarklist() work as a method. Add one to the column number to match getpos(). (Yegappan Lakshmanan, closes #6176)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 14:15:05 +0200
parents 8eed1e9389bb
children 9064044fd4f6
line wrap: on
line diff
--- a/src/mark.c
+++ b/src/mark.c
@@ -1442,7 +1442,7 @@ add_mark(list_T *l, char_u *mname, pos_T
 
     list_append_number(lpos, bufnr);
     list_append_number(lpos, pos->lnum);
-    list_append_number(lpos, pos->col);
+    list_append_number(lpos, pos->col + 1);
     list_append_number(lpos, pos->coladd);
 
     if (dict_add_string(d, "mark", mname) == FAIL