Skip to content

Pascal formatter extension for Visual Studio Code

License

Notifications You must be signed in to change notification settings

alefragnani/vscode-pascal-formatter

Repository files navigation


Pascal Formatter Logo

What's new in Pascal Formatter 2.9

  • Published to Open VSX
  • Adds Quadroid JEDI Formatter support
  • Adds Virtual Workspaces support
  • Adds Workspace Trust support
  • Adds Embarcadero Formatter support
  • Adds OmniPascal extension support

Support

Pascal Formatter is an open source extension created for Visual Studio Code. While being free and open source, if you find it useful, please consider supporting it

Pascal Formatter

It adds Code Formatters for Pascal language and its dialects like Delphi and FreePascal.

This extension was originally extracted from my Pascal extension

Features

Standardise your Pascal code!

It uses external tools (engines) to format the code, so you must install them prior to use the Format Document and Format Selection commands.

If you intend to format pieces of selected texts instead of the entire file, you should use FreePascal PToP, because the Jedi Code Format and Embarcadero Formatter only works for entire files.

Available settings

You can choose which formatter engine to use (required):

  • ptop: FreePascal PToP
  • jcf: Jedi Code Formatter
  • jcf-quadroid: Jedi Code Formatter (Quadroid)
  • embarcadero: Embarcadero Formatter
    "pascal.formatter.engine": "ptop"
  • Indicates the engine app path (required)
    "pascal.formatter.enginePath": "C:\\FPC\\2.6.4\\bin\\i386-win32\\ptop.exe" 
  • Indicates the configuration file for the selected engine (optional)
    "pascal.formatter.engineParameters": "C:\\FPC\\2.6.4\\bin\\i386-win32\\default.cfg"

If you decide to use FreePascal PToP, you have two additional settings:

  • The number of spaces used for indentation
    "pascal.format.indent": 2 
  • Maximum amount of characters per line
    "pascal.format.wrapLineLength": 80

Available Commands

The extension seamlessly integrates with the Format Document and Format Selection commands Visual Studio Code.

format-code

There is also:

  • Pascal Formatter: Edit Formatter Parameters Opens/Generate the parameters file for the selected engine

Contributors

Special thanks to the people that have contributed to the project:

  • @Quadroid - Quadroid JEDI Code Format support (see PR)
  • @AThePeanut4 - Embarcadero Formatter support (see PR)

License

MIT © Alessandro Fragnani