Wrap selected word with cx()
.
'hello'
=>
cx('hello')
Multiple selections of words are all wrapped with cx()
.
'hello', 'world'
=>
cx('hello'), cx('world')
In case the word is wrapped with cx()
already, cx wrapper removes it.
'hello', cx('world')
=>
cx('hello'), 'world'
Initial release
Enjoy!