Skip to content
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

Cobol tabs are not active #20

Open
egkareem opened this issue Mar 30, 2021 · 3 comments
Open

Cobol tabs are not active #20

egkareem opened this issue Mar 30, 2021 · 3 comments
Assignees
Labels
needs more info Further information is requested

Comments

@egkareem
Copy link

egkareem commented Mar 30, 2021

Hello
I use VS Code with this extension. The tabs are always 4 spaces. Any settings I enter are not honored.
I made usre my source file extension is one of the listed extensions, eg: *.cbl

I also can't see the verticl guides at default COBOL columns.

I am using V 1.0.9

Please help.

@gustavosimon
Copy link
Collaborator

Hello @egkareem ! Thanks for opening this issue.

Could you take me more informations to better understand your problem?

I would like to see what's the main problem.

@gustavosimon gustavosimon self-assigned this Nov 30, 2022
@gustavosimon gustavosimon added the needs more info Further information is requested label Nov 30, 2022
@egkareem
Copy link
Author

Hi
Thanks for your interest in my question.
Pardon my earlier description.

  1. I see no colorization when the extension is active
  2. When cursor is placed at column 1 of some blank line, I press tab, I expect to go to the following sequence of columns; 7,8.12,72. This is not happening.
  3. The vertical guide lines are simply equally spaced, I think they should be at 7,8,12,16,20,..,72

@GitMensch
Copy link
Contributor

To configure those tabstops, use rech.editor.cobol.tabstops

"rech.editor.cobol.tabstops": {
"type": "array",
"items": {
"type": "number",
"title": "tabstops",
"properties": {
"tabstop": {
"type": "number",
"description": "tabstop"
}
}
},
"default": [
0,
7,
11,
19,
29,
34,
50
],
"description": "COBOL tabstops"
},

I'm just not sure if those are always used or only with the commands...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs more info Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants
@GitMensch @egkareem @gustavosimon and others