newdatasystems / vscode-foxpro

VSCode Extension for the Microsoft Visual Foxpro programming language
MIT License
20 stars 5 forks source link

Beautify the prg #8

Closed Ajitweb closed 1 year ago

Ajitweb commented 1 year ago

Hello Ted, How to implement a beautify feature in vscode for prg files? Currently, my VFP Project hook class is beautifying the prg in VFP before opening it in vscode.

Meanwhile, if you can put the following in foxpro-configuration.json, then it would be of some help - and if you feel that I have missed any keywords, then pls add them too.

` "indentationRules": { "increaseIndentPattern": "^\s*(DEFINE|FUNCTION|PROCEDURE|FOR|IF|ELSE|TEXT|SCAN|TRY|CATCH|FINALLY|DO CASE|CASE|OTHERWISE|DO WHILE)", "decreaseIndentPattern": "^\s" }

`