add remove from spellcheck dict command

This commit is contained in:
chrys 2016-09-06 23:56:31 +02:00
parent e4a43931e8
commit 1aeb0a43a7
4 changed files with 7 additions and 7 deletions

View File

@ -30,6 +30,7 @@
1-FENRIR,1-KEY_D=date
#=spell_check
#=add_word_to_spell_check
#=remove_word_from_spell_check
#=foreward_keypress
#=inc_speech_volume
#=dec_speech_volume

View File

@ -30,6 +30,7 @@
#=date
#=spell_check
#=add_word_to_spell_check
#=remove_word_from_spell_check
#=foreward_keypress
#=inc_speech_volume
#=dec_speech_volume

View File

@ -30,6 +30,7 @@
1-FENRIR,1-KEY_R=date
1-FENRIR,1-KEY_M=spell_check
1-FENRIR,1-KEY_G=add_word_to_spell_check
#=remove_word_from_spell_check
1-FENRIR,1-KEY_A=foreward_keypress
#1-FENRIR,1-KEY_F2=inc_speech_volume
#1-FENRIR,1-KEY_F3=dec_sound_volume

View File

@ -33,11 +33,8 @@ class command():
x, y, currWord = word_utils.getCurrentWord(cursorPos['x'], 0, newContent)
if currWord != '':
if self.spellChecker.check(currWord):
environment['runtime']['outputManager'].presentText(environment, 'not misspelled',soundIcon='mispell', interrupt=True)
else:
if self.spellChecker.is_added(currWord):
environment['runtime']['outputManager'].presentText(environment, 'not misspelled',soundIcon='Cancel', interrupt=True)
environment['runtime']['outputManager'].presentText(environment, currWord + ' is already in dict',soundIcon='Cancel', interrupt=True)
else:
self.spellChecker.add(currWord)
environment['runtime']['outputManager'].presentText(environment, currWord + ' added',soundIcon='Accept', interrupt=True)