An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Kasi


Logo

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