Is there a variable that will force the line numbers on at startup, either global or .qerc ? Reading variables.c doesn’t seem like there is one.
-- Marc Wilson posgu...@gmail.com On Fri, Sep 2, 2022, at 3:39 PM, Charlie Gordon wrote: > Indeed QE_STYLE_GUTTER is the style used for the line numbers: > > /* line numbers */ > if (ds->line_numbers) { > ds->style = QE_STYLE_GUTTER; > display_printf(ds, -1, -1, "%6d ", line_num + 1); > ds->style = 0; > } > > with a default definition of > > STYLE_DEF(QE_STYLE_GUTTER, "gutter", /* #f84400 on grey25 */ > QERGB(0xf8, 0x44, 0x00), QERGB(0x3f, 0x3f, 0x3f), 0, 0) > > Chqrlie. > >> On 3 Sep 2022, at 00:34, Marc Wilson <posgu...@gmail.com> wrote: >> >> What style element name is the numbers themselves? I figured out that >> “gutter” is the tray the numbers are in. >> >> -- >> Marc Wilson >> posgu...@gmail.com >> >> >> On Fri, Sep 2, 2022, at 2:43 PM, Charlie Gordon wrote: >>> Hello Marc, >>> >>> You can toggle line numbers display with the toggle-line-numbers command >>> bound to "C-x RET l” and "C-c l” >>> >>> This command can be found with the apropos command: C-h a line RET >>> >>> Enjoy! >>> >>> Chqrlie >>> >>>> On 2 Sep 2022, at 20:15, Marc Wilson <posgu...@gmail.com> wrote: >>>> >>>> Can Qemacs number lines onscreen? I realize there’s a line counter in the >>>> mode line. >>>> >>>> -- >>>> Marc Wilson >>>> posgu...@gmail.com