Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major update - Not merge ready #39

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CaseConversion.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,18 @@
"GUI",
"UI",
"ID"
]
],

// Customize toggle cases as key: value pairs. Key is starting string and its corresponding value the target string.
// Reminder: A dictionary should only contain unique keys
// Possiblie value:
// 'lower','upper', 'capital', 'snake', 'screaming_snake', 'camel', 'pascal', 'dot', 'dash', 'slash', 'backslash',
// 'title', 'separate_words'

"toggle_cases":
{
"pascal": "snake",
"lower": "camel",
"camel": "pascal"
}
}
Loading