Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Get The Currnet Neovim Cursor Position With Lua

lua
local position = vim.fn.getcurpos()
local line = position[2]
local column = position[3]

print(line)
print(column)
results start

Footnotes And References