Hello,
I am used to see selection details like selected lines, selected letters count when I was using Notepad++
I could not see such information on CudaText (sample view attached). It maybe me who missed a setting or something.
I appreciate any help.
Thanks & Regards,
Ertan
Selected text info
Selected text info
- Attachments
-
- image_2022-01-30_235432.png (7.53 KiB) Viewed 2867 times
-
miro.matas
- Posts: 67
- Joined: 26.08.2013 06:16
-
miro.matas
- Posts: 67
- Joined: 26.08.2013 06:16
It seems CudaText has several parameters for different kinds of selections. Their defaults are below:
I believe, "ui_statusbar_small_sel" should be added number of selected characters in its default value. Currently it only displays "sel" word. One I put below in my users.json I started to see small selection counts displayed
Thanks & Regards,
Ertan
Code: Select all
"ui_statusbar_no_sel": "{_ln} {y}, {_col} {xx}",
"ui_statusbar_small_sel": "{_ln} {y}, {_col} {xx}, {_sel}",
"ui_statusbar_str_sel": "{_ln} {y}, {_col} {xx}, {sel} {_linesel}",
"ui_statusbar_col_sel": "{sel}x{cols} {_sel}",
"ui_statusbar_carets": "{carets} {_carets}, {sel} {_linesel}",
Code: Select all
"ui_statusbar_small_sel": "{_ln} {y}, {_col} {xx}, {_sel} {selchars}",
Ertan
-
main Alexey
- Posts: 2708
- Joined: 25.08.2021 18:15
yes, and you need to change the option "ui_statusbar_small_sel".It seems CudaText has several parameters for different kinds of selections. Their defaults are below:
why we need to cahnge the default value?I believe, "ui_statusbar_small_sel" should be added number of selected characters in its default value. Currently it only displays "sel" word.
default value is good.
you can add the number of chars to the value.