Transform (selected) text in atom editor.
A collection of usefull text transformations.
The inspiration for this package comes comes from several TextMate
packages. The small helpers like HTML > URI-Encode
are the only
thing I really miss, however I think these "transformations" of the
current selection are better bundled together. For example, one
might need to URI-encode a small snippet of text outside of a
.html
file.
Edit > Text
Commands)The following string methods from underscore.string
are included as commands:
Lorem Ipsum
=> lOREM iPSUM
lorem ipsum
=> Lorem ipsum
lorem ipsum
=> Lorem Ipsum
lorem ipsum factory_bean
=> loremIpsumFactoryBean
Lorem Ipsum
=> lorem_ipsum
Lorem Ipsum
=> Lorem Ipsum
loremIpsum_FactoryBean
=> Lorem ipsum factory bean
Lor.em Ip sum
=> LorEmIpSum
Lo!rem/ Ip = sum
=> lorem-ip-sum
Lorem <br>Ipsum
=> Lorem Ipsum
<b>Lorem Ipsum</b>
=> <b>Lorem Ipsum</b>
<b>Lorem Ipsum</b>
=> <b>Lorem Ipsum</b>
The following URI methods are also available (via URIjs
):
!Lorem&Ipsum!
=> %21Lorem%26Ipsum%21
Lorem%20%26%20Ipsum%20%5E%5E
=> Lorem & Ipsum ^^
Some additional built-ins:
Lorem
=> LoremLorem
I am currently thinking about these topics and would appreciate input from the community:
Packages > Transform > …
and let the user configure which further menus to add where?autocomplete-plus
) make sense?Contributions are more than welcome.
You can also give input to the open questions.
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.