summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2017-03-02 15:34:58 -0800
committerJonathan Slenders <jonathan@slenders.be>2017-03-08 20:55:11 +0100
commit021e6cc963570e1bc645defcdeb2da10d0c83a9e (patch)
tree5ed3e7cf1306ab8cb1d3c726b53a0e378eda8820
parentbb8db8e4318afc07ad29b8d59bc4eedc764cd9bc (diff)
use matching backticks
-rw-r--r--prompt_toolkit/key_binding/bindings/named_commands.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/prompt_toolkit/key_binding/bindings/named_commands.py b/prompt_toolkit/key_binding/bindings/named_commands.py
index 5605f89b..f80c439f 100644
--- a/prompt_toolkit/key_binding/bindings/named_commands.py
+++ b/prompt_toolkit/key_binding/bindings/named_commands.py
@@ -134,13 +134,13 @@ def accept_line(event):
@register('previous-history')
def previous_history(event):
- " Move `back' through the history list, fetching the previous command. "
+ " Move `back` through the history list, fetching the previous command. "
event.current_buffer.history_backward(count=event.arg)
@register('next-history')
def next_history(event):
- " Move `forward' through the history list, fetching the next command. "
+ " Move `forward` through the history list, fetching the next command. "
event.current_buffer.history_forward(count=event.arg)
@@ -163,7 +163,7 @@ def end_of_history(event):
@register('reverse-search-history')
def reverse_search_history(event):
"""
- Search backward starting at the current line and moving `up' through
+ Search backward starting at the current line and moving `up` through
the history as necessary. This is an incremental search.
"""
event.cli.current_search_state.direction = IncrementalSearchDirection.BACKWARD