fyi @benknoble
Signed-off-by: Christian Brabandt <cb@256bit.org>
" URL: https://github.com/benknoble/vim-racket
" Last Change: 2025 Aug 09
" 2026 Mar 31 by Vim project: use shellescape for the K mapping
+" 2026 Apr 01 by Vim project: make K mapping more robust for shell injection
if exists("b:did_ftplugin")
finish
try
let l:old_a = @a
normal! gv"ay
- call system("raco docs '". shellescape(@a) . "'")
+ call system("raco docs -- ". string(shellescape(@a)))
redraw!
return @a
finally