mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
This option lets the user configure which characters act as word delimiters when selecting text. This affects both “double clicking”, and ‘ctrl-w’ in scrollback search mode. Closes #156
6 lines
125 B
C
6 lines
125 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <wchar.h>
|
|
|
|
bool isword(wchar_t wc, bool spaces_only, const wchar_t *delimiters);
|