diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-03 10:35:25 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-03 10:35:25 -0300 |
commit | cb86eca91f9bdffe8b0214664169093d41902415 (patch) | |
tree | 8ba097bb2f3f8c03ac924b47decdfe7ec5f3e6b4 /src/nvim/os/shell.h | |
parent | 41f1678767071b037e0097e7c46eeecbe6bd6df4 (diff) | |
parent | cc34c90df7dd24c2b5319863fa8a39e4aff4ad32 (diff) | |
download | rneovim-cb86eca91f9bdffe8b0214664169093d41902415.tar.gz rneovim-cb86eca91f9bdffe8b0214664169093d41902415.tar.bz2 rneovim-cb86eca91f9bdffe8b0214664169093d41902415.zip |
Merge PR #1603 'Small refactoring and dependencies update'
Diffstat (limited to 'src/nvim/os/shell.h')
-rw-r--r-- | src/nvim/os/shell.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/nvim/os/shell.h b/src/nvim/os/shell.h index a4c588d7a3..64e7c79ba7 100644 --- a/src/nvim/os/shell.h +++ b/src/nvim/os/shell.h @@ -5,14 +5,13 @@ // Flags for mch_call_shell() second argument typedef enum { - kShellOptFilter = 1, ///< filtering text - kShellOptExpand = 2, ///< expanding wildcards - kShellOptCooked = 4, ///< set term to cooked mode - kShellOptDoOut = 8, ///< redirecting output - kShellOptSilent = 16, ///< don't print error returned by command - kShellOptRead = 32, ///< read lines and insert into buffer - kShellOptWrite = 64, ///< write lines from buffer - kShellOptHideMess = 128, ///< previously a global variable from os_unix.c + kShellOptFilter = 1, ///< filtering text + kShellOptExpand = 2, ///< expanding wildcards + kShellOptDoOut = 4, ///< redirecting output + kShellOptSilent = 8, ///< don't print error returned by command + kShellOptRead = 16, ///< read lines and insert into buffer + kShellOptWrite = 32, ///< write lines from buffer + kShellOptHideMess = 64, ///< previously a global variable from os_unix.c } ShellOpts; #ifdef INCLUDE_GENERATED_DECLARATIONS |