Skip to main content
Participant
January 31, 2020
質問

Formatting the code

  • January 31, 2020
  • 返信数 2.
  • 1032 ビュー

Hi, is anyone using Visual Studio Code? I'm trying to format the code with the command ALT+SHIFT+F and after that it says: "There is no formatter for 'cfml' files installed." How can we format the ColdFusion code in Visual Studio Code?

このトピックへの返信は締め切られました。

返信数 2

James Moberg
Inspiring
January 31, 2020

Edit settings.json by press CTRL+SHIFT+P and select "Open Settings (JSON).  In the JSON file, search for HTML and add cfm, cfml and cfc.

I use the Beautify extension.  It allows you to select code and "Beautify selection".

 

You'll also want to add the code below so that you can use Emmet when editing CFM files.

 

    "emmet.includeLanguages": {
        "cfml": "html",
        "lang-cfml": "html"
    }

Participant
April 25, 2024

This was driving me nuts. Worked immediately! Thank you!!!