diff --git a/autoload/lightline.vim b/autoload/lightline.vim index ea2a6e7..d506b3e 100644 --- a/autoload/lightline.vim +++ b/autoload/lightline.vim @@ -110,7 +110,7 @@ let s:_lightline = { \ 'paste': '%{&paste?"PASTE":""}', 'readonly': '%R', 'charvalue': '%b', 'charvaluehex': '%B', \ 'spell': '%{&spell?&spelllang:""}', 'fileencoding': '%{&fenc!=#""?&fenc:&enc}', 'fileformat': '%{&ff}', \ 'filetype': '%{&ft!=#""?&ft:"no ft"}', 'percent': '%3p%%', 'percentwin': '%P', - \ 'lineinfo': '%3l:%-2v', 'line': '%l', 'column': '%c', 'close': '%999X X ', 'winnr': '%{winnr()}' + \ 'lineinfo': '%3l:%-2c', 'line': '%l', 'column': '%c', 'close': '%999X X ', 'winnr': '%{winnr()}' \ }, \ 'component_visible_condition': { \ 'modified': '&modified||!&modifiable', 'readonly': '&readonly', 'paste': '&paste', 'spell': '&spell' diff --git a/doc/lightline.txt b/doc/lightline.txt index 1b308e9..3f59a72 100644 --- a/doc/lightline.txt +++ b/doc/lightline.txt @@ -107,7 +107,7 @@ OPTIONS *lightline-option* \ 'percent': '%3p%%', \ 'percentwin': '%P', \ 'spell': '%{&spell?&spelllang:""}', - \ 'lineinfo': '%3l:%-2v', + \ 'lineinfo': '%3l:%-2c', \ 'line': '%l', \ 'column': '%c', \ 'close': '%999X X ', @@ -305,7 +305,7 @@ nice. > let g:lightline = { \ 'component': { - \ 'lineinfo': ' %3l:%-2v', + \ 'lineinfo': ' %3l:%-2c', \ }, \ 'component_function': { \ 'readonly': 'LightlineReadonly', @@ -330,7 +330,7 @@ look nice. > let g:lightline = { \ 'component': { - \ 'lineinfo': '⭡ %3l:%-2v', + \ 'lineinfo': '⭡ %3l:%-2c', \ }, \ 'component_function': { \ 'readonly': 'LightlineReadonly',