You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-16Lines changed: 25 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,24 +15,31 @@ The **TangoMan vscode-command-cycle** extension for _Visual Studio Code_ enables
15
15
16
16
### Step 1: Install the Extension
17
17
18
-
Install the extension directly from the Visual Studio Code marketplace or via the command line:
18
+
Launch _VSCode Quick Open_ (`Ctrl+P`), paste the following command, and press `Enter`.
19
+
20
+
```
21
+
ext install TangoMan75.command-cycle
22
+
```
23
+
24
+
Or install the extension via the command line:
19
25
20
26
```bash
21
27
code --install-extension TangoMan75.command-cycle
22
28
```
23
29
24
30
Or install the `.vsix` package manually:
25
31
26
-
1. Open the Extensions View in VSCOde.
27
-
2. Click on the Extensions icon in the Activity Bar.
28
-
3. Click on the three dots icon in the top right corner.
29
-
4. From the dropdown menu that appears, select "Install from VSIX...".
32
+
1. Download the source code.
33
+
2. Open the _Extensions View_ in _VSCode_.
34
+
3. Click on the Extensions icon in the _Activity Bar_.
35
+
4. Click on the three-dot icon (`...`) in the top-right corner.
36
+
5. From the dropdown menu that appears, select "`Install from VSIX...`".
30
37
31
38
### Step 2: Configure Keybindings
32
39
33
-
Edit your VSCode keybindings configuration in `keybindings.json` file to define the commands to cycle.
40
+
Edit your _VSCode_ keybindings configuration in the `keybindings.json` file to define the commands to cycle through.
34
41
35
-
For example, while using `wmaurer.change-case` extension you can cycle through various text case transformations (e.g., sentence case, title case, camelCase, etc.) by pressing `ctrl+k ctrl+t` repeatedly.
42
+
For example, while using the `wmaurer.change-case` extension, you can cycle through various text case transformations (e.g., sentence case, title case, camelCase, etc.) by pressing `Ctrl+K Ctrl+T` repeatedly.
36
43
37
44
```json
38
45
{
@@ -50,12 +57,14 @@ For example, while using `wmaurer.change-case` extension you can cycle through v
50
57
},
51
58
```
52
59
60
+

61
+
53
62
Replace the commands in the `commands` array with the ones you want to cycle through.
54
63
55
64
🔥 Usage
56
65
--------
57
66
58
-
1. Press the keybinding you configured (e.g., `ctrl+k ctrl+t`).
67
+
1. Press the keybinding you configured (e.g., `Ctrl+K Ctrl+T`).
59
68
2. The extension will execute the commands in the order specified in the `commands` array.
60
69
3. Each subsequent key press will execute the next command in the cycle.
61
70
@@ -70,22 +79,22 @@ Replace the commands in the `commands` array with the ones you want to cycle thr
70
79
71
80
Thank you for your interest in contributing to **TangoMan vscode-command-cycle**.
72
81
73
-
Please review the [code of conduct](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CODE_OF_CONDUCT.md) and [contribution guidelines](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CONTRIBUTION.md) before starting to work on any features.
82
+
Please review the [Code of Conduct](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CODE_OF_CONDUCT.md) and [Contribution Guidelines](https://github.com/TangoMan75/vscode-command-cycle/blob/master/CONTRIBUTION.md) before starting to work on any features.
74
83
75
-
If you want to open an issue, please check first if it was not [reported already](https://github.com/TangoMan75/vscode-command-cycle/issues) before creating a new one.
84
+
If you want to open an issue, please check first if it has not been[reported already](https://github.com/TangoMan75/vscode-command-cycle/issues) before creating a new one.
0 commit comments