Parses /etc/inputrc
Author: Raphael Pinson rap@gmai l.com hink
Inputrc | Parses /etc/inputrc |
Reference | This lens tries to keep as close as possible to `man 3 readline` where possible. |
License | This file is licenced under the LGPL v2+, like the rest of Augeas. |
Lens Usage | To be documented |
Configuration files | This lens applies to /etc/inputrc. |
Examples | The Test_Inputrc file contains various examples and tests. |
Augeas Lenses | |
entry | An inputrc mapping entry |
variable | An inputrc variable declaration |
condition | An “if” declaration, recursive |
lns | The inputrc lens |
Augeas Variables | |
filter |
This lens applies to /etc/inputrc. See filter.
The Test_Inputrc file contains various examples and tests.
let rec condition = [ Util.del_str "$if" . label "@if" . Sep.space . store Rx.space_in . Util.eol . (Util.empty | Util.comment | condition | variable | entry)* . [ Util.del_str "$else" . label "@else" . Util.eol . (Util.empty | Util.comment | condition | variable | entry)* ] ? . Util.del_str "$endif" . Util.eol ]
An “if” declaration, recursive
An inputrc mapping entry
let entry = let mapping = [ label "mapping" . store /[A-Za-z0-9_."\*\/+\,\\-]+/ ] in [ label "entry" . Util.del_str "\"" . store /[^" \t\n]+/ . Util.del_str "\":" . Sep.space . mapping . Util.eol ]
An inputrc variable declaration
let variable = [ Util.del_str "set" . Sep.space . key (Rx.word - "entry") . Sep.space . store Rx.word . Util.eol ]
An “if” declaration, recursive
let rec condition = [ Util.del_str "$if" . label "@if" . Sep.space . store Rx.space_in . Util.eol . (Util.empty | Util.comment | condition | variable | entry)* . [ Util.del_str "$else" . label "@else" . Util.eol . (Util.empty | Util.comment | condition | variable | entry)* ] ? . Util.del_str "$endif" . Util.eol ]
The inputrc lens
let lns = (Util.empty | Util.comment | condition | variable | entry)*