summaryrefslogtreecommitdiff
path: root/src/plugins/aspell
AgeCommit message (Collapse)Author
2015-07-19aspell: fix typo in a commentSébastien Helleu
2015-07-04api: fix type of value returned by functions utf8_prev_char, utf8_next_char ↵Sébastien Helleu
and utf8_add_offset
2015-07-04core: add missing comments before functions when the result must be freed ↵Sébastien Helleu
after use
2015-04-30core: add comments after some #endifSébastien Helleu
2015-04-11aspell: add bar item "aspell_suggest" in /help aspell (closes #390)Sébastien Helleu
2015-01-15core: add priority in plugins to initialize them in orderSébastien Helleu
Current order is: charset, logger, exec, trigger, aspell, alias, fifo, xfer, irc, relay, guile/lua/perl/python/ruby/tcl, script.
2015-01-01core: update copyright datesSébastien Helleu
2014-11-28aspell: rename callback for info "aspell_dict"Sé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-09-20aspell: fix compilation with enchant version older than 1.6.0 (closes #192)Sébastien Helleu
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-07-14aspell: rename variable "utf8_char_int" to "code_point"Sébastien Helleu
2014-04-12core: use lower case for CMake keywordsSébastien Helleu
2014-03-19core: fix use of reserved C identifiers in headers (closes #31)Sebastien Helleu
2014-02-10api: add integer return code for functions hook_{signal|hsignal}_sendSebastien Helleu
2014-01-18core: reformat hook_command argumentsSebastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-11-30aspell: fix detection of nicks when there are non-alphanumeric chars around ↵Sebastien Helleu
and in private buffers
2013-11-30aspell: fix detection of nicks when there is nick completer at the endSebastien Helleu
2013-11-30aspell: fix detection of nicks with non-alphanumeric charsSebastien Helleu
2013-11-18core: remove "v" before versions displayed by /debug libsSebastien Helleu
2013-11-17aspell: display aspell/enchant version on signal "debug_libs"Sebastien Helleu
2013-11-09aspell: load plugin even if options can not be read in aspell.conf (with ↵Sebastien Helleu
warnings)
2013-10-05core: move the "-no-undefined" from LDFLAGS in configure.ac to Makefile.am ↵Sebastien Helleu
in plugins This "-no-undefined" was causing an error when detecting "ld" lib on Cygwin.
2013-09-20aspell: fix detection of word start/end when there are apostrophes or minus ↵Sebastien Helleu
chars before/after word (thanks to Nils Görs)
2013-08-19core: add syntax "@buffer:item" in bar items to force the buffer used when ↵Sebastien Helleu
displaying the bar item (task #12717)
2013-07-20aspell: rename option aspell.look.color to aspell.color.misspelled, add ↵Sebastien Helleu
option aspell.color.suggestions
2013-07-20core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.amSebastien 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-03-17core: fix typos in many comments and some stringsSebastien Helleu
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.
2013-01-11aspell: fix spellers used when switching bufferSebastien Helleu
The bug happened when two buffers have different number of dictionaries and start with same dictionaries. For example buffer #1 with [en,fr] and buffer #2 with [en]. When switching from buffer #1 to buffer #2, aspell does not use only [en], but [en,fr].
2013-01-11Revert "aspell: store dictionaries in buffer local variable "aspell_dict""Sebastien Helleu
This reverts commit 8b61a557640e62e67f6eb7349c3a12cca9b43b5e. The local variable in buffers introduced new display bugs and would need some extra code and optimizations to fix. This will be reintroduced after the release of version 0.4.0.
2013-01-10aspell: store dictionaries in buffer local variable "aspell_dict"Sebastien Helleu
2013-01-10core: fix some copyright datesSebastien Helleu
2013-01-04aspell: ignore self and remote nicks in private buffersSebastien Helleu
2013-01-01aspell: fix compilation warningSebastien Helleu
2013-01-01aspell: add signal "aspell_suggest" (sent when new suggestions are displayed)Sebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-11-16aspell: refresh bar item "aspell_suggest" when aspell is enabled/disabled ↵Sebastien Helleu
(bug #37744)
2012-11-04aspell: add bar item "aspell_suggest": suggestions for misspelled word at ↵Sebastien Helleu
cursor (task #12061) (patch from Nils Görs)
2012-11-04aspell: update bar item "aspell_dict" only if spellers have changedSebastien Helleu
2012-11-04aspell: fix creation of spellers when number of dictionaries is different ↵Sebastien Helleu
between two buffers
2012-10-06aspell: add bar item "aspell_dict" (dictionary used on current buffer)Nils Görs
2012-08-02core: update description of plugins and translate them in output of /pluginSebastien Helleu