Configuration

如何在 Azure Data Studio 中更改結果單元格填充

  • November 20, 2019

在 Azure Data Studio 中,我試圖更改結果網格中單元格的填充。

根據設置頁面,這可以在 settings.json 中編輯:

在此處輸入圖像描述

但是,當我導航到該文件時,任何地方都沒有提到填充。另外,線上搜尋要使用的正確選項沒有結果。

也許這有幫助:

https://github.com/real-napster/azuredatastudio_settings

… sqlops_settings

我的 Azure 數據工作室設置

Settings
{
   "sql.messagesDefaultOpen": false,
   "mssql.intelliSense.lowerCaseSuggestions": true,
   "resultsGrid.fontSize": 12,
   "resultsGrid.fontFamily": "Microsoft Sans Serif",
   "editor.fontFamily": "Fira Code, 'Courier New', monospace",
   "editor.fontSize": 14,
   "editor.minimap.enabled": true,
   "editor.minimap.maxColumn": 120,
   "resultsGrid.cellPadding": [  
       5,   !!!
       10,  !!!
       15   !!!
   ],
   "editor.cursorBlinking": "phase",
   "editor.smoothScrolling": true,
   "workbench.colorTheme": "One Dark Pro",
   "workbench.iconTheme": "vscode-icons",
   "files.autoGuessEncoding": true,
   "window.titleBarStyle": "custom",
   "editor.smoothScrolling": true,
   "editor.cursorBlinking": "smooth",
   "workbench.enablePreviewFeatures": true
}

使用 !!! 標記填充條目

引用自:https://dba.stackexchange.com/questions/253614