Skip to content

Commit 88e80a3

Browse files
authored
Merge pull request #3 from EfeDeveloper/develop
Develop
2 parents 1cc63c2 + 14bccba commit 88e80a3

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Format follows [Keep a Changelog](https://keepachangelog.com/).
66

77
## [Unreleased]
88

9+
## [1.0.1] - 2026-03-18
10+
11+
### Fixed
12+
13+
- Keyboard shortcut changed from `Ctrl+Shift+F` to `Alt+Shift+C` to avoid conflict with VS Code's built-in "Find in Files" command.
14+
915
## [1.0.0] - 2026-03-08
1016

1117
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ Select any text, right-click, and choose **Change case** → pick the desired fo
5656

5757
## Keyboard Shortcut
5858

59-
Press **`Ctrl+Shift+F`** with text selected to **cycle** through formats in order:
59+
Press **`Alt+Shift+L`** with text selected to **cycle** through formats in order:
6060

6161
```
6262
camelCase → snake_case → kebab-case → CONSTANT_CASE → Train-Case → lower words → UPPER WORDS → camelCase → …
6363
```
6464

65-
The shortcut only activates when the cursor is inside the editor with a selection, so it does not conflict with the default "Find in Files" shortcut. You can customise the keybinding any time via **File → Preferences → Keyboard Shortcuts**.
65+
The shortcut only activates when the cursor is inside the editor with a selection. You can customise the keybinding any time via **File → Preferences → Keyboard Shortcuts**.
6666

6767
## Contributing
6868

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Format Switcher",
44
"description": "Transform your text with ease! 🚀 Instantly switch between various formatting styles with our extension's context menu. Simply select your text and choose the desired format. Elegant texts, your way! 💡",
55
"icon": "images/icon.png",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/EfeDeveloper/format-switcher.git"
@@ -72,7 +72,7 @@
7272
"keybindings": [
7373
{
7474
"command": "extension.formatSwitcher.cycleCase",
75-
"key": "ctrl+shift+f",
75+
"key": "alt+shift+l",
7676
"when": "editorTextFocus && editorHasSelection"
7777
}
7878
],

src/caseConverters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type CaseType =
77
| 'kebabCase'
88
| 'trainCase';
99

10-
/** Ordered cycle: each Ctrl+Shift+F advances to the next format */
10+
/** Ordered cycle: each Alt+Shift+L advances to the next format */
1111
export const CYCLE_ORDER: CaseType[] = [
1212
'camelCase',
1313
'snakeCase',

0 commit comments

Comments
 (0)