I'm trying to configure vim as my primary coding program. I have figured how to compile single files, but when I go to execute the program from within vim, I keep getting a 127 error code. I have a aliased on my box to ./a.out, however when I issue the command :!a from vim, it doesn't work. :!./a.out does. Does anyone know why this is?
|
|
|||
|
|
|
Aliases are defined in rc files that are sourced by interactive shell only and work only in interactive mode (vim does pass everything to shell, it never executes anything except the shell directly with fork+execve). By default shell launched from vim starts in non-interactive mode hence
, then shell will be launched in interactive mode and |
|||||||
|
|
If you want to make executing your
then you can do
then a single key Another option (which is frowned upon for security reasons) is to add the current directory to your
which will allow you to run your program with just
Given this, EDIT: ZyX is correct-er. :) I'll leave the answer here for the other information. |
|||||||||||
|