diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-01-12 07:13:02 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-01-12 07:13:02 +0100 |
commit | fce9a60f9a4b7ff7273e3351336ef5e268178ff3 (patch) | |
tree | a9c619e516c8dd509b910c2d6c5246a53193491e /src/windows.py | |
parent | 469bbd29006cdf660e7a2deaf171ec71c1f1c031 (diff) | |
download | poezio-fce9a60f9a4b7ff7273e3351336ef5e268178ff3.tar.gz poezio-fce9a60f9a4b7ff7273e3351336ef5e268178ff3.tar.bz2 poezio-fce9a60f9a4b7ff7273e3351336ef5e268178ff3.tar.xz poezio-fce9a60f9a4b7ff7273e3351336ef5e268178ff3.zip |
Fix M-b and M-f, fixed #2102
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/windows.py b/src/windows.py index 0c97a8db..d2080b0b 100644 --- a/src/windows.py +++ b/src/windows.py @@ -33,6 +33,7 @@ locale.setlocale(locale.LC_ALL, '') import shlex import curses +import string from config import config from threading import Lock @@ -714,11 +715,10 @@ class Input(Win): """ if not len(self.text) or self.pos == 0: return - previous_space = self.text[:self.pos+self.line_pos].rfind(' ') - if previous_space == -1: - previous_space = 0 - diff = self.pos+self.line_pos-previous_space - for i in range(diff): + separators = string.punctuation+' ' + while self.pos > 0 and self.text[self.pos+self.line_pos-1] in separators: + self.key_left() + while self.pos > 0 and self.text[self.pos+self.line_pos-1] not in separators: self.key_left() return True @@ -728,11 +728,10 @@ class Input(Win): """ if len(self.text) == self.pos+self.line_pos or not len(self.text): return - next_space = self.text.find(' ', self.pos+self.line_pos+1) - if next_space == -1: - next_space = len(self.text) - diff = next_space - (self.pos+self.line_pos) - for i in range(diff): + separators = string.punctuation+' ' + while len(self.text) != self.pos+self.line_pos and self.text[self.pos+self.line_pos] in separators: + self.key_right() + while len(self.text) != self.pos+self.line_pos and self.text[self.pos+self.line_pos] not in separators: self.key_right() return True |