diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-24 16:45:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-24 16:45:38 +0000 |
commit | 15bfa09582f6056fb5e69426b1fe36b58026a7e1 (patch) | |
tree | e8b2b90ab03966310e783ca37fe21d2ded770cc6 /src/ex_docmd.c | |
parent | 3a0254090d4a197fc748be3b9ff387732a988052 (diff) | |
download | vim-git-15bfa09582f6056fb5e69426b1fe36b58026a7e1.tar.gz |
updated for version 7.2b-016v7.2b.016
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 246c4c0b2..7247d8cbc 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -7095,10 +7095,11 @@ ex_splitview(eap) # endif && eap->cmdidx != CMD_new) { +# ifdef FEAT_AUTOCMD if ( -# ifdef FEAT_GUI +# ifdef FEAT_GUI !gui.in_use && -# endif +# endif au_has_group((char_u *)"FileExplorer")) { /* No browsing supported but we do have the file explorer: @@ -7107,6 +7108,7 @@ ex_splitview(eap) eap->arg = (char_u *)"."; } else +# endif { fname = do_browse(0, (char_u *)_("Edit File in new window"), eap->arg, NULL, NULL, NULL, curbuf); |