관리 메뉴

웹개발자의 기지개

[Atom] 맥북 Atom 에서 html 파일에서 php 문법소스 적용하기 본문

개발툴/Atom

[Atom] 맥북 Atom 에서 html 파일에서 php 문법소스 적용하기

http://portfolio.wonpaper.net 2020. 10. 29. 03:33

맥에 Atom 무료 에디터를 깔고 

원격 ftp 접속을 위하여 remote ftp 툴을 깔아서 에디터 작업을 할 수가 있다.

atom.io/packages/remote-ftp

 

remote-ftp

Enable browsing remote FTP/FTPS/SFTP just like the built-in Tree View. Requires a project.

atom.io

또한 php 작업을 위하여 Package 화면상에서 language-php 을 이용하여 이쁘게 색깔처리되어 있는 코드들을 보면서 즐겁게 작업을 할 수 있다.

github.com/atom/language-php

 

atom/language-php

PHP package for Atom. Contribute to atom/language-php development by creating an account on GitHub.

github.com

자 그런데 문제가 발생하였다.

확장자가 php 파일은 이쁘게 코드색이 잘나오지만,  html 확장자를 가진 코드사이의 php 코드색깔은 모두 회색 처리되어 눈에 들어오지 않았다.

 

구글링하자~~

 

Atom > config.cson 파일에서 아래와 같이

"*":
  core:
    customFileTypes:
      "text.html.php": [
        "html"
      ]

이 코드를 추가하도록 하자.

그러면 html 에서도 이쁘게 반전된 php 코드들을 볼 수 있다.

cson 파일이므로 라인마다 들여쓰기에 꼭 유념해야한다.

 

아울러, Ctrl + Shift + L 하면 해당 소스의 문법 언어들을 가볍게 체인지 할 수 있다.

다만, 일회성이라게 단점이다.

 

참고1 : discuss.atom.io/t/changing-syntax-for-file-type/59402/4

참고2 : github.com/atom/language-html/issues/14

 

'개발툴 > Atom' 카테고리의 다른 글

[Atom] 단축키 정리  (0) 2021.08.15
[Atom] 주석 색깔 변경  (0) 2020.10.29
Comments