You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,9 +56,9 @@ It's the custom name, isn't it convenient? I have pre-defined some commonly used
56
56
Considering that some terminals do not support color, or do not support `utf` characters, the display will appear garbled, so we provide options to turn off these functions
57
57
```cpp
58
58
magic::VisualizeOption option;
59
-
option.UTF8_SUPPORT = false; // do not use utf8 characters
60
-
option.COLORFUL_SUPPORT = false; // turn off color support
61
-
option.FULL_NAME = true; // use full name instead of custom alias
59
+
option.utf_support = false; // do not use utf8 characters
60
+
option.color_support = false; // turn off color support
61
+
option.full_name = true; // use full name instead of custom alias
0 commit comments