SrSouza
07/01/2020, 2:05 AMbk.kts
and I try to create a New File Action at the IntelliJ and my extension is beeing removed, any work around or there is a better way to do that?SrSouza
07/01/2020, 2:16 AMSrSouza
07/01/2020, 2:59 AMCreateFileFromTemplateAction.createFile
SrSouza
07/01/2020, 3:01 AMoverride fun createFile(name: String, templateName: String, dir: PsiDirectory): PsiFile? {
return super.createFile("$name.bk", templateName, dir)
}
This is how I do it, there is anyway to achieve this same result? I think that this is kinda hackilya.chernikov
07/01/2020, 8:37 AM