summaryrefslogtreecommitdiff
path: root/src/plugins/aspell/weechat-aspell-command.c
AgeCommit message (Collapse)Author
2015-01-01core: update copyright datesSébastien Helleu
2014-11-22api: return value in function command(), remove WeeChat error after command ↵Sébastien Helleu
callback if return code is WEECHAT_RC_ERROR
2014-08-16aspell: display an error if command "/aspell setdict" is called without a ↵Sébastien Helleu
dictionary
2014-08-16aspell: remove unneeded else conditionSébastien Helleu
2014-08-15aspell: fix crash with command "/aspell addword" if no word is given (closes ↵nils_2
#164)
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-06-29aspell: fix uninitialized variable "lang" when displaying list of installed ↵Sebastien Helleu
dictionaries
2013-06-07aspell: add support of enchant library (patch #6858)Sebastien Helleu
Enchant is enabled only if the new option for cmake (or configure) is enabled: - for cmake: cmake -DENABLE_ENCHANT=ON - for configure: ./configure --enable-enchant
2013-01-31aspell: optimization on spellers to improve speed (save state by buffer), ↵Sebastien Helleu
add info "aspell_dict", add completion "aspell_dicts" Two hashtables have been added to store the spellers currently used (in all buffers) and info for each buffer: array with pointers to spellers and state of aspell for this buffer. Therefore the spellers are not destroyed and created again on each buffer switch, or each time screen is refreshed when window is split.