diff options
| author | Bram Moolenaar <Bram@vim.org> | 2012-02-20 22:18:30 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2012-02-20 22:18:30 +0100 |
| commit | f66b3fcf6ce2801e3f378827e0ed19596901a9ba (patch) | |
| tree | 46a1543aae183a8b03ce18b3572d57e04656e3f2 /src/option.h | |
| parent | 034b115568a1fc40b374b0b755d89f0a40f6d940 (diff) | |
| download | vim-git-f66b3fcf6ce2801e3f378827e0ed19596901a9ba.tar.gz | |
updated for version 7.3.446v7.3.446
Problem: Win32: External commands with special characters don't work.
Solution: Add the 'shellxescape' option.
Diffstat (limited to 'src/option.h')
| -rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 21c275342..9dd938723 100644 --- a/src/option.h +++ b/src/option.h @@ -712,6 +712,7 @@ EXTERN char_u *p_sp; /* 'shellpipe' */ #endif EXTERN char_u *p_shq; /* 'shellquote' */ EXTERN char_u *p_sxq; /* 'shellxquote' */ +EXTERN char_u *p_sxe; /* 'shellxescape' */ EXTERN char_u *p_srr; /* 'shellredir' */ #ifdef AMIGA EXTERN long p_st; /* 'shelltype' */ |
