doc update: lineinfo uses column instead of virtual column by default

This commit is contained in:
Eliran Gonen
2020-08-16 01:00:26 +03:00
committed by elig0n
parent 2ff75113e7
commit f73ab30953

View File

@@ -107,7 +107,7 @@ OPTIONS *lightline-option*
\ 'percent': '%3p%%', \ 'percent': '%3p%%',
\ 'percentwin': '%P', \ 'percentwin': '%P',
\ 'spell': '%{&spell?&spelllang:""}', \ 'spell': '%{&spell?&spelllang:""}',
\ 'lineinfo': '%3l:%-2v', \ 'lineinfo': '%3l:%-2c',
\ 'line': '%l', \ 'line': '%l',
\ 'column': '%c', \ 'column': '%c',
\ 'close': '%999X X ', \ 'close': '%999X X ',
@@ -305,7 +305,7 @@ nice.
> >
let g:lightline = { let g:lightline = {
\ 'component': { \ 'component': {
\ 'lineinfo': ' %3l:%-2v', \ 'lineinfo': ' %3l:%-2c',
\ }, \ },
\ 'component_function': { \ 'component_function': {
\ 'readonly': 'LightlineReadonly', \ 'readonly': 'LightlineReadonly',
@@ -330,7 +330,7 @@ look nice.
> >
let g:lightline = { let g:lightline = {
\ 'component': { \ 'component': {
\ 'lineinfo': '⭡ %3l:%-2v', \ 'lineinfo': '⭡ %3l:%-2c',
\ }, \ },
\ 'component_function': { \ 'component_function': {
\ 'readonly': 'LightlineReadonly', \ 'readonly': 'LightlineReadonly',