From bc67a7d6548443aec9568fda56187978c64736a8 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Fri, 6 May 2011 02:47:34 +0200 Subject: Aha, remove this duplicate function --- src/windows.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/windows.py b/src/windows.py index bfe3102e..e34565e7 100644 --- a/src/windows.py +++ b/src/windows.py @@ -757,19 +757,6 @@ class Input(Win): def is_empty(self): return len(self.text) == 0 - def delete_word(self): - """ - Delete the word behind the cursor. - """ - if not len(self.text) or self.pos == 0: - return - separators = string.punctuation+' ' - while self.pos > 0 and self.text[self.pos+self.line_pos-1] in separators: - self.key_backspace() - while self.pos > 0 and self.text[self.pos+self.line_pos-1] not in separators: - self.key_backspace() - return True - def jump_word_left(self): """ Move the cursor one word to the left -- cgit v1.2.3