From 91c1d7b0ec52531900dd8f77aeb0220cccdda592 Mon Sep 17 00:00:00 2001 From: Sergio Carlavilla Delgado Date: Sun, 15 Dec 2019 09:14:15 +0000 Subject: [PATCH] Update the explanation of how to use the delete key in console and xterm in the section 4.4.4 of the FAQ. And remove a dead link PR: 242117 Submitted by: dr.klepp@gmx.at Patch by: carlavilla@ Approved by: bcr@ Differential Revision: https://reviews.freebsd.org/D22805 --- en_US.ISO8859-1/books/faq/book.xml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/en_US.ISO8859-1/books/faq/book.xml b/en_US.ISO8859-1/books/faq/book.xml index 2bc5e995ab..3537ae0535 100644 --- a/en_US.ISO8859-1/books/faq/book.xml +++ b/en_US.ISO8859-1/books/faq/book.xml @@ -1682,19 +1682,14 @@ the following lines to ~/.shrc. See &man.sh.1; and &man.editrc.5;. - bind ^? ed-delete-next-char # for console -bind ^[[3~ ed-delete-next-char # for xterm + bind ^[[3~ ed-delete-next-char # for xterm For the C Shell, add the following lines to ~/.cshrc. See &man.csh.1;. - bindkey ^? delete-char # for console -bindkey ^[[3~ delete-char # for xterm + bindkey ^[[3~ delete-char # for xterm - For more information, see this - page.