From 1c960970aa0c195ee586e267bcb30cfd323ac937 Mon Sep 17 00:00:00 2001 From: HE Chong Date: Fri, 4 Mar 2016 04:08:47 +0800 Subject: [PATCH] typo fixing Former-commit-id: b0b9af724e17e2eccf96864024676ea8ec79fc0f --- doc/thesaurus_query.txt | 4 ++-- plugin/thesaurus_query.vim | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/thesaurus_query.txt b/doc/thesaurus_query.txt index db290ff..a976f06 100644 --- a/doc/thesaurus_query.txt +++ b/doc/thesaurus_query.txt @@ -12,7 +12,7 @@ CONTENTS *thesaurus_query* |g:thesaurus_query#truncation_on_relavance| |g:thesaurus_query#truncation_on_definition_num| |g:thesaurus_query#truncation_on_syno_list_size| - |g:thesaurus_query#local_thesaurus_source_as_primary| + |g:thesaurus_query#use_local_thesaurus_source_as_primary| |g:thesaurus_query#use_alternative_backend| |g:thesaurus_query#mthesaur_file| 5. Licence ..................................... |thesaurus_query-licence| @@ -110,7 +110,7 @@ Currently there are 5 global variables used to customize the behavior. interface, thesaurus split will NOT be truncated. default=-1 -*g:thesaurus_query#local_thesaurus_source_as_primary* +*g:thesaurus_query#use_local_thesaurus_source_as_primary* This variable is used when initiating core query handler. It determine the priority between online thesaurus backend(based on Thesaurus.com) and local thesaurus backend(based on mthesaur.txt). If diff --git a/plugin/thesaurus_query.vim b/plugin/thesaurus_query.vim index da21fff..55fba37 100644 --- a/plugin/thesaurus_query.vim +++ b/plugin/thesaurus_query.vim @@ -128,7 +128,7 @@ endif " 0: query with online backend first. " 1: query with local backend first. " default=0 -if !exists("g:thesaurus_query#local_thesaurus_source_as_primary") +if !exists("g:thesaurus_query#use_local_thesaurus_source_as_primary") let g:thesaurus_query#use_local_thesaurus_source_as_primary = 0 endif