Is it possibly to run a PHP file from within vim? What im trying to do here is having a shortcut so whenever I need to run the file I\'m editing to skip exiting vim and call
You can use:
:!php %
% stands for the current document, and :! executes any shell command.
%
:!
You can also create a shortcut for it.