mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-20 06:46:26 -04:00
Use 32-bit char comparison, update docs.
This commit is contained in:
parent
984d3925d3
commit
a5c43df2d5
3 changed files with 9 additions and 4 deletions
|
|
@ -278,7 +278,7 @@ urls_input(struct seat *seat, struct terminal *term,
|
|||
switch (match->action) {
|
||||
case URL_ACTION_COPY:
|
||||
// If the last hint character was uppercase, copy and paste
|
||||
if (wc >= 'A' && wc <= 'Z') {
|
||||
if (wc == toc32upper(wc)) {
|
||||
if (term->bracketed_paste)
|
||||
term_to_slave(term, "\033[200~", 6);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue