-
Notifications
You must be signed in to change notification settings - Fork 445
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
Allow query strings spread into multiple lines #16
Comments
@NikosEfthias , I am considering this, and since I am busy these days, I will implement this ASAP, sorry for the inconvenience. |
awesome thank you 👍 |
@NikosEfthias, when I think about this feature recently, I found that allowing request cross over multiple lines will have a problem that syntax highlight not working. And I think one simple way to this is just word wrap in Visual Studio Code by |
wordwrap is great but it does not allow you to break from the place you wish |
@NikosEfthias good point, I know your pain, but I am not sure how much value to break as you wish for most people 😢 Could you provide me a scenario? |
as i told a really long get query each part after ? could be in a new line terminated by |
@NikosEfthias agree |
at the moment it is really pain to horizontal scroll for changing something and even more difficult when its half of the screen |
@NikosEfthias I'd like to ONLY spread query string into multiple lines GET https://example.org/items?name=hello&type=world or GET https://example.org/items
?name=hello
&type=world or GET https://example.org/items
?name=hello&type=world |
GET https://example.org/items
?name=hello
&type=world this is way more clear |
@NikosEfthias I have GET https://example.org/items?name=hello&type=world or GET https://example.org/items
?name=hello
&type=world |
when is the update gonna be ready ? |
@NikosEfthias I have published a new version 0.7.4, you can try to verify. Thanks |
Steps to Reproduce:
some queries to api are really lng and writing them in single line is making everything worse
it could be so nice to split parts into lines but when i do this the request wont work
The text was updated successfully, but these errors were encountered: