0

I'm writing JS and I need sublime to look in another path where I keep my snippets. I don't want to manually copy them over. I just want sublime to look for them in another location.

How can I achieve this?

I looked in Preferences.sublime-settings and did not see any thing.

cade galt
  • 3,843
  • 8
  • 32
  • 48
  • I would recommend having a *Snippets* folder in your *Packages – User* directory, and then just keeping all your snippets there. Sublime will be able to see all of them. – Saad Nov 08 '15 at 07:19

1 Answers1

1

Why don't you simply create a symbolic link?

ln -s source_dir target_dir
idleberg
  • 12,634
  • 7
  • 43
  • 70