Browse Source

Fix readme, disable dict files by default

master
Maxim Likhachev 3 years ago
parent
commit
d58d56f78e
  1. 33
      README.md
  2. 2
      plugin/look-up.vim
  3. 4
      syntax/dict.vim

33
README.md

@ -1,6 +1,7 @@
**look-up** - vim-plugin for sdcv **look-up** - vim-plugin for sdcv
##Licence ## Licence
Copyright (C) 2009-2015, Maksim Likhachev, <envrm@yandex.ru> Copyright (C) 2009-2015, Maksim Likhachev, <envrm@yandex.ru>
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
@ -16,33 +17,37 @@
You should have received a copy of the GNU General Public Licence You should have received a copy of the GNU General Public Licence
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
##Description ## Description
This script looks up a word under cursor in a dictionary using custom utility
such as sdcv (console version of StarDict program) and store the word into This script looks up a word under cursor in a dictionary using custom utility
text file with extension ".dict" in current directory (optionally). such as sdcv (console version of StarDict program) and store the word into
text file with extension ".dict" in current directory (optionally).
## Installation
##Installation Put this file into your $HOME/.vim/plugin directory (our use
Put this file into your $HOME/.vim/plugin directory (our use Pathogen/Vundle/etc) and configure your own keymaps.
Pathogen/Vundle/etc) and configure your own keymaps.
For example: For example:
> nmap fw :call Dict(expand("<cword>"))<CR> > nmap fw :call Dict(expand("<cword>"))<CR>
> vnoremap fw :call Dict(@*)<CR> > vnoremap fw :call Dict(@*)<CR>
The next two option set sdcv's command line and enables saving the words The next two option set sdcv's command line and enables saving the words
into file: into file:
> let g:sdcv_cmd = "sdcv -n " > let g:sdcv_cmd = "sdcv -n "
> let g:sdcv_save = 1 > let g:sdcv_save = 1
##Usage ## Usage
:Dict(<word>) :Dict(<word>)
##Version ## Version
1.0 1.0
##Screenshot ## Screenshot
![](https://code.envrm.info/src/look-up/raw/branch/master/look-up.png) ![](https://code.envrm.info/src/look-up/raw/branch/master/look-up.png)

2
plugin/look-up.vim

@ -26,7 +26,7 @@ if !exists("g:sdcv_cmd")
endif endif
if !exists("g:sdcv_save") if !exists("g:sdcv_save")
let g:sdcv_save = 1 let g:sdcv_save = 0
endif endif
fun! OpenDictionary(cmd, ...) fun! OpenDictionary(cmd, ...)

4
syntax/dict.vim

@ -1,7 +1,7 @@
" Vim syntax file " Vim syntax file
" Language: stardict " Language: stardict
" Author: Lihachev Maxim " Author: Maksim Likhachev <envrm@yandex.ru>
" License: GPLv3 " License: GPL3
if version < 600 if version < 600
syntax clear syntax clear

Loading…
Cancel
Save