summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-11 16:58:51 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-11 16:58:51 +0200
commit9028b10dfe3a00e505bf1b720f515dab91913b5e (patch)
tree637b3f40fd0c18f01fd682273e266f8fe2c3507f /src/quickfix.c
parent7e6d3bd3da555e151ba518081a964a0cdb39ac33 (diff)
downloadvim-git-9028b10dfe3a00e505bf1b720f515dab91913b5e.tar.gz
Support :browse for commands that use an error file argument. (Lech Lorens)
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 8fef225e9..c2543a124 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -2951,6 +2951,18 @@ ex_cfile(eap)
|| eap->cmdidx == CMD_laddfile)
wp = curwin;
+#ifdef FEAT_BROWSE
+ if (cmdmod.browse)
+ {
+ char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg,
+ NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL);
+ if (browse_file == NULL)
+ return;
+ set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0);
+ vim_free(browse_file);
+ }
+ else
+#endif
if (*eap->arg != NUL)
set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0);