]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - shell/haskeline
herbstluftwm/autostart: add bindings to run programs and select windows
[config/dotfiles.git] / shell / haskeline
1 -- Configuration file for haskeline (an incomplete readline "clone").
2
3 -- Copyright (C) 2014  Simon Ruderich
4 --
5 -- This file is free software: you can redistribute it and/or modify
6 -- it under the terms of the GNU General Public License as published by
7 -- the Free Software Foundation, either version 3 of the License, or
8 -- (at your option) any later version.
9 --
10 -- This file is distributed in the hope that it will be useful,
11 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
12 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 -- GNU General Public License for more details.
14 --
15 -- You should have received a copy of the GNU General Public License
16 -- along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 -- Activate Vi editing mode.
20 editMode: Vi
21
22 -- Never ring any bell.
23 bellStyle: NoBell
24
25 -- Increase history size.
26 maxHistorySize: Just 50000
27 -- Don't add consecutive duplicate lines to the history.
28 historyDuplicates: IgnoreConsecutive
29
30
31 -- KEY BINDINGS
32
33 -- <Up>/<Down> with the additional effect that only lines starting with the
34 -- current input are matched. Very useful to recall old commands quickly -
35 -- just type the first few characters.
36 bind: ctrl-p meta-k
37 bind: ctrl-n meta-j
38
39 -- vim: ft=haskell