enhance: use virtual column(%v) for location and line no (%p) for progress

closes #90
This commit is contained in:
shadmansaleh 2021-10-22 09:45:26 +06:00
parent cd08f74bb7
commit 9433dbb762
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local function location()
return [[%3l:%-2c]]
return '%3l:%-2v'
end
return location

View File

@ -1,7 +1,7 @@
-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local function progress()
return [[%3P]]
return '%3p%%'
end
return progress