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

annoying vertical line #103662

Closed
orket opened this issue Jul 30, 2020 · 10 comments
Closed

annoying vertical line #103662

orket opened this issue Jul 30, 2020 · 10 comments
Labels
info-needed Issue requires more information from poster

Comments

@orket
Copy link

orket commented Jul 30, 2020

Issue Type: Bug

vertical line on my .dart files only despite having no rulers set in my settings

VS Code version: Code 1.47.3 (91899dc, 2020-07-23T15:51:39.791Z)
OS version: Linux x64 5.4.0-42-generic snap

System Info
Item Value
CPUs Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (4 x 3338)
GPU Status 2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: disabled_software
skia_renderer: disabled_off_ok
video_decode: unavailable_off
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off_ok
webgl: enabled
webgl2: enabled
Load (avg) 0, 0, 1
Memory (System) 7.66GB (0.51GB free)
Process Argv --force-user-env --no-sandbox --unity-launch --no-sandbox
Screen Reader no
VM 0%
DESKTOP_SESSION ubuntu
XDG_CURRENT_DESKTOP Unity
XDG_SESSION_DESKTOP ubuntu
XDG_SESSION_TYPE x11
Extensions (4)
Extension Author (truncated) Version
dart-code Dar 3.12.2
flutter Dar 3.12.2
python ms- 2020.7.96456
material-icon-theme PKi 4.2.0

(1 theme extensions excluded)

@IllusionMH
Copy link
Contributor

/needsMoreInfo

Is it reproducible with all extensions disabled?
You can try this with F1 and >Developer: Reload Window With Extensions Disabled

Have you checked if there is Dart specific configuration (object in [dart] property) in User or Workspace settings JSON file? It won't be visible in Settings UI as modified
image

Tried without extensions in Insiders build - there are no rules in .dart file.

@orket
Copy link
Author

orket commented Jul 30, 2020 via email

@orket
Copy link
Author

orket commented Jul 30, 2020 via email

@orket
Copy link
Author

orket commented Jul 30, 2020 via email

@wuzzar321
Copy link

what was the fix?

@wuzzar321
Copy link

Never mind I figured it out

@orket
Copy link
Author

orket commented Jul 31, 2020 via email

@rebornix rebornix closed this as completed Aug 2, 2020
@devorrah
Copy link

devorrah commented Aug 11, 2020

I have the same problem. The "editor.rulers": [], is set correctly. Please help.
vs code line

@abhayswee2
Copy link

Solution

In settings.json file, you will find code similar to below :


  "[dart]": {
        "editor.formatOnSave": true,
        "editor.formatOnType": true,
        "editor.rulers": [
            80
        ],
        "editor.selectionHighlight": false,
        "editor.suggest.snippetsPreventQuickSuggestions": false,
        "editor.suggestSelection": "first",
        "editor.tabCompletion": "onlySnippets",
        "editor.wordBasedSuggestions": false
    },

set

"editor.rulers": [
            80
        ]

to
"editor.rulers": [ ],

@github-actions github-actions bot locked and limited conversation to collaborators Sep 16, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
info-needed Issue requires more information from poster
Projects
None yet
Development

No branches or pull requests

7 participants
@rebornix @IllusionMH @abhayswee2 @wuzzar321 @devorrah @orket and others