https://github.com/fabiospampinato/vscode-kasi
A little wrapper over the "kasi" package for changing the casing of selections.
https://github.com/fabiospampinato/vscode-kasi
case casing extension kasi vsc vscode
Last synced: about 1 year ago
JSON representation
A little wrapper over the "kasi" package for changing the casing of selections.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-kasi
- Owner: fabiospampinato
- License: mit
- Created: 2024-03-16T23:17:22.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T23:22:03.000Z (about 2 years ago)
- Last Synced: 2025-01-30T07:15:30.087Z (over 1 year ago)
- Topics: case, casing, extension, kasi, vsc, vscode
- Language: TypeScript
- Homepage:
- Size: 98.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Kasi
A little wrapper over the [`kasi`](https://github.com/fabiospampinato/kasi) package for changing the casing of selections.
## Install
Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-kasi), or run the following in the command palette:
```sh
ext install fabiospampinato.vscode-kasi
```
## Usage
It adds 10 commands to the command palette:
```js
'Kasi: Camel Case' // Change the casing of the current selections to camel case
'Kasi: Constant Case' // Change the casing of the current selections to constant case
'Kasi: Dot Case' // Change the casing of the current selections to dot case
'Kasi: Kebab Case' // Change the casing of the current selections to kebab case
'Kasi: Lower Case' // Change the casing of the current selections to lower case
'Kasi: Pascal Case' // Change the casing of the current selections to pascal case
'Kasi: Path Case' // Change the casing of the current selections to path case
'Kasi: Snake Case' // Change the casing of the current selections to snake case
'Kasi: Title Case' // Change the casing of the current selections to title case
'Kasi: Upper Case' // Change the casing of the current selections to upper case
```
## License
MIT © Fabio Spampinato