Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Coder HelperNew to Visual Studio Code? Get it now.
Coder Helper

Coder Helper

renwei.chen

|
715 installs
| (0) | Free
escape unescape code , splite url query , format curl command
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

coder-helper README

using for escape/unescape text string using for splite/merge url query string format curl command

Features

escape string

abc say :"hello" ==> "abc say :\"hello\""

unescape string

"abc say :\"hello\"" ==> abc say :"hello"

splite url query

a=10&b=23&c=45
===== convert to =>
a=10&
b=23&
c=45

url merge

a=10&
b=23&
c=45
===== convert to =>
a=10&b=23&c=45

format curl

curl -H "Host: www.google.com" --data "a=1&b=2&c=3" https://google.com
===== convert to =>
curl \
-H "Host: www.google.com" \
--data "a=1&b=2&c=3" \
https://google.com

Requirements

If you have any requirements or dependencies, add a section describing those and how to install and configure them.

Known Issues

Calling out known issues can help limit users opening duplicate issues against your extension.

Release Notes

Users appreciate release notes as you update your extension.

0.0.10

  1. disable vscode InformationMessage

0.0.9

  1. rollback support VSCode 1.55.0

0.0.8

  1. fixed curl format error while has json data-binary
  2. support unescape string with single quotation mark '
  3. change to web extension

0.0.5

add unicode covert

0.0.4

Bump minimist from 1.2.5 to 1.2.6

0.0.3

fixed curl splite --data add twice some time remove mocha

0.0.2

Initial release


打包: vsce package 发布 vsce publish

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft