mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 03:59:03 +00:00
fix #21: always create quick notes relative to root
This commit is contained in:
parent
5cef2b0ed7
commit
b8326526ef
16
main.js
16
main.js
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* obsidian-tray v0.3.3
|
* obsidian-tray v0.3.4
|
||||||
* (c) 2023 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
* (c) 2023 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
* (https://github.com/dragonwocky/obsidian-tray/) under the MIT license
|
* (https://github.com/dragonwocky/obsidian-tray/) under the MIT license
|
||||||
*/
|
*/
|
||||||
@ -130,8 +130,18 @@ const addQuickNote = () => {
|
|||||||
date = obsidian.moment().format(pattern),
|
date = obsidian.moment().format(pattern),
|
||||||
name = obsidian
|
name = obsidian
|
||||||
.normalizePath(`${quickNoteLocation ?? ""}/${date}`)
|
.normalizePath(`${quickNoteLocation ?? ""}/${date}`)
|
||||||
.replace(/\*|"|\\|<|>|:|\||\?/g, "-");
|
.replace(/\*|"|\\|<|>|:|\||\?/g, "-"),
|
||||||
plugin.app.fileManager.createAndOpenMarkdownFile(name);
|
// manually create and open file instead of depending
|
||||||
|
// on createAndOpenMarkdownFile to force file creation
|
||||||
|
// relative to the root instead of the active file
|
||||||
|
// (in case user has default location for new notes
|
||||||
|
// set to "same folder as current file")
|
||||||
|
leaf = plugin.app.workspace.getLeaf(),
|
||||||
|
root = plugin.app.fileManager.getNewFileParent(""),
|
||||||
|
openMode = { active: true, state: { mode: "source" } };
|
||||||
|
plugin.app.fileManager
|
||||||
|
.createNewMarkdownFile(root, name)
|
||||||
|
.then((file) => leaf.openFile(file, openMode));
|
||||||
showWindows();
|
showWindows();
|
||||||
},
|
},
|
||||||
replaceVaultName = (str) => {
|
replaceVaultName = (str) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user