Skip to content

Commit 4b6f2a1

Browse files
authored
Merge pull request #13 from deinsoftware/dev
fix tab indicator on readme
2 parents e507bd5 + 881e1ac commit 4b6f2a1

File tree

3 files changed

+46
-40
lines changed

3 files changed

+46
-40
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Fixed for any bug fixes.
99
Security to invite users to upgrade in case of vulnerabilities.
1010
-->
1111

12+
## 1.4.1 - 2023/04/14
13+
14+
### Fixed
15+
16+
Readme cursor symbol
17+
1218
## 1.4.0 - 2023/04/14
1319

1420
### Added

README.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The quick and easy way to debug your code and styles with [VS Code](https://code
2222
- [Snippets](#snippets)
2323
- [Code](#code)
2424
- [Styles](#styles)
25-
- [keyboard](#keyboard)
25+
- [Keyboard](#keyboard)
2626
- [Settings](#settings)
2727
- [About](#about)
2828

@@ -67,59 +67,59 @@ Open the extension manager with <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>X</kbd> (W
6767

6868
## Snippets
6969

70-
Below is a list of all available snippets and the triggers of each one. The **$** means the `TAB` jump position and `` the final cursor position.
70+
Below is a list of all available snippets and the triggers of each one. The `` means the `TAB` jump position and `` the final cursor position.
7171

7272
### Code
7373

7474
| Trigger | Description | Result JS/TS |
7575
| ------: | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------- |
7676
| `dbg→` | [debugger](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/debugger) | `debugger█` |
77-
| `cl→` | [log](https://developer.mozilla.org/en-US/docs/Web/API/Console/log) | `console.log($name)█` |
78-
| `clm→` | log with message | `console.log('$name:', $name)█` |
79-
| `cld→` | log with destructuring | `console.log({$name})█` |
80-
| `clj→` | log with json | `console.log('$obj:', JSON.stringify($obj, null, 2))█` |
81-
| `cd→` | [debug](https://developer.mozilla.org/en-US/docs/Web/API/Console/debug) | `console.debug($name)█` |
82-
| `cdm→` | debug with message | `console.debug('$name:', $name)█` |
83-
| `cdd→` | debug with destructuring | `console.debug({$name})█` |
84-
| `cdj→` | debug with json | `console.debug('$obj:', JSON.stringify($obj, null, 2))█` |
85-
| `ci→` | [info](https://developer.mozilla.org/en-US/docs/Web/API/Console/info) | `console.info($name)█` |
86-
| `cim→` | info with message | `console.info('$name:', $name)█` |
87-
| `cid→` | info with destructuring | `console.info({$name})` |
88-
| `cij→` | info with json | `console.info('$obj:', JSON.stringify($obj, null, 2))█` |
89-
| `ce→` | [error](https://developer.mozilla.org/en-US/docs/Web/API/Console/error) | `console.error($name)█` |
90-
| `cem→` | error with message | `console.error('$name:', $name)█` |
91-
| `ced→` | error with destructuring | `console.error({$name})█` |
92-
| `cej→` | info with json | `console.error('$obj:', JSON.stringify($obj, null, 2))█` |
93-
| `cw→` | [warn](https://developer.mozilla.org/en-US/docs/Web/API/Console/warn) | `console.warn($name)█` |
94-
| `cwm→` | warn with message | `console.warn('$name:', $name)█` |
95-
| `cwd→` | warn with destructuring | `console.warn({$name}█)` |
96-
| `cwj→` | info with json | `console.warn('$obj:', JSON.stringify($obj, null, 2))█` |
97-
| `ct→` | [table](https://developer.mozilla.org/en-US/docs/Web/API/Console/table) | `console.table($collection)█` |
98-
| `ctd→` | table with destructuring | `console.table({$name})█` |
99-
| `ca→` | [assert](https://developer.mozilla.org/en-US/docs/Web/API/Console/assert) | `console.assert($expression, $name)█` |
100-
| `cdr→` | [dir](https://developer.mozilla.org/en-US/docs/Web/API/Console/dir) | `console.dir($name)█` |
101-
| `ctr→` | [trace](https://developer.mozilla.org/en-US/docs/Web/API/Console/trace) | `console.trace($name)█` |
102-
| `cc→` | [count](https://developer.mozilla.org/en-US/docs/Web/API/Console/count) | `console.count($label)█` |
103-
| `ccr→` | [count reset](https://developer.mozilla.org/en-US/docs/Web/API/Console/countReset) | `console.countReset($label)█` |
77+
| `cl→` | [log](https://developer.mozilla.org/en-US/docs/Web/API/Console/log) | `console.log(name)█` |
78+
| `clm→` | log with message | `console.log('name:', name)█` |
79+
| `cld→` | log with destructuring | `console.log({name})█` |
80+
| `clj→` | log with json | `console.log('obj:', JSON.stringify(obj, null, 2))█` |
81+
| `cd→` | [debug](https://developer.mozilla.org/en-US/docs/Web/API/Console/debug) | `console.debug(name)█` |
82+
| `cdm→` | debug with message | `console.debug('name:', name)█` |
83+
| `cdd→` | debug with destructuring | `console.debug({name})█` |
84+
| `cdj→` | debug with json | `console.debug('obj:', JSON.stringify(obj, null, 2))█` |
85+
| `ci→` | [info](https://developer.mozilla.org/en-US/docs/Web/API/Console/info) | `console.info(name)█` |
86+
| `cim→` | info with message | `console.info('name:', name)█` |
87+
| `cid→` | info with destructuring | `console.info({name})` |
88+
| `cij→` | info with json | `console.info('obj:', JSON.stringify(obj, null, 2))█` |
89+
| `ce→` | [error](https://developer.mozilla.org/en-US/docs/Web/API/Console/error) | `console.error(name)█` |
90+
| `cem→` | error with message | `console.error('name:', name)█` |
91+
| `ced→` | error with destructuring | `console.error({name})█` |
92+
| `cej→` | info with json | `console.error('obj:', JSON.stringify(obj, null, 2))█` |
93+
| `cw→` | [warn](https://developer.mozilla.org/en-US/docs/Web/API/Console/warn) | `console.warn(name)█` |
94+
| `cwm→` | warn with message | `console.warn('name:', name)█` |
95+
| `cwd→` | warn with destructuring | `console.warn({name}█)` |
96+
| `cwj→` | info with json | `console.warn('obj:', JSON.stringify(obj, null, 2))█` |
97+
| `ct→` | [table](https://developer.mozilla.org/en-US/docs/Web/API/Console/table) | `console.table(collection)█` |
98+
| `ctd→` | table with destructuring | `console.table({name})█` |
99+
| `ca→` | [assert](https://developer.mozilla.org/en-US/docs/Web/API/Console/assert) | `console.assert(expression, name)█` |
100+
| `cdr→` | [dir](https://developer.mozilla.org/en-US/docs/Web/API/Console/dir) | `console.dir(name)█` |
101+
| `ctr→` | [trace](https://developer.mozilla.org/en-US/docs/Web/API/Console/trace) | `console.trace(name)█` |
102+
| `cc→` | [count](https://developer.mozilla.org/en-US/docs/Web/API/Console/count) | `console.count(label)█` |
103+
| `ccr→` | [count reset](https://developer.mozilla.org/en-US/docs/Web/API/Console/countReset) | `console.countReset(label)█` |
104104
| `cps→` | [profile start](https://developer.mozilla.org/en-US/docs/Web/API/console/profile) | `console.profile()█` |
105105
| `cpe→` | [profile end](https://developer.mozilla.org/en-US/docs/Web/API/console/profileEnd) | `console.profileEnd()█` |
106106
| `cpw→` | profile wrapper | <code>console.profile()<br/>█<br/>console.profileEnd()</code> |
107-
| `cts→` | [time start](https://developer.mozilla.org/en-US/docs/Web/API/Console/time) | `console.time($label)█` |
108-
| `ctl→` | [time log](https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog) | `console.timeLog($label)█` |
109-
| `cte→` | [time end](https://developer.mozilla.org/en-US/docs/Web/API/console/timeEnd) | `console.timeEnd($label)█` |
110-
| `ctw→` | time wrapper | <code>console.time($label)<br/>█<br/>console.timeEnd($label)</code> |
111-
| `cgs→` | [group start](https://developer.mozilla.org/en-US/docs/Web/API/Console/group) | `console.group($label)█` |
112-
| `cge→` | [group end](https://developer.mozilla.org/en-US/docs/Web/API/console/groupEnd) | `console.groupEnd($label)█` |
113-
| `cgw→` | group wrapper | <code>console.group($label)<br/>█<br/>console.groupEnd($label)</code> |
107+
| `cts→` | [time start](https://developer.mozilla.org/en-US/docs/Web/API/Console/time) | `console.time(label)█` |
108+
| `ctl→` | [time log](https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog) | `console.timeLog(label)█` |
109+
| `cte→` | [time end](https://developer.mozilla.org/en-US/docs/Web/API/console/timeEnd) | `console.timeEnd(label)█` |
110+
| `ctw→` | time wrapper | <code>console.time(label)<br/>█<br/>console.timeEnd(label)</code> |
111+
| `cgs→` | [group start](https://developer.mozilla.org/en-US/docs/Web/API/Console/group) | `console.group(label)█` |
112+
| `cge→` | [group end](https://developer.mozilla.org/en-US/docs/Web/API/console/groupEnd) | `console.groupEnd(label)█` |
113+
| `cgw→` | group wrapper | <code>console.group(label)<br/>█<br/>console.groupEnd(label)</code> |
114114
| `clr→` | [clear](https://developer.mozilla.org/en-US/docs/Web/API/Console/clear) | `console.clear()█` |
115115

116116
### Styles
117117

118118
| Trigger | Description | Result CSS |
119119
| ------: | ------------------------------- | -------------------------------------------------------------------------------------- |
120-
| `co→` | outline | `outline: 1px solid $color !important;█` |
121-
| `cb→` | background | `background: $color !important;█` |
122-
| `cob→` | outline and background | <code>outline: 1px solid $color !important;<br/>background: $color !important;█</code> |
120+
| `co→` | outline | `outline: 1px solid color !important;█` |
121+
| `cb→` | background | `background: color !important;█` |
122+
| `cob→` | outline and background | <code>outline: 1px solid color !important;<br/>background: color !important;█</code> |
123123

124124
[Back to menu](#menu)
125125

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "debug-snippets",
33
"description": "VS Code Debug snippets for JS, TS and CSS",
4-
"version": "1.4.0",
4+
"version": "1.4.1",
55
"displayName": "Debug Snippets",
66
"publisher": "deinsoftware",
77
"icon": "images/light-icon.png",

0 commit comments

Comments
 (0)