mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
11 lines
137 B
Bash
Executable file
11 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# ref - Check spelling of the arguments
|
|
#
|
|
# Usage: ref word ..
|
|
#
|
|
# can be used for the K command of Vim
|
|
#
|
|
spell <<EOF
|
|
$*
|
|
EOF
|