Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/milovidov983/escapequotes

An extension for VS Code that allows you to escape quotes in the selected string
https://github.com/milovidov983/escapequotes

Last synced: about 1 month ago
JSON representation

An extension for VS Code that allows you to escape quotes in the selected string

Awesome Lists containing this project

README

        

# EscapeQuotes

An extension for VS Code that allows you to escape/unescape quotes in the selected string.

https://github.com/milovidov983/EscapeQuotes

https://marketplace.visualstudio.com/items?itemName=milovidov.escape-quotes

After installing the extension, when you select text and right-click on it, a new *Escape quotes* menu will appear.

### Example

Before escape:

```
Select * from "Table" where exists(select 1 from jsonb_array_elements("Data"->'users') v where v->'job'->'some'->>'foo'='0')
```

After escape:

```
Select * from \"Table\" where exists(select 1 from jsonb_array_elements(\"Data\"->\'users\') v where v->\'job\'->\'some\'->>\'foo\'=\'0\')
```