#//////////////////////////////////////////////////////////////////////
#----------------------------------------------------------------------
#
# dic -- search TheFreeDictionary.com for a word using ddgr
#
#----------------------------------------------------------------------
#//////////////////////////////////////////////////////////////////////
# PATH AND NAME FOR FRIENDLY USE
#//////////////////////////////////////////////////////////////////////
#----------------------------------------------------------------------
_path=$0
_name="${_path##*/}"
#----------------------------------------------------------------------
#//////////////////////////////////////////////////////////////////////
# FUNCTIONS
#//////////////////////////////////////////////////////////////////////
#----------------------------------------------------------------------
#fxn(vim
# NO FUNCTIONS
#}
#----------------------------------------------------------------------
#//////////////////////////////////////////////////////////////////////
# INTERNAL AFFAIRS
#//////////////////////////////////////////////////////////////////////
#----------------------------------------------------------------------
if [ $BASH_SOURCE = "$_path" ] ; then # script called directly
ddgr -w www.thefreedictionary.com $1
fi
#----------------------------------------------------------------------
#//////////////////////////////////////////////////////////////////////
# END OF dic (it ain't much, but it's honest work) — 220124.1501
#//////////////////////////////////////////////////////////////////////
CTRL+C
andCTRL+V
- is mapped to the+
register. The other clipboard stores the last selected text and can be pasted with middle-click - and in Vim it's mapped to the*
register. – Idan Arye May 31 '12 at 14:35