How can I use vim-slime to send multiple lines/regions, and can it be set up with lazy? #467
FIREBAT-66
started this conversation in
General
Replies: 2 comments 6 replies
-
|
Hi @ghostnation66 What are you trying to do exactly? Can you show some sample text and what you would like to happen? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
hi @ghostnation66 to send line 1-10, I would visually select those lines and use the regular binding (ctrl-c, ctrl-c) to send content but filter out (if I understand correctly) some line, you might consider this workaround from the advanced use-cases. The idea would be to detect and remove lines (equations) from the payload before it's sent. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment




Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, I currently have my setup set to this configuration, and I was wondering if anyone could help me make a keymap for the regions in the visual block mode? Thanks for the clarification, because I wasn't able to exactly figure out how to set the region "slurping"
return {'jpalardy/vim-slime',
keys = {
{ 'rc', 'SlimeConfig', desc = 'Slime Config' },
{ 'rr', 'SlimeSendCell/^# %%', desc = 'Slime Send Cell' },
},
config = function()
vim.g.slime_target = 'tmux'
vim.g.slime_cell_delimiter = '# %%'
vim.g.slime_bracketed_paste = 1
end,
}
Beta Was this translation helpful? Give feedback.
All reactions