質問編集履歴

3

環境に関する情報を追記しました。

2020/04/09 08:56

投稿

hyhpsk
hyhpsk

スコア5

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,266 @@
10
10
 
11
11
 
12
12
 
13
- 同じような状況になった方がおりましたら、解決策よろしくお願い致します。
14
-
15
13
  ![イメージ説明](3c6885a71d51887c2bb24b2e36fc57b4.jpeg)
14
+
15
+
16
+
17
+ 拡張機能、settings.jsonは下記のようになっています。
18
+
19
+
20
+
21
+ -------------------------------------------------------
22
+
23
+ code --install-extension bradgashler.htmltagwrap
24
+
25
+ code --install-extension CoenraadS.bracket-pair-colorizer
26
+
27
+ code --install-extension esbenp.prettier-vscode
28
+
29
+ code --install-extension felixfbecker.php-intellisense
30
+
31
+ code --install-extension formulahendry.auto-rename-tag
32
+
33
+ code --install-extension mkaufman.HTMLHint
34
+
35
+ code --install-extension monokai.theme-monokai-pro-vscode
36
+
37
+ code --install-extension mosapride.zenkaku
38
+
39
+ code --install-extension MS-CEINTL.vscode-language-pack-ja
40
+
41
+ code --install-extension naumovs.color-highlight
42
+
43
+ code --install-extension nobuhito.printcode
44
+
45
+ code --install-extension oderwat.indent-rainbow
46
+
47
+ code --install-extension patricklee.vsnotes
48
+
49
+ code --install-extension pranaygp.vscode-css-peek
50
+
51
+ code --install-extension ritwickdey.LiveServer
52
+
53
+ code --install-extension saikou9901.evilinspector
54
+
55
+ code --install-extension shardulm94.trailing-spaces
56
+
57
+ code --install-extension sibiraj-s.vscode-scss-formatter
58
+
59
+ code --install-extension smelukov.vscode-csstree
60
+
61
+ code --install-extension streetsidesoftware.code-spell-checker
62
+
63
+ code --install-extension techer.open-in-browser
64
+
65
+ code --install-extension tungvn.wordpress-snippet
66
+
67
+ code --install-extension vincaslt.highlight-matching-tag
68
+
69
+ code --install-extension vscode-icons-team.vscode-icons
70
+
71
+ code --install-extension vscodevim.vim
72
+
73
+ code --install-extension zhuangtongfa.material-theme
74
+
75
+ code --install-extension Zignd.html-css-class-completion
76
+
77
+
78
+
79
+ -------------------------------------------------------
80
+
81
+ {
82
+
83
+ "editor.formatOnSave": true,
84
+
85
+ "editor.snippetSuggestions": "top",
86
+
87
+ "editor.renderWhitespace": "all",
88
+
89
+ "files.trimTrailingWhitespace": true,
90
+
91
+ "window.zoomLevel": -1,
92
+
93
+ "workbench.iconTheme": "vscode-icons",
94
+
95
+ "workbench.startupEditor": "newUntitledFile",
96
+
97
+ "printcode.fontSize": 13,
98
+
99
+ "workbench.sideBar.location": "left",
100
+
101
+ "editor.minimap.enabled": false,
102
+
103
+ //''"editor.lineNumbers": "relative",
104
+
105
+ "breadcrumbs.enabled": false,
106
+
107
+ "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
108
+
109
+ "javascript.format.placeOpenBraceOnNewLineForFunctions": true,
110
+
111
+ "typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
112
+
113
+ "typescript.format.placeOpenBraceOnNewLineForFunctions": true,
114
+
115
+ "typescript.format.insertSpaceAfterTypeAssertion": true,
116
+
117
+ "files.autoSave": "afterDelay",
118
+
119
+ "liveServer.settings.donotShowInfoMsg": true,
120
+
121
+ "vsicons.dontShowNewVersionMessage": true,
122
+
123
+ "easysass.formats": [
124
+
125
+ {
126
+
127
+ "format": "expanded",
128
+
129
+ "extension": ".css"
130
+
131
+ }
132
+
133
+ ],
134
+
135
+ "terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",
136
+
137
+ "html.format.preserveNewLines": true,
138
+
139
+ "html.format.enable": true,
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
+ "[scss]": {
148
+
149
+ "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter"
150
+
151
+ },
152
+
153
+ "editor.formatOnType": true,
154
+
155
+ "editor.formatOnPaste": true,
156
+
157
+ "[html]": {
158
+
159
+ "editor.defaultFormattr": "esbenp.prettier-vscode"
160
+
161
+ },
162
+
163
+
164
+
165
+ //vscodevimカスタマイズ
166
+
167
+ "vim.statusBarColorControl": true,
168
+
169
+ "vim.statusBarColors.normal": ["#8FBCBB", "#434C5E"],
170
+
171
+ "vim.statusBarColors.insert": "#BF616A",
172
+
173
+ "vim.statusBarColors.visual": "#006400",
174
+
175
+ "vim.statusBarColors.visualline": "#006400",
176
+
177
+ "vim.statusBarColors.visualblock": "#A3BE8C",
178
+
179
+ "vim.statusBarColors.replace": "#D8771",
180
+
181
+ "workbench.colorCustomizations": {
182
+
183
+ "editorCursor.foreground": "#80ff00",
184
+
185
+ "terminalCursor.foreground": "#80FF00",
186
+
187
+ "statusBar.background": "#006400",
188
+
189
+ "statusBar.noFolderBackground": "#006400",
190
+
191
+ "statusBar.debuggingBackground": "#006400"
192
+
193
+ },
194
+
195
+ "vim.leader": "<space>",
196
+
197
+ "vim.easymotion": true,
198
+
199
+ "vim.surround": true,
200
+
201
+ "vim.replaceWithRegister": true,
202
+
203
+ "vim.sneak": true,
204
+
205
+ "vim.commentary": true,
206
+
207
+ "vim.normalModeKeyBindingsNonRecursive": [
208
+
209
+ {
210
+
211
+ "before": ["<Enter>"],
212
+
213
+ "commands": ["editor.action.insertLineAfter"]
214
+
215
+ }
216
+
217
+ ],
218
+
219
+ "vim.whichwrap": "h,l,<,>,[,]",
220
+
221
+ "vim.visualstar": true,
222
+
223
+ "vim.normalModeKeyBindingsNonRecursive": [
224
+
225
+ {
226
+
227
+ "before": ["<Esc>"],
228
+
229
+ "commands": [":nohl"]
230
+
231
+ }
232
+
233
+ ],
234
+
235
+ "vim.useCtrlKeys": true,
236
+
237
+ "vim.highlightedyank.enable": true, //yankした箇所をハイライト表示にする
238
+
239
+ "vim.easymotionMarkerFontSize": "18",
240
+
241
+ "vim.useSystemClipboard": true,
242
+
243
+ "vim.history": 200,
244
+
245
+ "vim.camelCaseMotion.enable": true,
246
+
247
+ "vim.highlightedyank.color": "rgb(0,128,0)",
248
+
249
+ "vim.highlightedyank.textColor": "rgb(255,255,255)",
250
+
251
+ "vim.highlightedyank.duration": 400,
252
+
253
+ "vim.hlsearch": true,
254
+
255
+ "vim.searchHighlightColor": "rgb(220,20,60)",
256
+
257
+ "vim.searchHighlightTextColor": "rgb(255,255,255)", //yankした時の色の表示時間
258
+
259
+ "editor.fontFamily": "Source Han Code JP",
260
+
261
+ "editor.find.addExtraSpaceOnTop": false,
262
+
263
+ "editor.wordWrap": "on",
264
+
265
+ "editor.cursorBlinking": "phase",
266
+
267
+ "workbench.colorTheme": "Monokai" //yankした時の色の表示時間
268
+
269
+ }
270
+
271
+ -------------------------------------------------------
272
+
273
+
274
+
275
+ 同じような状況になった方、ぜひ解決策を教えてください。

2

タグを変更しました

2020/04/09 08:55

投稿

hyhpsk
hyhpsk

スコア5

test CHANGED
File without changes
test CHANGED
File without changes

1

画像ファイルを修正しました

2020/04/09 08:09

投稿

hyhpsk
hyhpsk

スコア5

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- BackSpaceやDeleteで消えませんが、ファイルを保存し終了、もう一度立ち上げ直すと解除されます。
5
+ BackSpaceやDeleteで消えませんが、タブを切り替えたり、ファイル立ち上げ直すと解除されます。
6
6
 
7
7
 
8
8
 
@@ -10,4 +10,6 @@
10
10
 
11
11
 
12
12
 
13
+ 同じような状況になった方がおりましたら、解決策よろしくお願い致します。
14
+
13
- 同じような現象になった方がおりましたら、解決策をご教授いただれると嬉しいです。![イメージ説明](dee836d1cb7a6564a81355bfda9ece89.jpeg)
15
+ ![イメージ説明](3c6885a71d51887c2bb24b2e36fc57b4.jpeg)