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?
|
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
How do I do this in Win7? |
||||
|
|
If you're using cmd and you're not bothered about the
If you're using cygwin with its default bash shell, you can just use an alias like the post you linked to:
Personally, I add a doskey (in a .bat file set to autorun with cmd) so I can type
|
|||||||||||||||
|
|
I added this to my PowerShell profile:
|
||||
|
|
|
Another idea would be to include
That will make a symbolic link with the new name. And now you can use it freely:
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. |
||||
|
|
|
I've created subl.bat in C:\Program Files\Sublime Text 2 with contents:
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. |
|||||||||||||
|
|
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. |
|||||
|
|
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:
Save it in With this script, you can use both UNIX and Windows style paths ( Now, you can use |
||||
|
|
|
I'm trying out ruby on rails in windows and include the PATH worked fine in regular cmd and "command prompt with ruby and rails" cmd |
||||
|
|
|
This powershell allows me to pipe to the edit function (or to use it in the normal way)
here is the
|
|||
|
|
|
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 |
|||
|
|