💾 Archived View for bbs.geminispace.org › s › vim › 5497 captured on 2024-07-09 at 05:05:23. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-06-16)
-=-=-=-=-=-=-
Hmm. What the heck does it substitute?
2023-09-23 · 10 months ago
🐦 wasolili [...] · 2023-09-23 at 17:11:
the substitute function is replacing ' with '\''. shellescape will do basically the same thing, but will adjust how it escapes characters based on the shell you're using. so it will work with multiple different shells
echo system("tmux send-keys -t " . g:tmux_target . " " . shellescape(a:text))
Vim as an IDE — A combination of tmux and vim makes a minimal REPL IDE. I managed to cobble it together in a few minutes in spite of knowing nothing about vimscript and nearly nothing about tmux. My workflow is this: I open tmux and split it into at least two panes. The first one is where I run my Forth in, and according to tmux the pane is named '%0'. The second one is for vim. Now I need vim to send paragraphs of source into pane %0, as if they were typed. Tmux has a function 'send-keys'...
💬 stack [mod] · 3 comments · 4 likes · 2023-09-16 · 10 months ago