File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
CodeEdit/Features/Editor/Views Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -216,10 +216,19 @@ private extension SettingsData.TextEditingSettings.IndentOption {
216
216
private extension SettingsData . TextEditingSettings . InvisibleCharactersConfig {
217
217
func textViewOption( ) -> InvisibleCharactersConfiguration {
218
218
guard self . enabled else { return . empty }
219
- return InvisibleCharactersConfiguration (
219
+ var config = InvisibleCharactersConfiguration (
220
220
showSpaces: self . showSpaces,
221
221
showTabs: self . showTabs,
222
222
showLineEndings: self . showLineEndings
223
223
)
224
+
225
+ config. spaceReplacement = self . spaceReplacement
226
+ config. tabReplacement = self . tabReplacement
227
+ config. carriageReturnReplacement = self . carriageReturnReplacement
228
+ config. lineFeedReplacement = self . lineFeedReplacement
229
+ config. paragraphSeparatorReplacement = self . paragraphSeparatorReplacement
230
+ config. lineSeparatorReplacement = self . lineSeparatorReplacement
231
+
232
+ return config
224
233
}
225
234
}
You can’t perform that action at this time.
0 commit comments