From 24fe3403b5420091b5bd7059443860cba5025732 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 22 May 2012 01:08:41 -0400 Subject: [PATCH] use the same backspace escape code as xterm --- term.c | 1 + 1 file changed, 1 insertion(+) diff --git a/term.c b/term.c index f3fceb7..da9a6bf 100644 --- a/term.c +++ b/term.c @@ -52,6 +52,7 @@ int main(int argc, char **argv) { vte_terminal_set_audible_bell(VTE_TERMINAL(vte), audible_bell); vte_terminal_set_visible_bell(VTE_TERMINAL(vte), visible_bell); vte_terminal_set_mouse_autohide(VTE_TERMINAL(vte), mouse_autohide); + vte_terminal_set_backspace_binding(VTE_TERMINAL(vte), VTE_ERASE_ASCII_BACKSPACE); // set colors GdkColor foreground, background;