My code editor gets rid of _ when I type Japanese characters in between " " in yaml.
I use AWS cloud9 to write codes.
For example, when I type
current_password: "現在のパスワード"</p>
this is displayed as current password: "現在のパスワード"
in the editor.
_ is missing in the key, so this gets a syntax error when I load this file.
However, when the quotation marks don't include Japanese characters, _ is visible in the editor.
current_password: "aaa"
In case of no string in the quotation marks,
current_password: ""
it gets the same result(_ is properly shown).
Is there any way to cope with this editor problem? Or is there a way to handle non-English characters as string in yaml file?