Mercurial > hg > octave-nkf
annotate scripts/startup/inputrc @ 20260:48aa3d6d3427
ru_RU.ts: Add translations from Dmitry Roshchin
author | Andreas Weber <andy.weber.aw@gmail.com> |
---|---|
date | Wed, 08 Apr 2015 21:39:24 +0200 |
parents | fe689210525c |
children |
rev | line source |
---|---|
5316 | 1 ## This file configures the behavior of line-input editing for all |
2 ## Octave users when Octave is configured to use GNU Readline library | |
3 ## for input-line editing. | |
4 | |
5 ## history-search-backward: | |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
16650
diff
changeset
|
6 ## |
5316 | 7 ## Search backward through the history for the string of characters |
8 ## between the start of the current line and the point. This is a | |
9 ## non-incremental search. Bound to "\e[A", the ANSI escape | |
10 ## sequence for the UP arrow. | |
11 | |
12 "\e[A": history-search-backward | |
13 | |
14 ## history-search-forward: | |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
16650
diff
changeset
|
15 ## |
5316 | 16 ## Search forward through the history for the string of characters |
17 ## between the start of the current line and the point. This is a | |
18 ## non-incremental search. Bound to "\e[B", the ANSI escape | |
19 ## sequence for the DOWN arrow. | |
20 | |
21 "\e[B": history-search-forward | |
16650 | 22 |
23 ## Disable so the usual paste shortcut will work on Windows systems. | |
24 ## \C-q should still be available for quoted insert. | |
25 | |
26 "\C-v": "" | |
19283
3ed674758e0d
Disable bell in Windows (Bug #42268)
John Donoghue <john.donoghue@ieee.org>
parents:
16650
diff
changeset
|
27 |
3ed674758e0d
Disable bell in Windows (Bug #42268)
John Donoghue <john.donoghue@ieee.org>
parents:
16650
diff
changeset
|
28 ## In windows, disable audiable bell which is enabled by default |
3ed674758e0d
Disable bell in Windows (Bug #42268)
John Donoghue <john.donoghue@ieee.org>
parents:
16650
diff
changeset
|
29 $if term=cygwin |
3ed674758e0d
Disable bell in Windows (Bug #42268)
John Donoghue <john.donoghue@ieee.org>
parents:
16650
diff
changeset
|
30 set bell-style none |
3ed674758e0d
Disable bell in Windows (Bug #42268)
John Donoghue <john.donoghue@ieee.org>
parents:
16650
diff
changeset
|
31 $endif |