-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration for Writing COBOL Without Column 8 Convention #351
Comments
I use these.. settings": {
"[ACUCOBOL]": {
"workbench.editor.languageDetection": false,
"editor.semanticHighlighting.enabled": true,
"editor.bracketPairColorization.enabled": false,
"editor.insertSpaces": true,
"editor.guides.indentation": false,
"files.autoGuessEncoding": false,
"editor.autoIndent": "full",
"editor.formatOnType": false,
"editor.rulers": [
4
],
"editor.detectIndentation": false,
"editor.wordSeparators": "`~!#$%^&*()=+[{]}\\|;:'\",.<>/?"
},
"coboleditor.fileformat": [
{
"pattern": "**/*.cbl",
"sourceformat": "terminal"
}
],
"coboleditor.tabstops": [
0,
4,
8
],
"files.associations": {
"*.cob": "ACUCOBOL",
"*.COB": "ACUCOBOL",
"*.cbl": "ACUCOBOL",
"*.CBL": "ACUCOBOL",
"*.cblle": "ACUCOBOL",
"*.CBLLE": "ACUCOBOL",
"*.sqlcblle": "ACUCOBOL",
"*.SQLCBLLE": "ACUCOBOL",
"*.cobol": "ACUCOBOL",
"*.COBOL": "ACUCOBOL",
"*.scbl": "ACUCOBOL",
"*.SCBL": "ACUCOBOL",
"*.pco": "ACUCOBOL",
"*.PCO": "ACUCOBOL",
"*.eco": "ACUCOBOL",
"*.ECO": "ACUCOBOL",
"*.copy": "ACUCOBOL",
"*.COPY": "ACUCOBOL",
"*.cobcopy": "ACUCOBOL",
"*.COBCOPY": "ACUCOBOL"
}
} |
i will try it thanks |
Plz close if you are happy or continue |
Okay. Thanks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I’m using the COBOL extension for Visual Studio Code, and I have a question regarding the configuration. I prefer to write my ACUCOBOL code starting from column 1 rather than following the traditional column 8 convention.
Is there a way to configure the extension to support this style? Specifically:
I’ve looked at the settings but wasn’t sure how to properly adjust them for this case. Could you provide guidance or recommend the correct configuration?
Thank you in advance for your help!
The text was updated successfully, but these errors were encountered: