Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to have a simple sublime-command to open a specific (dot config) file in my home folder. Is there a variable or other magic I can use like ${packages}, but for the user's home folder?

Currently I have (Default.sublime-commands)

{
    "caption": "Edit my config",
    "command": "open_file",
    "args": {
        "file": "/Users/MyName/.myconfig"
    }
}

but want to get rid of the hard coded user name.

Unfortunately I can't find anything in the api "documentation" of sublime.

share|improve this question
Don't know if it will work, but try: "file": sublime.packages_path() + "Users/MyName/.myconfig" in the args section – Vlakarados Aug 29 '12 at 9:15
It's not that I want to have the packages path, that would be possible with ${packages}, but want to have something like ${home} (which doesn't work) for the user's home dir. – Karsten S. Aug 29 '12 at 12:06
Maybe hardcode? – Vlakarados Aug 29 '12 at 12:13
What about ~? Let the OS do the work? – dbw Dec 10 '12 at 2:46
Of course, I tried ~ first, but it doesn't work. – Karsten S. Dec 10 '12 at 8:22
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.