Vim #2123
Replies: 2 comments 3 replies
-
fwiw, I think using Pluto's new autoreload feature combined with vim/neovim's simplescreenrecorder-2022-05-19_18.34.13.mp4I just add something like this to my init.vim (assuming vim) set autoread
set updatetime=100
autocmd CursorHold * checktime | call feedkeys("lh") or this to my init.lua (assuming neovim) -- Aliases
local opt = vim.opt
local cmd = vim.cmd
opt.updatetime = 100
cmd[[au CursorHold * checktime | call feedkeys("lh")]] to get the desired behavior when the buffer is not focused. More discussion here: https://vi.stackexchange.com/a/14833/36984 I think |
Beta Was this translation helpful? Give feedback.
-
I'm a huge fan of Vim myself and use it all the time. For Pluto though I make an exception and stick to the default shortcuts which are mostly similar to Visual Studio Code. See #65 for more info. There also was once a Vim plugin for Pluto if I remember correctly. It was mentioned somewhere on Discourse. Cannot find it back th |
Beta Was this translation helpful? Give feedback.
-
Thank you for this amazing project.
Is there a way to use vim binding with
Pluto.jl
?Beta Was this translation helpful? Give feedback.
All reactions