I’m in the need of a feature where I have something like this in my editor:
db.kittens.aggregate(
{$unwind : "kitty.name"},
{$sort : {"kitty.age" : -1}}
])
This is just example code for showing formatting
I want to be able to mark the sentence, click on a keyboard shortcut and have the marked sentence filtered without newlines and tabs and double-spaces and added to the clipboard. I don’t want the sentence in the editor to be changed.
I read throw the “how to create a plugin” document but it’s a bit overwhelming at the moment, so if someone has an example of something similar to the request above it would really kick start me.
Thanks alot in advance,
Joche