Add / to list of word-separating characters

This commit is contained in:
Asmageddon 2012-05-30 21:56:55 +02:00
parent 265f9f295e
commit a956f0a5d7
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ class Legacy(BaseMode, component.Component):
# Delete a word when alt+backspace is pressed
elif c == 27:
sep_chars = " *?!._~-#$^;'\""
sep_chars = " *?!._~-#$^;'\"/"
deleted = 0
seg_start = self.input[:self.input_cursor]
seg_end = self.input[self.input_cursor:]