mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-03 22:10:49 +08:00
🎨 Open the last workspace by default https://github.com/siyuan-note/siyuan/issues/10570
This commit is contained in:
parent
271cf982f7
commit
6ff917f48d
@ -587,6 +587,18 @@ func Close(force bool, execInstallPkg int) (exitCode int) {
|
||||
clearWorkspaceTemp()
|
||||
clearCorruptedNotebooks()
|
||||
clearPortJSON()
|
||||
|
||||
// 将当前工作空间放到工作空间列表的最后一个
|
||||
// Open the last workspace by default https://github.com/siyuan-note/siyuan/issues/10570
|
||||
workspacePaths, err := util.ReadWorkspacePaths()
|
||||
if nil != err {
|
||||
logging.LogErrorf("read workspace paths failed: %s", err)
|
||||
} else {
|
||||
workspacePaths = gulu.Str.RemoveElem(workspacePaths, util.WorkspaceDir)
|
||||
workspacePaths = append(workspacePaths, util.WorkspaceDir)
|
||||
util.WriteWorkspacePaths(workspacePaths)
|
||||
}
|
||||
|
||||
util.UnlockWorkspace()
|
||||
|
||||
time.Sleep(500 * time.Millisecond)
|
||||
|
@ -243,7 +243,6 @@ func initWorkspaceDir(workspaceArg string) {
|
||||
} else {
|
||||
workspacePaths, _ = ReadWorkspacePaths()
|
||||
if 0 < len(workspacePaths) {
|
||||
// 取最后一个(也就是最近打开的)工作空间
|
||||
WorkspaceDir = workspacePaths[len(workspacePaths)-1]
|
||||
} else {
|
||||
WorkspaceDir = defaultWorkspaceDir
|
||||
|
Loading…
Reference in New Issue
Block a user