1
vote
5answers
118 views
Is there a text editor that will automatically determine whether to indent with spaces or tabs?
It's very easy to set a text editor to use spaces or tab characters with each press of the tab key. However, I'm working with a grip of Python code maintained by a large team of de …
3
votes
3answers
115 views
How do I configure indentation in vim in a specific way?
If I type the following
void main(int blah,
and then press enter, I want to continue here:
float blah);
How can I achieve this?
0
votes
5answers
114 views
Python: “Indentation Error: unindent does not match any outer indentation level”
I just can't figure out what's wrong with this...
#!/usr/bin/env python
#
# Bugs.py
#
from __future__ import division
# No Module!
if __name__ != '__main__':
p …
1
vote
6answers
112 views
Indenting Bash Script Output
Hello all,
I am attempting to write a bash script and I am having difficulty making the output look neat and organized. I could fall back on just using newlines, but I would much …
5
votes
2answers
90 views
Combined HTML, PHP and Javascript indenting and syntax highlighting in vim
Hi all,
I use vim for web development. These are almost always .php files, which also contain HTML and sometimes Javascript. While working in a block of PHP, indenting works fine. …
0
votes
1answer
16 views
Why are my script tags rendered outside my body tag?
This is my nhaml code
^ var title=""
!!! XML
!!! Strict
%html{xmlns="http://www.w3.org/1999/xhtml"}
%head
%title
Nhaml Master #{title}
_styles
%body
.page …
2
votes
2answers
99 views
Proper perl switch formatting in emacs
Edit: After reading the responses, I believe the answer is "don't do this", hence I marked an appropriate response as the official answer.
Is there an easy way to get emacs to dis …
0
votes
7answers
106 views
PHP Line Indentation
Hi,
I'm curious to know, how many spaces of indentation do you prefer in PHP code?
function one()
{
$one;
function space()
{
$space;
}
}
function two()
{
$two;
functio …
0
votes
4answers
90 views
Controlling Output Indentation in ASP.Net MVC
My colleague is extremely 'hot' on properly formatted and indented html being delivered to the client browser. This is so that the page source is easily readable by a human.
First …
3
votes
3answers
163 views
Vim indenting file for Treetop (Ruby parser)
Has anyone seen a vim indent file for treetop, the Ruby parser/generator? I've found a vim syntax highlighting file, but haven't seen one for indentation.
3
votes
2answers
149 views
How to display indentation guides in Emacs?
I'm trying to switch to Emacs as my primary source-code editor. I really miss one thing (common in even much simpler editors) - indentation guides (unobtrusive vertical lines which …
0
votes
2answers
153 views
How to write an empty indentation block in Python?
The runtime keeps telling me:
expected an indented block
But I don't want write nothing inside my except block, I just want it to catch and swallow the exception.
0
votes
1answer
18 views
Copy of “Format Document” function in Visual Studio?
I am looking for an app that can do what the "Format Document" function does in Visual Studio. Something really stupid (maybe even an add-on to a normal text editor) that will basi …
1
vote
1answer
166 views
XCode 3.2: Changing the default “Code Sense” indentation and whitespaces
I'm working with XCode 3.2 (on "Snow Leopard") which (still) has this nice "Text Macro" auto-completion feature (eg. if you type if it will expand to if (<#condition#>) { < …
0
votes
2answers
90 views
Emacs Actionscript 3 indentation for functions defined inline in an arglist
I'm using the actionscript-mode-connors.el for indenting Actionscript 3 code in emacs.
I have most things figured out, but one thing bothering me is when I use an inline closure a …
