Anyway, the script I just completed is saving and sourcing the current buffer. Should prove useful for further Vim script development cycles.
The actual function looks like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 2010-08-11..2010-08-13 | |
" Saves current buffer and executes it. | |
" If the buffer doesn't have a filename, it is stored in a temp location. | |
function! SF_run() | |
if bufname("%") == "" | |
let PATH = "/tmp/".localtime().".vim" | |
else | |
let PATH = bufname("%") | |
endif | |
exec ":write ".PATH | |
exec ":source ".PATH | |
endfunction | |
map <F8> :call SF_run()<CR> |