0
votes
0answers
21 views
How to indent ActionScript associative array with VIM
I'm trying to use VIM to format AS3 codes, but have some problems for object definitions.
VIM formats it as below:
var object = {
a : b,
c : d
}
However what I want …
28
votes
9answers
6k views
How do I indent multiple lines quickly in vi?
Should be trivial, and it might even be in the help, but I can't figure out how to navigate it.
Thanks in advance.
2
votes
1answer
68 views
Eclipse PDT: How do I get it to format my PHP arrays like VIM?
I've been struggling to get Eclipse to format my php arrays like vim indentation does.
What eclipse does (press CTRL+SHIFT+F)
<?php
$array = array(
'key1' => 'value1',
'key …
1
vote
1answer
37 views
Keep a UITableView section from showing up as editing while the table is in edit mode
I've got 2 sections in a UITableView. The tableview needs to stay in edit mode, but only the first section is editable. Specifically, I want the second section to display as it w …
0
votes
1answer
81 views
How do I parse indents and dedents with pyparsing?
Here is a subset of the Python grammar:
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
stmt: simple_stmt | compound_stmt
simple_stmt: small_stmt (';' small_stmt)* [' …
2
votes
1answer
92 views
Vim textwidth comma indent problem
If i set the following option in Vim,
set textwidth=80
the text will break at 80 characters. This works, but the problem is if a comma (,) is on the end of a line, Vim indents t …
-5
votes
11answers
632 views
Indenting styles
What are the different kinds of indent style in use? Are there any objective differences? How do you determine the indent style for a whole development shop?
The indent style that …
0
votes
3answers
98 views
How can I make a php script add a tab to every line of an include file?
Within my HTML, I have a php script that includes a file. At that point, the code is indented 2 tabs. What I would like to do is make the php script add two tabs to each line. Here …
0
votes
1answer
219 views
Java: How to Indent XML Generated by Transformer
I'm using Java's built in XML transformer to take a DOM document and print out the resulting XML. The problem is that it isn't indenting the text at all despite having set the para …
2
votes
2answers
129 views
Make Emacs less aggressive about indentation
Emacs reindents the current line whenever I type certain things, like ";" or "//". This is pretty annoying, since there are a whole lot of places where it isn't smart enough to in …
5
votes
8answers
2k views
Set 4 Space Indent in Emacs in Text Mode
I've been unsuccessful in getting Emacs to switch from 8 space tabs to 4 space tabs when I'm using Text mode. I've tried to edit my .emacs file to:
(setq-default indent-tabs-mode …
3
votes
3answers
199 views
How do I make vim indent JavaScript in HTML?
Vim 7.0.237 is driving me nuts with indentexpr=HtmlIndentGet(v:lnum). When I edit JavaScript in a <script> tag indented to match the surrounding html and press enter, it move …
1
vote
1answer
224 views
Question about HTMLTidy in Notepad++
How do I make it so that instead of indenting my elements by multiples of 2 spaces (when formatting without wrapping is selected), HTMLTidy indents them by multiples of tabs (4 spa …
3
votes
2answers
259 views
Any Emacs command like paste-mode in vim?
When i'm trying to paste some code from browser to Emacs, it will indent code automatically, is there any way to stop Emacs from indenting temporarily like :set paste in vim?
-2
votes
5answers
396 views
Python. How to remove tab indent from several lines?
If you want to indent several lines in Python you just mark the lines and hit Tab. But what if you want to remove the indent from several lines? Is there a quick way to do that?
T …
