view scripts/startup/inputrc @ 19125:3ed674758e0d gui-release

Disable bell in Windows (Bug #42268) * scripts/startup/inputrc: if term=cygwin, set bell style to none
author John Donoghue <john.donoghue@ieee.org>
date Sun, 27 Jul 2014 08:53:51 -0400
parents 18d3c1b981e7
children fe689210525c
line wrap: on
line source

## 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.

## history-search-backward:
## 
##   Search backward through the history for the string of characters
##   between the start of the current line and the point.  This is a
##   non-incremental search.  Bound to "\e[A", the ANSI escape
##   sequence for the UP arrow.

"\e[A": history-search-backward

## history-search-forward:
## 
##   Search forward through the history for the string of characters
##   between the start of the current line and the point.  This is a
##   non-incremental search.  Bound to "\e[B", the ANSI escape
##   sequence for the DOWN arrow.

"\e[B": history-search-forward

## Disable so the usual paste shortcut will work on Windows systems.
## \C-q should still be available for quoted insert.

"\C-v": ""

## In windows, disable audiable bell which is enabled by default
$if term=cygwin
   set bell-style none
$endif