Vim Tips Wiki
(Minor cleanup)
(Change to TipImported template + severe manual clean)
Line 1: Line 1:
 
{{review}}
 
{{review}}
  +
{{TipImported
{{Tip
 
 
|id=1053
 
|id=1053
  +
|previous=1052
|title=Lookup word in dict
 
  +
|next=1054
|created=November 20, 2005 15:14
+
|created=November 20, 2005
 
|complexity=basic
 
|complexity=basic
 
|author=Jan Christoph Ebersbach
 
|author=Jan Christoph Ebersbach
 
|version=6.0
 
|version=6.0
 
|rating=3/4
 
|rating=3/4
|text=
 
 
}}
 
}}
 
Put this in your vimrc to lookup the inner or selected word in dict. Please adjust latin1 to your encoding.
 
Put this in your vimrc to lookup the inner or selected word in dict. Please adjust latin1 to your encoding.
 
   
 
<pre>
 
<pre>
nnoremap ,l mayiw`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"&lt;CR&gt;
+
nnoremap ,l mayiw`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"&lt;CR&gt;
vnoremap ,l may`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"&lt;CR&gt;
+
vnoremap ,l may`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"&lt;CR&gt;
 
</pre>
 
</pre>
   
 
==Comments==
 
==Comments==
  +
  +
----

Revision as of 10:15, 20 December 2007

Tip 1053 Printable Monobook Previous Next

created November 20, 2005 · complexity basic · author Jan Christoph Ebersbach · version 6.0


Put this in your vimrc to lookup the inner or selected word in dict. Please adjust latin1 to your encoding.

nnoremap ,l mayiw`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"<CR>
vnoremap ,l may`a:exe "!dict -P - $(echo " . @" . "\| recode latin1..utf-8)"<CR>

Comments