Friday, February 18, 2011

GVim .vimrc Help

This is my .vimrc so far:
set nu

filetype indent on
set autoindent

map <F5> :call CompileRunGpp()<CR>
func! CompileRunGpp()
exec "w"
exec "!g++ % -o %<.exe"
exec "!./%<.exe"
endfunc
Is there a way to make my program run in a new terminal window instead of
inside GVim?
--
View this message in context: http://vim.1045645.n5.nabble.com/GVim-vimrc-Help-tp3391470p3391470.html
Sent from the Vim - General mailing list archive at Nabble.com.

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

No comments: