SublimeText / AdvancedNewFile

File creation plugin for Sublime Text
MIT License
829 stars 93 forks source link

Unable to set default extension #152

Open bkgrrl00 opened 8 years ago

bkgrrl00 commented 8 years ago

I am trying to set the default extension to *.TXT. I have tried each of the settings below, but none of them works. When I save a new file, the extension is either not set at all, or it is set to JSON.

{ "default_extension": "txt", }

{ "default_extension": "Text", }

{ "default_extension": ".txt", }

{ "default_extension": "*.txt", }

{ "default_extension": "Plain Text (*.txt)", }

skuroda commented 8 years ago

Hi @bookgrrl, where are you putting the file? I just tested by placing

{
    "default_extension": ".txt"
}

In Packages/User/AdvancedNewFile.sublime-settings

bkgrrl00 commented 8 years ago

@skuroda The file is in C:\Users\[username]\AppData\Roaming\Sublime Text 3\Packages\User

skuroda commented 8 years ago

Apologies, thought I responded to this. Are there any errors in the ST console after trying to enter a path? Is it always happening or only sometimes? The only thing I can think of is that the logic I have there removes the extension if it there's a . in the name.

bkgrrl00 commented 8 years ago

Hi Scott,

Apologies for not getting back to you earlier. I don't get an error when I enter a path in the ST console, and the filename does not have a . in the filename, so I'm not sure what could be wrong. I decided to stop spending time troubleshooting ST since there are plenty of other text editors that do what I am looking for. For now, I am using Q10, which saves files as .txt by default and which displays the word count in the status bar.

Maria

Date: Fri, 20 May 2016 19:08:48 -0700 From: notifications@github.com To: Sublime-AdvancedNewFile@noreply.github.com CC: bookgrrl@hotmail.com; mention@noreply.github.com Subject: Re: [skuroda/Sublime-AdvancedNewFile] Unable to set default extension (#152)

Apologies, thought I responded to this. Are there any errors in the ST console after trying to enter a path? Is it always happening or only sometimes? The only thing I can think of is that the logic I have there removes the extension if it there's a . in the name.

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub

mingyEx commented 2 years ago

I modified my config file following the path mentioned here:

// line99
     // String containing the default file extension. Note the extension is only applied
     // if the specified path does not contain a dot (.) character.
     "default_extension": ".txt",

It worked, but the last few days it doesn't work again, the newly created files still don't get any suffix added, what am I doing wrong?