Global: applies Copilot's suggestions

This commit is contained in:
李通洲
2026-03-06 18:22:44 +08:00
parent 1b702e123e
commit 53ffe8459f
5 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ const char* ffDetectDisksImpl(FFDiskOptions* options, FFlist* disks)
// For cross-platform portability; used by `presets/examples/13.jsonc`
if (options->folders.length == 1 && options->folders.chars[0] == '/')
{
wchar_t path[16];
wchar_t path[PATH_MAX];
GetSystemWindowsDirectoryW(path, ARRAY_SIZE(path)); // Loads from KernelBaseGlobalData, very fast
options->folders.chars[0] = (char) path[0];
ffStrbufAppendS(&options->folders, ":\\");
+3 -5
View File
@@ -68,7 +68,7 @@ bool ffPrintTitle(FFTitleOptions* options)
}
else
ffStrbufSet(&cwdTilde, &instance.state.platform.cwd);
ffStrbufTrimRight(&cwdTilde, '/');
if (cwdTilde.length > 1) ffStrbufTrimRight(&cwdTilde, '/');
FF_PRINT_FORMAT_CHECKED(FF_TITLE_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, ((FFformatarg[]){
FF_FORMAT_ARG(instance.state.platform.userName, "user-name"),
@@ -86,8 +86,7 @@ bool ffPrintTitle(FFTitleOptions* options)
FF_FORMAT_ARG(instance.state.platform.sid, "user-id"),
#endif
FF_FORMAT_ARG(instance.state.platform.pid, "pid"),
FF_FORMAT_ARG(instance.state.platform.cwd, "cwd"),
FF_FORMAT_ARG(cwdTilde, "cwd-tilde"),
FF_FORMAT_ARG(cwdTilde, "cwd"),
}));
}
@@ -202,7 +201,6 @@ FFModuleBaseInfo ffTitleModuleInfo = {
{"Full user name", "full-user-name"},
{"UID (*nix) / SID (Windows)", "user-id"},
{"PID of current process", "pid"},
{"Current working directory", "cwd"},
{"CWD with home dir replaced by `~`, and trims trailing `/`", "cwd-tilde"},
{"CWD with home dir replaced by `~`", "cwd"},
}))
};