vim-processing
vim-processing copied to clipboard
Does not work for :make or F5
I already add the processing-java to Path, and when I run it, Vim returns
:! processing-jave --sketch="C:\Windows\System32" --output=""C:\Users\Ian\AppData\Local\Temp\vim-precessing\System32"" --force --run >C:\Users\Ian\AppData\Local\Temp\VIeD5F3.tmp>&1 [No write since last change] shell returned 1"
Do I need to set something else? Win8 & processing 2.1 &vim 7.4 with Pathogen Other function like highlight the syntax works.
The thing that I find most confusing here is that the sketch filename is somehow being set to C:\Windows\System32
which if I'm not mistaken is a directory under windows, rather than the actual name of the file.
Some questions (a few of them are pretty basic, sorry not trying to be insulting, just covering all the things I can think of off the top of my head):
- when you do
:make
is your cursor in the buffer with the sketch file? - What is the full path of the sketch you're editing/running (best way to get this from vim's perspective is: `:echo expand("%:p")
- in a command shell, what happens when you (with processing-java in the path) do:
> processing-java --sketch="C:\path\to\sketch\dir" --output="C:\path\to\some\other\empty\dir" --force --run
Basially, the command line your vim is reporting is very confusing to me and I'm trying to figure out what caused it to look like that, and hopefully how to fix it.
@imcake ping