15
15
16
16
static int cmd_showtail ; // Only show path tail in lists ?
17
17
18
+ static void set_context_for_wildcard_arg (exarg_T * eap , char_u * arg , int usefilter , expand_T * xp , int * complp );
18
19
static int ExpandFromContext (expand_T * xp , char_u * , char_u * * * , int * , int );
19
20
static char_u * showmatches_gettail (char_u * s );
20
21
static int expand_showtail (expand_T * xp );
@@ -230,17 +231,17 @@ nextwild(
230
231
if (xp -> xp_numfiles == -1 )
231
232
{
232
233
#ifdef FEAT_EVAL
233
- if (ccline -> input_fn && ccline -> xp_context == EXPAND_COMMANDS )
234
+ if (ccline -> input_fn && ccline -> xp_context == EXPAND_COMMANDS )
234
235
{
235
236
// Expand commands typed in input() function
236
237
set_cmd_context (xp , ccline -> cmdbuff , ccline -> cmdlen , ccline -> cmdpos , FALSE);
237
- }
238
- else
238
+ }
239
+ else
239
240
#endif
240
- {
241
+ {
241
242
set_expand_context (xp );
242
- }
243
- cmd_showtail = expand_showtail (xp );
243
+ }
244
+ cmd_showtail = expand_showtail (xp );
244
245
}
245
246
246
247
if (xp -> xp_context == EXPAND_UNSUCCESSFUL )
@@ -2723,6 +2724,7 @@ set_cmd_context(
2723
2724
{
2724
2725
#ifdef FEAT_EVAL
2725
2726
cmdline_info_T * ccline = get_cmdline_info ();
2727
+ int context ;
2726
2728
#endif
2727
2729
int old_char = NUL ;
2728
2730
char_u * nextcomm ;
@@ -2745,6 +2747,12 @@ set_cmd_context(
2745
2747
xp -> xp_context = ccline -> xp_context ;
2746
2748
xp -> xp_pattern = ccline -> cmdbuff ;
2747
2749
xp -> xp_arg = ccline -> xp_arg ;
2750
+ if (xp -> xp_context == EXPAND_SHELLCMDLINE )
2751
+ {
2752
+ context = xp -> xp_context ;
2753
+ set_context_for_wildcard_arg (NULL , xp -> xp_pattern , FALSE, xp ,
2754
+ & context );
2755
+ }
2748
2756
}
2749
2757
else
2750
2758
#endif
0 commit comments