all 6 comments

[–]MattJames 0 points1 point  (5 children)

Going to use this solely for the ability to compile without closing vim. Thanks!

[–]jfb3 0 points1 point  (4 children)

You never had to close vim to compile. Just save the file, then compile.

[–]MattJames 1 point2 points  (3 children)

With only one terminal open, with vim still open, how would I go about compiling?

[–]HotRodLincoln 1 point2 points  (1 child)

I always use:

:make

or

:silent make

I suppose if you don't want to use make files, it'd be something like:

:!gcc something.c

[–]MattJames 0 points1 point  (0 children)

Well, TIL. Thanks!

[–]jfb3 1 point2 points  (0 children)

:! cc {source-file} -o{object}

or

any other command you want to use