mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
Add / to list of word-separating characters
This commit is contained in:
parent
265f9f295e
commit
a956f0a5d7
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ class Legacy(BaseMode, component.Component):
|
||||||
|
|
||||||
# Delete a word when alt+backspace is pressed
|
# Delete a word when alt+backspace is pressed
|
||||||
elif c == 27:
|
elif c == 27:
|
||||||
sep_chars = " *?!._~-#$^;'\""
|
sep_chars = " *?!._~-#$^;'\"/"
|
||||||
deleted = 0
|
deleted = 0
|
||||||
seg_start = self.input[:self.input_cursor]
|
seg_start = self.input[:self.input_cursor]
|
||||||
seg_end = self.input[self.input_cursor:]
|
seg_end = self.input[self.input_cursor:]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue