-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swapping quotes/replacing quotes with - not working #64
Comments
Hi, what language are we talking about? Javascript, CSS or something else? |
It's C++ |
Can you please send me some small sample of a code where you expect it to work? I never tested it on C++. Is backtick (`) a valid string delimiter in C++? If not and you need only single and double quotes then this should be only a matter of configuration. I can add it to the plugin. |
alright, let me know if the plugin have been updated. As far as I know I only use let me know if you need a copy of what a code looks like in C++ |
Any news? I haven't heard anything? |
Not yet, sorry. Will try get to it in the upcoming weeks. Can you please send me some small C++ code sample where I could test this? Thanks. |
void creating_map() {
//@ Information of Player 1
player_one["number"] = L"One";
player_one["name"] = L"John Doe";
player_one["marker"] = L"None";
player_one["wins"] = to_wstring(player_1_wins);
// player_one["loss"] = to_wstring(player_1_loss);
//@ Information of Player 2
player_two["number"] = L"Two";
player_two["name"] = L"Jane Doe";
player_two["marker"] = L"None";
player_two["wins"] = to_wstring(player_2_wins);
// player_two["loss"] = to_wstring(player_2_loss);
}
string example = "This is a test" Here's the code from test.cpp. Above is a good example of using either bracket or quote Test the let me know if you need one more small code to run tests to be sure. I also faced some similar problem in LUA where I wanted to change a quote to another quote |
I've addressed this issue in #69 |
Hello, The package is not working properly.
DETAILS:
A list of issues:
I used this to change " to `, then nothing. got the message: No quotes to modify found.
what I want to change the quote to a single quote ** ' **
Is there a workaround for this? or a fix?
The text was updated successfully, but these errors were encountered: