diff options
| author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-29 10:07:38 -0300 |
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-31 08:07:46 -0300 |
| commit | 2d28251a6e2850998f475c76a886121554c9b7e9 (patch) | |
| tree | 48cf4ae9525577fd6bc7d35068f1519a44e05b37 /src/os/shell.h | |
| parent | 1ab6cf47bd4218c303459efd288456e51f46033b (diff) | |
| download | rneovim-2d28251a6e2850998f475c76a886121554c9b7e9.tar.gz rneovim-2d28251a6e2850998f475c76a886121554c9b7e9.tar.bz2 rneovim-2d28251a6e2850998f475c76a886121554c9b7e9.zip | |
Extract `shell_skip_word` from `mch_call_shell`
Diffstat (limited to 'src/os/shell.h')
| -rw-r--r-- | src/os/shell.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/os/shell.h b/src/os/shell.h new file mode 100644 index 0000000000..166dd26846 --- /dev/null +++ b/src/os/shell.h @@ -0,0 +1,11 @@ +#ifndef NEOVIM_OS_SHELL_H +#define NEOVIM_OS_SHELL_H + +#include <stdbool.h> + +#include "types.h" + +void shell_skip_word(char_u **ptr); + +#endif // NEOVIM_OS_SHELL_H + |
