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

I've been looking all over for a way to do this and I haven't had much luck. I've recently switched from Vim to Sublime Text 2 and I'm trying to set a default filetype for a certain extension. I want to have *.cfg files default to having Ini syntax highlighting but I can't seem to figure out how I could create this custom setting. I apologize if this is not the right site to post this question on, and I appreciate any help I receive.

share|improve this question

3 Answers

up vote 56 down vote accepted

Go to a Packages/User, create (or edit) a .sublime-settings file named after the Syntax where you want to add the extensions, Ini.sublime-settings in your case, then write there something like this:

{
    "extensions":
    [
        "cfg"
    ]
}

And then restart Sublime Text

share|improve this answer
awesome, this was just what i needed, thanks! – gthmb Feb 2 '12 at 17:49
2  
I find it annoying and debilitating that I cannot set a filename as well. – Elland Feb 23 '12 at 9:02
N.B. The syntax you want to use is case sensitive (e.g. CSS for css) and this will override setting it via the UI (see @Colin's post) – ForbesLindesay Jan 10 at 12:32
@Elland I opened an issue for the problem. – JJD Jan 19 at 0:19
awesome! tks :) – frohiky Jan 21 at 12:27

In the current version of Sublime Text 2 (Build: 2139), you can set the syntax for all files of a certain file extension using an option in the menu bar. Open a file with the extension you want to set a default for and navigate through the following menus: View -> Syntax -> Open all with current extension as... ->[your syntax choice].

Updated 6/28/2012: Recent builds of Sublime Text 2 (at least since Build 2181) have allowed the syntax to be set by clicking the current syntax type in the lower right corner of the window. This will open the syntax selection menu with the option to Open all with current extension as... at the top of the menu.

share|improve this answer
1  
Indeed this works fine! – Junior Mayhé May 16 '12 at 13:08
1  
This is EXACTLY what I was looking for. Thanks – Joel Glovier Jun 12 '12 at 21:09
1  
lovely. this works well. – iKlsR Aug 15 '12 at 20:54
2  
WOW, never would have found that on my own! Excellent tip. – mehaase Sep 5 '12 at 15:57
1  
Note that this change might require a restart of Sublime text. At least, it did on my machine. – Ian Link Nov 25 '12 at 19:18
show 9 more comments

In ST2 there's a package you can install called Default FileType which does just that. More info on https://github.com/spadgos/sublime-DefaultFileType.

share|improve this answer
This package sets the default file type of new files to be either the same as the current file, or a predefined default. Exactly what I Was looking for! Thanks – Ricardo Saporta Nov 12 '12 at 17:50

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.