Tagged Questions
1
vote
1answer
202 views
Show Indent Guide Lines In Xcode
Comming from a background using Visual Studio and Notepad++ im used to the indent guides which help to visually enhance sections of code where the curly braces are used, {.
Xcode (No indent guides)
...
9
votes
4answers
10k views
Bash continuation lines
How do you use bash continuation lines?
I realize that you can do this:
echo "continuation \
lines"
>continuation lines
However, if you have indented code, it doesn't work out so well...
...
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 ...
6
votes
2answers
3k views
How do you indent *every* line of a <span> element?
I have the following HTML chunk:
<span class='instruction_text'>
Line 1<br>
Line 2
</span>
And the CSS declaration of instruction_text is:
.instruction_text {
margin-left: ...