codeapp icon indicating copy to clipboard operation
codeapp copied to clipboard

Add support for vertical rulers/guides

Open cosinami opened this issue 1 year ago • 1 comments

This is a feature of the Monaco Editor that I think would be a welcome addition to Code App.

Currently, within VS Code, vertical rulers are added/modified through the following settings.json property:

"editor.rulers": [
     80,    // A vertical line at column 80.
     120   // A vertical line at column 120.
]

For Monaco, to my knowledge, rulers is managed through its EditorOptions property.

cosinami avatar Jun 05 '24 18:06 cosinami

Actually we should add support for settings.json.

Reference: https://code.visualstudio.com/docs/getstarted/settings#_workspace-settingsjson-location

bummoblizard avatar Jun 08 '24 09:06 bummoblizard