mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
This mode is activated through the new key-bindings.unicode-input and search-bindings.unicode-input key bindings. When active, the user can “build” a Unicode codepoint by typing its hexadecimal value. Note that there’s no visual feedback in this mode. This is intentional. This mode is intended to be a fallback for users that don’t use an IME. Closes #1116
7 lines
178 B
C
7 lines
178 B
C
#pragma once
|
|
|
|
#include "wayland.h"
|
|
|
|
void unicode_mode_activate(struct seat *seat);
|
|
void unicode_mode_deactivate(struct seat *seat);
|
|
void unicode_mode_updated(struct seat *seat);
|