diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-08-03 19:16:28 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-08-03 19:17:14 +0200 |
commit | def04d660925a3cacae7258de6744ba6e87f3eac (patch) | |
tree | 700b22f6b2d4b089fa69e259dee9e05cdf2d5166 /src | |
parent | c8b4d20a143862f6f57766546565c9b9b414696c (diff) | |
download | poezio-def04d660925a3cacae7258de6744ba6e87f3eac.tar.gz poezio-def04d660925a3cacae7258de6744ba6e87f3eac.tar.bz2 poezio-def04d660925a3cacae7258de6744ba6e87f3eac.tar.xz poezio-def04d660925a3cacae7258de6744ba6e87f3eac.zip |
Beginning, not begining
Diffstat (limited to 'src')
-rw-r--r-- | src/windows/inputs.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/windows/inputs.py b/src/windows/inputs.py index 12d3a9a2..8102dfcc 100644 --- a/src/windows/inputs.py +++ b/src/windows/inputs.py @@ -48,7 +48,7 @@ class Input(Win): '^W': self.delete_word, 'M-d': self.delete_next_word, '^K': self.delete_end_of_line, - '^U': self.delete_begining_of_line, + '^U': self.delete_beginning_of_line, '^Y': self.paste_clipboard, '^A': self.key_home, '^E': self.key_end, @@ -154,9 +154,9 @@ class Input(Win): self.key_end() return True - def delete_begining_of_line(self): + def delete_beginning_of_line(self): """ - Cut the text from cursor to the begining of line + Cut the text from cursor to the beginning of line """ if self.pos == 0: return True @@ -189,7 +189,7 @@ class Input(Win): def key_home(self): """ - Go to the begining of line + Go to the beginning of line """ self.reset_completion() self.pos = 0 |