In Emacs one can add certain files to one’s init.el file which one can then open easily using a shortcut key without having to look for the file in question, such as:
(global-set-key (kbd "C-c g") (lambda() (interactive)(find-file "/home/user//commands.py")))
I would like to be able to do something similar in Sublime. Could someone guide me on the best way to achieve this?