Skip to content

Special chars are not fully replaced #1688

Answered by gildas-lormeau
sergeevabc asked this question in Q&A
Discussion options

You must be logged in to vote

This is done on purpose. However you can change the replacement of special characters by clicking on the second button in the title of the options page, see below.

This will open the JSON editor. Then, you have to replace:

"filenameReplacedCharacters": [
    "~",
    "+",
    "?",
    "%",
    "*",
    ":",
    "|",
    "\"",
    "<",
    ">",
    "\\\\",
    "\u0000-\u001f",
    "�"
],

with:

"filenameReplacedCharacters": [
    "~",
    "+",
    "%",
    "*",
    "\"",
    "<",
    ">",
    "\\\\",
    "\u0000-\u001f",
    "�"
],

And replace:

"filenameReplacementCharacters": [
    "~",
    "+",
    "?",
    "%",
    "*",
    ":",
    "|",
    """,
    "<",
    ">",
    "\"
],

with:

"f…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@gildas-lormeau
Comment options

@sergeevabc
Comment options

@gildas-lormeau
Comment options

@sergeevabc
Comment options

@gildas-lormeau
Comment options

Answer selected by sergeevabc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1687 on March 06, 2025 15:16.