質問編集履歴

6

OSのバージョン情報追加

2017/07/19 01:58

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -137,3 +137,7 @@
137
137
  #追記2
138
138
 
139
139
  最近、1.14.1にアップデートしましたが、やはり、空白文字は表示されませんでした。
140
+
141
+ 使っているOSは最新のWindows10です。
142
+
143
+ (バージョン 1703 OSビルド 15063.483)

5

追記の追加

2017/07/19 01:57

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,8 @@
122
122
 
123
123
  ![イメージ説明](78107660ffc0ca0cd820eab9ba386d07.png)
124
124
 
125
+
126
+
125
127
  また、関係ないですが、右下に表示されているスクリーンリーダーとは何ですか?
126
128
 
127
129
 
@@ -129,3 +131,9 @@
129
131
  #追記
130
132
 
131
133
  'editor.minimap.enabled'をtrueに設定しているのですが、ミニマップも表示されません。
134
+
135
+
136
+
137
+ #追記2
138
+
139
+ 最近、1.14.1にアップデートしましたが、やはり、空白文字は表示されませんでした。

4

2017/07/19 01:49

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -123,3 +123,9 @@
123
123
  ![イメージ説明](78107660ffc0ca0cd820eab9ba386d07.png)
124
124
 
125
125
  また、関係ないですが、右下に表示されているスクリーンリーダーとは何ですか?
126
+
127
+
128
+
129
+ #追記
130
+
131
+ 'editor.minimap.enabled'をtrueに設定しているのですが、ミニマップも表示されません。

3

質問追加

2017/06/25 00:32

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -121,3 +121,5 @@
121
121
  #動作画面
122
122
 
123
123
  ![イメージ説明](78107660ffc0ca0cd820eab9ba386d07.png)
124
+
125
+ また、関係ないですが、右下に表示されているスクリーンリーダーとは何ですか?

2

動作画面追加

2017/06/15 03:17

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- # 現在、適用させている設定
17
+ #現在、適用させている設定
18
18
 
19
19
  ```lang-JSON
20
20
 
@@ -117,3 +117,7 @@
117
117
  }
118
118
 
119
119
  ```
120
+
121
+ #動作画面
122
+
123
+ ![イメージ説明](78107660ffc0ca0cd820eab9ba386d07.png)

1

VS Codeの設定ファイルを挿入した。

2017/06/15 03:15

投稿

Takym
Takym

スコア22

test CHANGED
File without changes
test CHANGED
@@ -11,3 +11,109 @@
11
11
  考えられる問題は何でしょうか?
12
12
 
13
13
  回答、よろしくお願いいたします。
14
+
15
+
16
+
17
+ # 現在、適用させている設定
18
+
19
+ ```lang-JSON
20
+
21
+ {
22
+
23
+ "editor.fontFamily": "MS Gothic",
24
+
25
+ "editor.fontSize": 18,
26
+
27
+ "editor.lineHeight": 0,
28
+
29
+
30
+
31
+ "editor.lineNumbers": "on",
32
+
33
+ "editor.wordWrap": "wordWrapColumn",
34
+
35
+ "editor.wordWrapColumn": 140,
36
+
37
+ "editor.wrappingIndent": "indent",
38
+
39
+
40
+
41
+ "editor.insertSpaces": false,
42
+
43
+ "editor.renderWhitespace": "all",
44
+
45
+ "editor.renderControlCharacters": true,
46
+
47
+ "editor.renderIndentGuides": true,
48
+
49
+ "editor.tabSize": 4,
50
+
51
+ "editor.detectIndentation": false,
52
+
53
+
54
+
55
+ "editor.autoClosingBrackets": true,
56
+
57
+ "editor.folding": true,
58
+
59
+
60
+
61
+ "editor.cursorBlinking": "blink",
62
+
63
+ "editor.cursorStyle": "line",
64
+
65
+
66
+
67
+ "editor.formatOnType": false,
68
+
69
+ "editor.suggestOnTriggerCharacters": true,
70
+
71
+ "editor.acceptSuggestionOnEnter": "on",
72
+
73
+
74
+
75
+ "editor.minimap.enabled": true,
76
+
77
+ "editor.minimap.renderCharacters": true,
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+ "diffEditor.renderSideBySide": false,
88
+
89
+ "diffEditor.ignoreTrimWhitespace": false,
90
+
91
+
92
+
93
+
94
+
95
+ "files.encoding": "utf8",
96
+
97
+ "files.eol": "\n",
98
+
99
+ "files.hotExit": "off",
100
+
101
+
102
+
103
+ "window.openFilesInNewWindow": "off",
104
+
105
+ "explorer.openEditors.visible": 5,
106
+
107
+ "explorer.openEditors.dynamicHeight": false,
108
+
109
+
110
+
111
+ "update.channel": "default",
112
+
113
+ "workbench.colorTheme": "Visual Studio Light",
114
+
115
+ "workbench.iconTheme": "vs-minimal"
116
+
117
+ }
118
+
119
+ ```