Re: [PATCH v21 0/1] MR7843: cmd: Implement tab completion for command line entry.
26 Apr
2025
26 Apr
'25
3:12 p.m.
eric pouech (@epo) commented about programs/cmd/lineedit.c:
+ BOOL ignoreTrailingQuote; + BOOL isDirSearch; + BOOL haveSearchResult; + BOOL hadOneMatch; + int lastStartQuote; + int searchPos; + int insertPos; +} SEARCH_CONTEXT, *PSEARCH_CONTEXT; + + +static BOOL IsDirectoryOperation(const WCHAR *inputBuffer, const ULONG inputBufferLength) +{ + int cc = 0; + BOOL ret = FALSE; + + while (cc < inputBufferLength && (inputBuffer[cc] == L' ' || inputBuffer[cc] == L'\t')) { you need to handle '@' as well
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7843#note_101929
234
Age (days ago)
234
Last active (days ago)
0 comments
1 participants
participants (1)
-
eric pouech (@epo)