diff options
| author | dacctal <dacctal@symlinx.net> | 2026-04-28 10:11:46 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-04-28 10:11:46 +0000 |
| commit | d42afdbcb29d07ac72e46ddc401951612df30d17 (patch) | |
| tree | 422b20fece50c5d601c132513267af87cb4e7f7a /init.lua | |
| parent | 8d5b2b3b4d6149b338f90875f4217a278fad4676 (diff) | |
changed some display stuff and added simple template to README.md
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,10 +67,10 @@ vis.events.subscribe(vis.events.WIN_STATUS, function(win) cursors = 0 for _ in win:selections_iterator() do cursors = cursors+1 end selection_size = "SELECTION_SIZE: ".. - win.selection.range.finish-win.selection.range.start + win.selection.range.finish - win.selection.range.start cursor_amount = "CURSORS: "..cursors cursor_pos = win.selection.line..":"..win.selection.col - status_right = selection_size.." | "..cursor_amount.." @ "..cursor_pos + status_right = selection_size.." | "..cursor_amount.." | "..cursor_pos win:status(status_left, status_right) |
