2
votes
4answers
5k views

Indent JavaScript Code written in on line in notepad++ or else

I have a javascript code that is written in on line (no carriage return), it's completely unreadable... With notepad++, I tried to replace those characters( "{", "}", ";" ) by themselves + a carriage ...
2
votes
1answer
963 views

Android Indent and Hanging Indent

I am interested in having a series of TextViews, ultimately with a hanging indent. The standard way of doing this via CSS is to set the margin to X pixels and then set the text indent to -X pixels. ...
12
votes
4answers
1k views

How do I indent a single line multiple times in vi or vim?

I've found several answers on how to indent multiple lines in vim, I want to know how to take a single line and indent it more than once. In effect, I want a shorter version of the following command: ...
1
vote
2answers
1k views

Indenting all lines inside textarea

Is it possible to text indent each line in a textarea? I'm using a handwritten font and the first letter on each line is getting cut off slightly. I've already used padding and margin, but this does ...
0
votes
1answer
333 views

Backspace, if chars from cursor to begin of line are tabs/spaces, go back one indent level

I'm using Vim for Python development. Sometimes, after an expression in an if clause: (suppose | is cursor). if test: pass | ...I press enter, and want to go to the if identation level. I ...