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

document alfred and auto hot key workflows #43

Open lukesmurray opened 4 years ago

lukesmurray commented 4 years ago

Autohotkey script.

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

Capslock::Esc  ; map caps lock to escape
return

^+s:: ; Ctrl + Shift + s
runwait,%ComSpec% /c "code --new-window "C:\Users\t-lumurr\Dropbox (MIT)\_slipbox"",,hide
return

^+n:: ; Ctrl + Shift + n
runwait,%ComSpec% /c "code --new-window "C:\Users\t-lumurr\Documents\_notebook"",,hide
return