Files
neovim/runtime/lua/vim
Yi Ming f79999270e feat(pos)!: match return value of to_cursor() with parameters of cursor()
Problem:
- `pos.cursor()` receives a table contains `row` and `col` as arguments,
  but `pos:to_cursor` returns `row` and `col` directly
  without wrapping them in a table.
- `pos.mark()`/`pos:to_mark` can already handle unpacked `row` `col`.

Solution:
Make `pos:to_cursor()` return a `row` and `col` in a table.
2026-06-08 19:52:51 +08:00
..
2026-05-30 12:57:24 +02:00
2026-05-10 11:03:15 -04:00
2026-05-30 12:57:24 +02:00
2026-01-09 10:07:15 +01:00
2026-05-30 12:57:24 +02:00
2026-05-11 16:51:58 +08:00
2026-05-10 11:03:15 -04:00
2026-05-30 12:57:24 +02:00