changeset 27119:5af449d4e1f4 stable

inputrc: Add warning about modification (bug #56079). * inputrc: Add warning about modification (bug #56079).
author Rik <rik@octave.org>
date Mon, 27 May 2019 15:47:21 -0700
parents f8434681af15
children da349bc21f8d 8854d65e3bcc
files scripts/startup/inputrc
diffstat 1 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/startup/inputrc	Sat May 25 14:30:01 2019 +0200
+++ b/scripts/startup/inputrc	Mon May 27 15:47:21 2019 -0700
@@ -1,6 +1,13 @@
+########################################################################
 ## This file configures the behavior of line-input editing for all
 ## Octave users when Octave is configured to use GNU Readline library
 ## for input-line editing.
+##
+## This file is NOT an Octave script.
+##
+## Do not make changes to this file unless you understand how
+## GNU Readline configuration works.
+########################################################################
 
 ## history-search-backward:
 ##
@@ -20,12 +27,12 @@
 
 "\e[B": history-search-forward
 
-## Disable so the usual paste shortcut will work on Windows systems.
+## Disable Ctrl+v so the usual paste shortcut will work on Windows.
 ## \C-q should still be available for quoted insert.
 
 "\C-v": ""
 
-## In windows, disable audiable bell which is enabled by default
+## On Windows, disable audible bell which is enabled by default.
 $if term=cygwin
    set bell-style none
 $endif