lukesmurray / linked-notes-vscode

vscode extension for taken Zettelkasten inspired markdown notes.
https://marketplace.visualstudio.com/items?itemName=lukesmurray.linked-notes-vscode
0 stars 0 forks source link

mapping prefixes to folders #45

Closed lukesmurray closed 4 years ago

lukesmurray commented 4 years ago

I already find that I use prefixes to manage types of links. For example I almost always use '@' prefix to identify people. We could have two maps to support prefixed terms in custom folders. prefix: type and type: folder. The prefix: type map will be used to provide human readable labels to the terms. The type: folder map will be used to provide custom locations for prefixes. A folder of '' would mean the top level. As an example to support @ prefixes I would have the following configuration.

"prefixToType": {
  "@": "person"
},
"typeToFolder": {
  "person": "people"
}
lukesmurray commented 4 years ago

This is related to #31 and may want to be finished after #44.

lukesmurray commented 4 years ago

Closing this in favor of the fileManager solution proposed in #49. Prefixes and types could be maintained by the user.