fyi: @benknoble
Co-authored-by: MichaĆ Majchrowicz <mmajchrowicz@afine.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
" Previous Maintainer: Will Langstroth <will@langstroth.com>
" URL: https://github.com/benknoble/vim-racket
" Last Change: 2025 Aug 09
+" 2026 Mar 31 by Vim project: use shellescape for the K mapping
if exists("b:did_ftplugin")
finish
try
let l:old_a = @a
normal! gv"ay
- call system("raco docs '". @a . "'")
+ call system("raco docs '". shellescape(@a) . "'")
redraw!
return @a
finally