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:
+typedef struct _SEARCH_CONTEXT +{ + HANDLE hSearch; + WIN32_FIND_DATAW findData; + BOOL haveQuotes; + 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) I'd like to see the code for specific handling of first word in a separate commit (just for clarity and make review easier)
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7843#note_101927
234
Age (days ago)
234
Last active (days ago)
0 comments
1 participants
participants (1)
-
eric pouech (@epo)