aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/bind.expect.out
Commit message (Collapse)AuthorAge
* tty driver ignore lnext (\cV) and werase (\cW)Gravatar Kurtis Rader2016-05-25
| | | | | | | | | | Configure the tty driver to ignore the lnext (\cV) and werase (\cW) characters so they can be bound to fish functions. Correct the `fish_key_bindings` program to initialize the tty in the same manner as the `fish` program. Fixes #3064
* fix flakey testGravatar Kurtis Rader2016-02-16
| | | | | | I've run this more than twenty times through Travis CI (by adding/removing a comment line). Without this tweak the longest sequence seems to be around six successful runs.
* Merge change for lengthened and configurable escape key timeoutGravatar ridiculousfish2016-02-04
|\
| * change default escape timeoutGravatar Kurtis Rader2016-02-04
| | | | | | | | | | | | | | | | This changes the default escape timeout for the default keybindings (emacs mode) to 300ms and the default for vi keybindings to 10ms. I couldn't resist fixing a few nits in the fish_vi_key_bindings.fish file since I was touching it to set the escape timeout.
| * make travis-ci happy againGravatar Kurtis Rader2016-02-04
| |
| * allow configuring the escape delay timeoutGravatar Kurtis Rader2016-01-17
| | | | | | | | | | | | | | | | Introduce a "fish_escape_delay_ms" variable to allow the user to configure the delay used when seeing a bare escape before assuming no other characters will be received that might match a bound character sequence. This is primarily useful for vi mode so that a bare escape character (i.e., keystroke) can switch to vi "insert" to "normal" mode in a timely fashion.
| * fix unit tests related to the escape timeoutGravatar Kurtis Rader2015-12-23
| |
* | Test vi-mode 't' bindingGravatar Chris Pick2015-09-03
|/ | | | | | Test 't' binding that contains non-zero arity function (forward-jump) followed by another function (and). This demonstrates the problem in #2357.
* Implement lowercase-r replace in fish_vi_modeGravatar ridiculousfish2015-07-20
| | | | Fixes #1595
* Reset fish_bind_mode when changing fish_key_bindingsGravatar Kevin Ballard2014-09-18
Also avoid resetting bindings if fish_key_bindings is "modified" without actually changing. Fixes #1638.