summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYutao Yuan <yyt16384@gmail.com>2016-12-11 17:47:02 +0800
committerJonathan Slenders <jonathan@slenders.be>2016-12-11 23:06:10 +0100
commit28bdee12544492c6400e0c04f531a190b22216f1 (patch)
tree496655956c19e8e929d42146d2abb7990988e176
parent96b0eb2c177463ba3854812331758913164a0fc8 (diff)
Fix non-ASCII characters breaking python2
-rw-r--r--prompt_toolkit/key_binding/bindings/named_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prompt_toolkit/key_binding/bindings/named_commands.py b/prompt_toolkit/key_binding/bindings/named_commands.py
index 9ca67c89..420d8c93 100644
--- a/prompt_toolkit/key_binding/bindings/named_commands.py
+++ b/prompt_toolkit/key_binding/bindings/named_commands.py
@@ -333,7 +333,7 @@ def unix_word_rubout(event, WORD=True):
@register('backward-kill-word')
def backward_kill_word(event):
"""
- Kills the word before point, using “not a letter nor a digit” as a word boundary.
+ Kills the word before point, using "not a letter nor a digit" as a word boundary.
Usually bound to M-Del or M-Backspace.
"""
unix_word_rubout(event, WORD=False)