Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skuroda/ChangeCase
https://github.com/skuroda/ChangeCase
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skuroda/ChangeCase
- Owner: skuroda
- Created: 2013-01-19T02:07:22.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-25T01:16:59.000Z (almost 12 years ago)
- Last Synced: 2024-05-19T23:37:06.025Z (6 months ago)
- Language: Python
- Size: 105 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeCase.sublime-settings
Awesome Lists containing this project
README
# ChangeCase
## Overview
This plugin adds additional case modifications to Sublime Text 2. Note that this plugin modifies the case of text delimited by whitespace.
## Installation
Note with either method, you may need to restart Sublime Text 2 for the plugin to load.### Package Control
Installation through [package control](http://wbond.net/sublime_packages/package_control) is recommended. It will handle updating your packages as they become available. To install, do the following.* In the Command Palette, enter `Package Control: Add Repository`
* Enter the following URL into the input box: `https://github.com/skuroda/ChangeCase`
* In the Command Palette, enter `Package Control: Install Package`
* Search for `ChangeCase`### Manual
Clone or copy this repository into the packages directory. Ensure it is placed in a folder named `ChangeCase`. By default, the Packages directories are located at:* OS X: ~/Library/Application Support/Sublime Text 2/Packages/
* Windows: %APPDATA%/Roaming/Sublime Text 2/Packages/
* Linux: ~/.config/sublime-text-2/Packages/## Usage
By default all commands are accessible through the command palette. All commands appear as `ChangeCase: `### Commands
#### Title Case
The title case command will capitilize the first character of each word that does not appear in the ignore list. In addition, both parts of hyphenated word will be capitalized (ex. `hello-world` will become `Hello-World`).## Settings
`title_case_ignore`:An array containing words to ignore in the title case command.