Home
last modified time | relevance | path

Searched refs:shname (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dstrings.c158 char_u *shname; in vim_strsave_shellescape() local
175 shname = gettail(p_sh); in vim_strsave_shellescape()
176 powershell = strstr((char *)shname, "pwsh") != NULL; in vim_strsave_shellescape()
178 powershell = powershell || strstr((char *)shname, "powershell") != NULL; in vim_strsave_shellescape()
H A Dfileio.c5239 char_u *shname; in vim_tempname() local
5265 shname = gettail(p_sh); in vim_tempname()
5266 if ((*p_shcf == '-' && !(strstr((char *)shname, "powershell") != NULL in vim_tempname()
5267 || strstr((char *)shname, "pwsh") != NULL )) in vim_tempname()
H A Dos_win32.c2138 char_u *shname = NULL; in executable_exists() local
2146 shname = gettail(p_sh); in executable_exists()
2147 if (strstr((char *)shname, "sh") != NULL && in executable_exists()
2148 !(strstr((char *)shname, "powershell") != NULL in executable_exists()
2149 || strstr((char *)shname, "pwsh") != NULL)) in executable_exists()