You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm a front end developer. I was used to coding in vim and previewing demo in browser, which is efficient. But when I use vim-processing, I have to stop previewing the sketch when i write code, vice versa. Can anyone tell me how to code and preview in parallel ?
The text was updated successfully, but these errors were encountered:
In Vim 8 / Neovim, you can run make asynchronously with a plugin like AsyncRun. With this plugin and the command below in your .vimrc, you just have to call :Make to trigger processing-java in the background.
command! -bang -nargs=* -complete=file Make AsyncRun -program=make @ <args>
This way you're able to code and preview the result in parallel.
I'm a front end developer. I was used to coding in vim and previewing demo in browser, which is efficient. But when I use
vim-processing
, I have to stop previewing the sketch when i write code, vice versa. Can anyone tell me how to code and preview in parallel ?The text was updated successfully, but these errors were encountered: