Skip to content

v0.3.0

Compare
Choose a tag to compare
@Ron89 Ron89 released this 23 Apr 06:11
· 153 commits to master since this release

Thesaurus Query Plugin v0.3 made two changes:

  • added multi-language support
  • added insert-mode auto-complete like word replacing interface(invoked by
    ctrl-x ctrl-u), complementing the existing normal-mode spell like word
    replacing interface.

Detailed changelog is attached below.

CHANGELOG from v0.2.0

Added

  • multi-language thesaurus query support, currently English('en') and
    Russian('ru') are supported
  • b:tq_language and g:tq_language to setup which language source you
    prefer the plugin to query
  • use completefunc for insertmode autocomplete (Issue #7)
  • variable let g:tq_use_vim_autocomplete = 1 to activate completefunc

Changed

  • (internal) words and query results in Python are now all utf-8 decoded
  • made plugin into autoload plugin to speed-up vim startup

Depreciated

  • all variables starting with g:thesaurus_query#, replacing the prefix of
    all of them by g:tq_

Removed

  • variable g:thesaurus_query#map_keys, use g:tq_map_keys instead.

Fixed

  • fix out-of-bound user input exception in candidate choosing.
  • add KeyboardInterrupt exception handler for candidate choosing.(closes
    Issue #8 )