mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-21 05:33:45 -04:00
feat: ansi for pipe rows
This commit is contained in:
parent
5587604469
commit
312b22300d
10 changed files with 566 additions and 23 deletions
5
input.c
5
input.c
|
|
@ -1,4 +1,5 @@
|
|||
#include "input.h"
|
||||
#include "key-binding.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
|
@ -340,6 +341,10 @@ execute_binding(struct seat *seat, struct terminal *term,
|
|||
return true;
|
||||
}
|
||||
|
||||
case BIND_ACTION_TOGGLE_ANSI_SELECTION:
|
||||
term->ansi_selection = !(term->ansi_selection);
|
||||
break;
|
||||
|
||||
case BIND_ACTION_SHOW_URLS_COPY:
|
||||
case BIND_ACTION_SHOW_URLS_LAUNCH:
|
||||
case BIND_ACTION_SHOW_URLS_PERSISTENT: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue