2021-02-13 01:03:57 +01:00
|
|
|
-- Copyright (c) 2020-2021 hoob3rt
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2021-10-10 22:43:00 +06:00
|
|
|
local function location()
|
2022-07-29 16:54:31 +06:00
|
|
|
local line = vim.fn.line('.')
|
2022-09-11 21:32:09 +03:00
|
|
|
local col = vim.fn.virtcol('.')
|
2022-07-29 16:54:31 +06:00
|
|
|
return string.format('%3d:%-2d', line, col)
|
2021-09-04 00:28:20 +06:00
|
|
|
end
|
2021-04-11 14:20:41 +06:00
|
|
|
|
2021-10-10 22:43:00 +06:00
|
|
|
return location
|