Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I installed Sublime Text and wanted to know how to open rb files in it from terminal. I saw this thread and I see that I can make Sublime my core editor, but I want to be able to type

sublime file.rb

How do I do this in Win7?

share|improve this question
the prefix sublime isn't the important part. it could be any one word command really. – Mehul Kar Feb 25 '12 at 2:32

9 Answers

up vote 47 down vote accepted

If you're using cmd and you're not bothered about the sublime_text command, you could just add the sublime text installation directory to your PATH, then type:

sublime_text file.rb

If you're using cygwin with its default bash shell, you can just use an alias like the post you linked to:

echo 'alias subl="/cygdrive/c/Program\ Files/Sublime\ Text\ 2/sublime_text.exe"' >> ~/.bashrc

Personally, I add a doskey (in a .bat file set to autorun with cmd) so I can type subl file:

> doskey subl="C:\Program Files\Sublime Text 2\sublime_text.exe" $*
share|improve this answer
Do I set up a doskey for cygwin too? or is there a different way to do that. i'm not using windows cmd – Mehul Kar Feb 25 '12 at 3:16
7  
Ah, my mistake, I assumed you were using cmd. Are you using the default bash shell that comes with cygwin? If so you can just use an alias like the post you linked to: $ echo 'alias subl="/cygdrive/c/Program\ Files/Sublime\ Text\ 2/sublime_text.exe"' >> ~/.bashrc – pjumble Feb 25 '12 at 3:36
2  
worked perfectly! thanks! – Mehul Kar Feb 27 '12 at 0:04
Thanks! This works great. – dmackerman May 17 '12 at 13:08
this might help too rhyous.com/2010/10/20/… – Miguel Dec 25 '12 at 16:18
show 3 more comments

I added this to my PowerShell profile:

Set-Alias subl 'C:\Program Files\Sublime Text 2\sublime_text.exe'
share|improve this answer

Another idea would be to include C:\Program Files\Sublime Text 2\ in your PATH, and then run an administrator command prompt:

cd "C:\Program Files\Sublime Text 2\"
mklink sublime.exe sublime_text.exe

That will make a symbolic link with the new name. And now you can use it freely:

sublime hello.txt

Update: After having a chance to use this trick and update Sublime Text 2, I'm happy to say that updating to a new build doesn't affect the symbolic link.

share|improve this answer
clean and easy. Thanks – cabhishek Dec 26 '12 at 22:01

I've created subl.bat in C:\Program Files\Sublime Text 2 with contents:

start sublime_text.exe %*

Now that I have C:\Program Files\Sublime Text 2 in PATH, I can simply type 'subl folder' and it works wonderfully without having to add anything to autostart.

share|improve this answer
Thanks a lot for 'subl folder'. Didn't know that :) – y0prst May 25 '12 at 6:47
1  
I've changed subl.bat to "start sublime_text.exe %*" and now it doesn't block my console. – y0prst May 25 '12 at 6:58
Thanks, I've improved my command with your suggestion. – mblsha Jun 8 '12 at 12:58
Instead of .bat file, you can simply create a shortcut and name it as you wish without the extensions. At least it worked for me on Windows 7. – psycketom Jan 2 at 18:53
@psycketom can you please elaborate. I have created a shortcut to the exe of sublime 2 in my project directory and called it subl. now when running subl in my console it says not recognized as an external or internal command. Only command "start subl" will open up the program – Postscripter Jan 29 at 23:35
show 2 more comments

I think that is more easy set the Environment variable in Windows.

Then just add a new System variable called SUBLIME_HOME with value "C:\Program Files\Sublime Text 2\" (without quotes) after edit the variable Path adding in the end this value ";%SUBLIME_HOME%" (without quotes).

Restart the git BASH and enjoy, using like this:

$ sublime_text mi-new-file

(where sublime_text is the command)

Note: Also works now for cmd of Windows.

share|improve this answer
1  
Very nice solution. Clean, quick, easy, no messing with my main %PATH%. Works really well too, works on regular cmd prompt (with sublime_text), PowerShell, GitHub's Git Shell, and Git Bash (latter three with sublime_text.exe). Fails on Cygwin though, likely because it uses a different path system. Anyone know if adding a cygwin path like, /cygdrive/c/sublime text 2 to my system environment variables will cause problems (I'd just append it to the %SUBLIME_HOME% I made above)? – hjc1710 Jan 11 at 20:20

I know this thread is a bit old, but I recently came up with this solution and thought I would share it...

If you use Cygwin, you can create a bash script that will convert the unix pathnames to windows paths and pass them to sublime. Paste the following into a new file:

#!/bin/bash

/cygdrive/c/Program\ Files/Sublime\ Text\ 2/sublime_text.exe `cygpath -w $@` &

Save it in /usr/bin/subl (or wherever you want so long as the location is in your $PATH) and make it executable ($ chmod a+x /usr/bin/subl)

With this script, you can use both UNIX and Windows style paths (/cygdrive/c/ or C:/) because the cygpath utility converts the / and ~ path aliases to their windows equivalents.

Now, you can use $ subl file1.txt file2.md ~/file3.txt to open those files in sublime!

share|improve this answer

I'm trying out ruby on rails in windows and include the PATH C:\Program Files\Sublime Text 2\,then change the name sublime.exe to subl.exe.

worked fine in regular cmd and "command prompt with ruby and rails" cmd

share|improve this answer

This powershell allows me to pipe to the edit function (or to use it in the normal way)

function edit
{
    param( [Parameter(ValueFromPipeline=$true,Position=0)] $file )
    begin { set-alias EDITOR 'W:\tools\sublime_text.bat' }
    process { EDITOR $file }
}

here is the sublime_text.bat which for some reason seems necessary (anyone know why?)

START "Sublime Text 2" "C:\Program Files\Sublime Text 2\sublime_text.exe" %*
share|improve this answer

create in registry:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\sublime.exe

update value of default parametr (REG_SZ) to:

C:\Program Files\Sublime Text 2\sublime_text.exe

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.