pmattes / x3270

Family of IBM 3270 emulators
46 stars 18 forks source link

enhancement: Support font resize via keyboard using Ctrl- and Cntrl+ #60

Closed swhobbit closed 1 year ago

swhobbit commented 1 year ago

The x3270 emulator supports dragging the window border to resize the terminal font.

Font resize should also be supported from the keyboard, in manner of Web Browsers. That is, resizing the font to the next step up or down should be supported is via Ctrl- (shrink) and Ctrl+ (grow).

pmattes commented 1 year ago

Implemented in x3270 4.3.

swhobbit commented 1 year ago

Thanks!

On MacOS, the following default binding would match other applications:

    Meta<Key>plus:  StepEfont("Bigger")\n\
    Meta<Key>minus: StepEfont("Smaller")

(I've added them to my custom profile.)

pmattes commented 1 year ago

Done.

swhobbit commented 1 year ago

Done.

Thanks!