mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-03 07:15:29 -04:00
osc-52: don't strip any control characters, and don't do newline conversion
This commit is contained in:
parent
037a2f4fa2
commit
46a9cb8aab
4 changed files with 32 additions and 19 deletions
4
search.c
4
search.c
|
|
@ -1375,13 +1375,13 @@ execute_binding(struct seat *seat, struct terminal *term,
|
|||
|
||||
case BIND_ACTION_SEARCH_CLIPBOARD_PASTE:
|
||||
text_from_clipboard(
|
||||
seat, term, &from_clipboard_cb, &from_clipboard_done, term);
|
||||
seat, term, false, &from_clipboard_cb, &from_clipboard_done, term);
|
||||
*update_search_result = *redraw = true;
|
||||
return true;
|
||||
|
||||
case BIND_ACTION_SEARCH_PRIMARY_PASTE:
|
||||
text_from_primary(
|
||||
seat, term, &from_clipboard_cb, &from_clipboard_done, term);
|
||||
seat, term, false, &from_clipboard_cb, &from_clipboard_done, term);
|
||||
*update_search_result = *redraw = true;
|
||||
return true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue