How to execute file that I'm editing in VI(M) and get output in split window (like in SciTE)?

Of course I could execute it like that:

:!scriptname

But is it posible to avoid writing script name and how to get output in split window instead just bottom of the screen?

link|improve this question

6  
:!% will let you avoid writing 'scriptname'. The solutions below are better, but I thought I'd mention this in case you decide :!% is good enough. – overthink Jun 5 '09 at 0:06
6  
Another note, you can use %:p (instead of just %) to refer to the current file's absolute path. This might be necessary if your current directory is somewhere else. – andy Jun 5 '09 at 2:57
1  
to run ruby scripts :!ruby % will do the trick – Alex Perrier Apr 10 '11 at 11:13
feedback

4 Answers

up vote 32 down vote accepted

There is the make command. It runs the command set in the makeprg option. Use % as a placeholder for the current file name. For example, if you were editing a python script:

:set makeprg=python\ %

Yes, you need to escape the space. After this you can simply run:

:make

If you wish, you can set the autowrite option and it will save automatically before running the makeprg:

:set autowrite

This solves the execute part. Don't know any way of getting that output into a split window that doesn't involve redirection to file.

link|improve this answer
2  
Actually, your solution does get the output to a split window. Use :copen to open up the "error list" produced by running :make.in its own window. Unfortunately, to get the output to be formatted properly, some finagling of the errorformat option is necessary. Otherwise output will be presumed to be of the format gcc puts out. – Conspicuous Compiler Jun 29 '09 at 10:47
You're damn sure about "finagling" errorformat. It look like some perl code I've seen... – R. Martinho Fernandes Jul 1 '09 at 8:49
feedback

To access the current buffer's filename, use %. To get it into a variable you can use the expand() function. To open a new window with a new buffer, use :new or :vnew. To pipe the output from a command into the current buffer, use :.! . Putting it all together:

:let f=expand("%")|vnew|execute '.!ruby "' . f . '"'

obviously replacing ruby with whatever command you want. I used execute so I could surround the filename with quotation marks, so it'll work if the filename has spaces in it.

link|improve this answer
Do you know to make a custom command out of your solution? – baboonWorksFine Jun 14 '11 at 4:50
feedback

For Shell script I've used

:set makeprg=%

:make
link|improve this answer
feedback

I use a slightly more intrusive mechanism through maps:

map ;e :w<CR>:exe ":!python " . getreg("%") . "" <CR>

Just makes it so I don't have to save, then go. Just go.

link|improve this answer
1  
If you set the autowrite option, you can run :make and it... auto saves before. – R. Martinho Fernandes Jun 29 '09 at 10:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.