質問編集履歴
1
macOSのバージョン、ターミナル上で「type -a zsh」の実行結果、settings.jsonの内容
test
CHANGED
File without changes
|
test
CHANGED
@@ -47,3 +47,155 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
どうぞよろしくお願い致します。
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
追記
|
54
|
+
|
55
|
+
macOSのバージョンはBigSurの11.6です。
|
56
|
+
|
57
|
+
OSのターミナル上で「type -a zsh」を実行すると、「zsh is /bin/zsh」が30回程出力されます。
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
**settings.json**
|
62
|
+
|
63
|
+
> {
|
64
|
+
|
65
|
+
> "editor.suggestSelection": "first",
|
66
|
+
|
67
|
+
> "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
68
|
+
|
69
|
+
> "workbench.iconTheme": "vscode-icons", //拡張機能vscode-iconsを有効化
|
70
|
+
|
71
|
+
> "diffEditor.renderSideBySide": false, // Git の差分を行内に表示
|
72
|
+
|
73
|
+
> "editor.colorDecorators": false, // カラーデコレーターを非表示
|
74
|
+
|
75
|
+
> "editor.defaultFormatter": "esbenp.prettier-vscode", //拡張機能Prettierを有効にする
|
76
|
+
|
77
|
+
> "prettier.printWidth": 360, // ファイル保存時に自動でフォーマット
|
78
|
+
|
79
|
+
> //"editor.formatOnPaste": true, // ペースト時に自動でフォーマット(今のところ必要ない)
|
80
|
+
|
81
|
+
> //"editor.formatOnType": true, // 入力した行を自動でフォーマット(今のところ必要ない)
|
82
|
+
|
83
|
+
> "editor.hover.enabled": true, // ホバーしたときに出る解説を消す
|
84
|
+
|
85
|
+
> "editor.minimap.renderCharacters": false, // ミニマップの表示文字をブロックに変更
|
86
|
+
|
87
|
+
> "editor.minimap.showSlider": "always", // 表示領域をミニマップで常にハイライト
|
88
|
+
|
89
|
+
> "editor.multiCursorModifier": "ctrlCmd", // マウスでの複数選択時の修飾キーを変更
|
90
|
+
|
91
|
+
> "editor.renderControlCharacters": true, // 制御文字を表示
|
92
|
+
|
93
|
+
> "editor.renderLineHighlight": "all", // 選択行を行番号含めすべてハイライト
|
94
|
+
|
95
|
+
> "editor.renderWhitespace": "all", // 半角スペースを常に表示
|
96
|
+
|
97
|
+
> "editor.snippetSuggestions": "top", // Emmet などのスニペット候補を優先して表示
|
98
|
+
|
99
|
+
> "editor.tabSize": 2, // エディターの幅で折り返し
|
100
|
+
|
101
|
+
> "emmet.showSuggestionsAsSnippets": true, // Emmet の候補を表示
|
102
|
+
|
103
|
+
> "emmet.triggerExpansionOnTab": true, // TAB キーで Emmet を展開できるようにする
|
104
|
+
|
105
|
+
> "emmet.variables": {
|
106
|
+
|
107
|
+
> // Emmet で展開される HTML の言語を変更
|
108
|
+
|
109
|
+
> "lang": "ja"
|
110
|
+
|
111
|
+
> },
|
112
|
+
|
113
|
+
> "explorer.confirmDelete": false, // ファイル削除時の確認を表示しない
|
114
|
+
|
115
|
+
> "files.associations": {
|
116
|
+
|
117
|
+
> // ファイルと言語の関連付けを変更
|
118
|
+
|
119
|
+
> ".*lintrc": "json"
|
120
|
+
|
121
|
+
> },
|
122
|
+
|
123
|
+
> "files.exclude": {
|
124
|
+
|
125
|
+
> "**/*.map": true
|
126
|
+
|
127
|
+
> },
|
128
|
+
|
129
|
+
> "files.insertFinalNewline": true, // ファイルの保存時に末尾を改行
|
130
|
+
|
131
|
+
> "files.trimFinalNewlines": true, // ファイルの保存時に最終行以降をトリミング
|
132
|
+
|
133
|
+
> "files.trimTrailingWhitespace": true, // ファイルの保存時に行末の空白をトリミング
|
134
|
+
|
135
|
+
> "[markdown]": {
|
136
|
+
|
137
|
+
> "files.trimTrailingWhitespace": false // Markdown のファイルは行末の空白をトリミングしない
|
138
|
+
|
139
|
+
> },
|
140
|
+
|
141
|
+
> "html.format.contentUnformatted": "pre, code, textarea, title, h1, h2, h3, h4, h5, h6, p", // タグ内の記述はフォーマットしない
|
142
|
+
|
143
|
+
> "html.format.extraLiners": "", // head, body, /html タグの前に改行を入れない
|
144
|
+
|
145
|
+
> "html.format.unformatted": null, // フレージング・コンテンツ(旧インライン要素のようなタグ)はフォーマットしない
|
146
|
+
|
147
|
+
> "html.format.wrapLineLength": 0, // 行の文字数制限を無くし自動で改行させない
|
148
|
+
|
149
|
+
> "search.exclude": {
|
150
|
+
|
151
|
+
> // 検索対象外にするファイル設定( files.exclude のファイルも含む)
|
152
|
+
|
153
|
+
> "**/tmp": true
|
154
|
+
|
155
|
+
> },
|
156
|
+
|
157
|
+
> "window.openFoldersInNewWindow": "on", // 新規ワークスペースを別ウインドウで開く
|
158
|
+
|
159
|
+
> "window.title": "${activeEditorMedium}${separator}${rootName}", // ウインドウ上部に表示する文字列の設定
|
160
|
+
|
161
|
+
> "workbench.editor.labelFormat": "short", // タブに表示する文字列の設定
|
162
|
+
|
163
|
+
> "workbench.editor.tabSizing": "shrink", // タブの表示設定
|
164
|
+
|
165
|
+
> "workbench.startupEditor": "none", // Welcome Page を表示しない
|
166
|
+
|
167
|
+
> "html.autoClosingTags": false,
|
168
|
+
|
169
|
+
> "liveServer.settings.CustomBrowser": "chrome",
|
170
|
+
|
171
|
+
> "liveServer.settings.port": 0,
|
172
|
+
|
173
|
+
> "diffEditor.wordWrap": "off",
|
174
|
+
|
175
|
+
> "liveServer.settings.donotShowInfoMsg": true,
|
176
|
+
|
177
|
+
> "liveServer.settings.donotVerifyTags": true,
|
178
|
+
|
179
|
+
> "files.autoSave": "afterDelay",
|
180
|
+
|
181
|
+
> "workbench.editor.enablePreview": false,
|
182
|
+
|
183
|
+
> "terminal.integrated.defaultProfile.osx": "bash",
|
184
|
+
|
185
|
+
> "editor.acceptSuggestionOnEnter": "off",
|
186
|
+
|
187
|
+
> "terminal.integrated.automationShell.linux": "",
|
188
|
+
|
189
|
+
> "intelephense.diagnostics.undefinedClassConstants": false,
|
190
|
+
|
191
|
+
> "intelephense.diagnostics.undefinedConstants": false,
|
192
|
+
|
193
|
+
> "intelephense.diagnostics.undefinedFunctions": false,
|
194
|
+
|
195
|
+
> "intelephense.diagnostics.undefinedMethods": false,
|
196
|
+
|
197
|
+
> "intelephense.diagnostics.undefinedProperties": false,
|
198
|
+
|
199
|
+
> "intelephense.diagnostics.undefinedTypes": false //終了タグが自動で生成されるのを防ぐ
|
200
|
+
|
201
|
+
> }
|