Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/milovidov983/escapequotes
- Owner: milovidov983
- License: mit
- Created: 2019-01-14T13:16:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T14:59:15.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T07:10:53.733Z (over 1 year ago)
- Language: TypeScript
- Size: 592 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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\')
```