To future readers
I agree, this deserves its current low ranking. You are free to downvote it again if you wish, but I don't believe it will actually accomplish anything as it is already a -6.
Original post:
So, the most common edit that I make is to simply highlight a block of text and then hit "ctrl+k". Could there be an easy way to simply highlight the text and press a button and have the currently selected text indented (without my having to actually enter into question edit mode)?
Basically, given this:
if foo: doBar()
(Which is really
if foo:
doBar()
in the source of the question)
I would be able to select "if foo: doBar()", click the button and it would change to
if foo:
doBar()
(the same as above, only with an additional 4 spaces in front of it)
EDIT
Currently, to fix bad indenting:
- See where error is in document.
- (possibly) scroll to edit button.
- Page re-renders (yes, it is inline, but now there is a large box on the top which makes it so that you have further loss of reference)
- Find area in document which was badly formatted in the new textarea.
- format.
- commit changes with "Save Edits".
