diff options
author | Daniel Carl <danielcarl@gmx.de> | 2013-06-10 22:52:47 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2013-06-10 22:53:30 +0200 |
commit | 20dd1149b734c82ebc804c5c4d4d9487ddb37be3 (patch) | |
tree | 63ac3acd42bd760529a980caace3a497fb6bcac8 /src/command.h | |
parent | 0c6d80946e62174fa5c4cbec897afe1ffa3c967e (diff) |
Added new command :shellcmd to run shell commands (#25).
This is the first test for this way of working with vimb. There might be
security issues related to this and we should check if the uri is always
proper escaped.
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h index 326d5cb..f0e101c 100644 --- a/src/command.h +++ b/src/command.h @@ -78,5 +78,6 @@ gboolean command_editor(const Arg *arg); gboolean command_nextprev(const Arg *arg); gboolean command_descent(const Arg *arg); gboolean command_save(const Arg *arg); +gboolean command_shellcmd(const Arg *arg); #endif /* end of include guard: _COMMAND_H */ |