aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2024-06-15 05:46:43 +0200
committerLuuk van Baal <luukvbaal@gmail.com>2024-06-16 19:04:34 +0200
commitad70c9892d5b5ebcc106742386c99524f074bcea (patch)
tree13ef468ac927d78a1f35fbdf01ffc6a2e2ba914f /src/nvim/options.lua
parent114197517f89de557333dbc6022912b2f8b4eaf5 (diff)
downloadrneovim-ad70c9892d5b5ebcc106742386c99524f074bcea.tar.gz
rneovim-ad70c9892d5b5ebcc106742386c99524f074bcea.tar.bz2
rneovim-ad70c9892d5b5ebcc106742386c99524f074bcea.zip
feat(column)!: rework 'statuscolumn' %r/l items
Problem: A custom 'statuscolumn' needs to check a bunch of options and placed signs to replicate the default number column. Solution: Rework %l item to include the necessary logic to mimic the default number column. Remove now redundant %r item.
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index f323926015..9edb429cf8 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -8037,8 +8037,7 @@ return {
Some of the items from the 'statusline' format are different for
'statuscolumn':
- %l line number of currently drawn line
- %r relative line number of currently drawn line
+ %l line number column for currently drawn line
%s sign column for currently drawn line
%C fold column for currently drawn line
@@ -8065,11 +8064,8 @@ return {
handler should be written with this in mind.
Examples: >vim
- " Relative number with bar separator and click handlers:
- set statuscolumn=%@SignCb@%s%=%T%@NumCb@%r│%T
-
- " Right aligned relative cursor line number:
- let &stc='%=%{v:relnum?v:relnum:v:lnum} '
+ " Line number with bar separator and click handlers:
+ set statuscolumn=%@SignCb@%s%=%T%@NumCb@%l│%T
" Line numbers in hexadecimal for non wrapped part of lines:
let &stc='%=%{v:virtnum>0?"":printf("%x",v:lnum)} '