vscode-better-align icon indicating copy to clipboard operation
vscode-better-align copied to clipboard

I think it's aligning commas when Alt-A

Open jeffshumphreys opened this issue 7 months ago • 2 comments

powershell $target_table = "$($source_provider)_$($source_data_set)_data" # tmdb_movie_data, tmdb_tv_series_data, imdb_... powershell $columnDefs = $DatabaseConnection.GetSchema("Columns", @('', $target_schema, $target_table))|Select column_Name, type_name, nullable, ordinal_position, auto_increment, column_def, It's hard to show in here so I'll take a screenshot: image

I had pressed Alt-A. My settings: ``json "betterAlign.surroundSpace": {

    "colon": [
        0,
        1
    ],
    "assignment": [
        1,
        1
    ],
    "arrow": [
        1,
        1
    ],
    "comment": 2
}

``

A "comma": -1 option maybe?

jeffshumphreys avatar Jul 14 '24 19:07 jeffshumphreys