In vim, you can set an option with :set . for instance
: set spell
to enable spell management. AND
: set spellfile = / home / custom_spell.txt
to set the location of the custom spell file.
You can print the value of the option with an echo. for instance
echo & spellfile
Now I would like to copy the value of the spellfile parameter to the buffer. How can i do this?
source share