mirror of
https://github.com/vim/vim
synced 2025-03-16 06:47:52 +01:00
12 lines
137 B
Text
12 lines
137 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# ref - Check spelling of the arguments
|
||
|
#
|
||
|
# Usage: ref word ..
|
||
|
#
|
||
|
# can be used for the K command of Vim
|
||
|
#
|
||
|
spell <<EOF
|
||
|
$*
|
||
|
EOF
|