From: Thomas Csovcsity <thc.fr13nd@gmail.com> Improvement: Since 'cd ../' works in wineconsole, tab completion should too. This not like win10 cmd, because 'cd ../' fails there. Interestingly tab completion for 'cd ../' shows results for actual path and not for the parent folder. It fails only after enter like cd command does for using '/' instead of '\'. wineconsole behaves more like PowerShell on win10, which accepts '/' as delimiter, but it replaces '/' with '\' on completion. --- programs/cmd/wcmdmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c index a47a62424c1..23b4a06f70f 100644 --- a/programs/cmd/wcmdmain.c +++ b/programs/cmd/wcmdmain.c @@ -36,7 +36,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cmd); /* Delimiters for tab-completion support */ #define BASE_DELIMS L",=;~!^&()+{}[]" #define PATH_SEPARATION_DELIMS L" " BASE_DELIMS -#define INTRA_PATH_DELIMS L"\\:" BASE_DELIMS +#define INTRA_PATH_DELIMS L"\\:/" BASE_DELIMS typedef struct _SEARCH_CONTEXT { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9854