Configuring hotkey for moving a file

if you have time and inclination, check out the video i linked the other other day:

then using the method talked about in the video
you can have your templates based on triggers move files into dedicated folders

so if your template had a computer - prefix or any other you added in the meta template picker, you can use this templater snippet to move the file in the Computer stuff folder (you can change the folder name and the properties here of course):

<%-*
var cleanTitle = tp.user.getTitleSnippet(tp.file.title)
var title = `${cleanTitle}`
await tp.file.rename(`${title}`)
await tp.file.move("Computer stuff" + "/" + `${cleanTitle}`)
_%>
---
title: <%tp.user.getTitleSnippet(tp.file.title)%>
tags:
  - computer
created: <% tp.date.now("YYYY-MM-DD")%>
modified: <% tp.date.now("YYYY-MM-DD")%>
---

# <%-* tR += tp.user.getTitleSnippet(tp.file.title) -%>


<% tp.file.cursor(1) %>
  • save and name the snippet with a name referenced in the meta template picker file

tip: no need to write anything from the video on your own as you can access the files and lines talked about in the video from here:

you can then add any number of triggers and templates, including dailies, etc.