Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/albertromkes/tabout
Tab out of quotes, brackets, etc for Visual Studio Code
https://github.com/albertromkes/tabout
brackets quotes visual-studio-code-extension
Last synced: 4 months ago
JSON representation
Tab out of quotes, brackets, etc for Visual Studio Code
- Host: GitHub
- URL: https://github.com/albertromkes/tabout
- Owner: albertromkes
- License: mit
- Created: 2015-11-20T19:11:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-10-22T10:21:45.000Z (over 2 years ago)
- Last Synced: 2024-08-01T16:43:02.712Z (7 months ago)
- Topics: brackets, quotes, visual-studio-code-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=albert.TabOut#review-details
- Size: 309 KB
- Stars: 119
- Watchers: 4
- Forks: 28
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# README
Tab out of quotes, brackets, etc for Visual Studio Code.
The list of characters to TabOut from is configured in Settings (https://code.visualstudio.com/docs/getstarted/settings).
You can remove and/or add characters to customize TabOut to your liking.
Default list of characters to TabOut from (click to expand)
{
"open": "[",
"close": "]"
},
{
"open": "{",
"close": "}"
},
{
"open": "(",
"close": ")"
},
{
"open": "'",
"close": "'"
},
{
"open": "\"",
"close": "\""
},
{
"open": ":",
"close": ":"
},
{
"open": "=",
"close": "="
},
{
"open": ">",
"close": ">"
},
{
"open": "<",
"close": "<"
},
{
"open": ".",
"close": "."
},
{
"open": "`",
"close": "`"
},
{
"open": ";",
"close": ";"
}
This extension is enabled by default. You can override this behaviour in your settings:
"tabout.disableByDefault": true
You can toggle the extension with the 'Toggle TabOut' command.