Reputation: 4161
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.
Upvotes: 0
Views: 44
Reputation: 12882
Why don't you simply create a symbolic link?
ln -s source_dir target_dir
Upvotes: 1