How to treat .tpl syntax highlighting like php's syntax highlighting in PHPStorm

StackOverflow https://stackoverflow.com/questions/22654901

  •  21-06-2023
  •  | 
  •  

문제

I use PHPStorm

I need to know how could I treat .tpl files syntax highlighting like that of .php syntax highlighting?

도움이 되었습니까?

해결책

If you want to treat .tpl files in the same way as .php then you will have to re-assign *.tpl pattern to PHP type in Settings/Preferences | Editor | File Types

enter image description here
(screenshot is from current 2021.2 version)

The IDE will ask to confirm the removal of that pattern from the standard Smarty file type:

enter image description here

P.S. This is an IDE-wide setting and will affect all projects.

Sadly you cannot have the same pattern to be assigned to a different file type in different projects. Consider using double extension if it's possible: e.g. *.html.tpl -- this way you can use such additional pattern assigned to another file type.

다른 팁

In PhpStorm configuration settings:

 File->Settings->Editor->File Types->php-> + -> add *.tpl

PHP storm site settings

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top