Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
283 views

A list of useful python commands for Vim?

I was looking for a quick way to autoformat/pretty-print JSON in Vim the other day and found this great little command on SO: :%!python -m json.tool That sent me on a search for a list of other ...
7
votes
4answers
429 views

How can I automatically tidy up Perl source code?

A cat at my company walked over a keyboard and has left a valid 1000+ line of executable Perl code for me to maintain. Thanks to Perl's TMTOWTDI philosophy I find myself searching Google to make ...
7
votes
4answers
779 views

tool to auto-format R code

Is there any tool (editor, script, whatever...) available that can automatically reformat R code? It does not need to be customizable but it must be able to recognize statements separated by either ...
6
votes
6answers
730 views

If it is possible to auto-format code before and after a source control commit, checkout, diff, etc. does a company really need a standard code style?

If it is possible to auto-format code before and after a source control commit, checkout, diff, etc. does a company really need a standard code style? It feels like standard coding style debates that ...
6
votes
5answers
1k views

Visual Studio/C# auto-format. Can I control newline after attributes

Visual studio keeps doing this: [DataContract] public class MyContract { [DataMember] public bool MyBool { get; set; } [DataMember] public string MyString { get; set; } } I would ...
5
votes
2answers
69 views

In emacs Python mode, how do I set a different auto-fill width for docstrings and code?

I would like to have auto-fill set to 79 columns for code sections and 72 for docstrings to get automatic PEP8 compliance. There seems to be an option to do this for Lisp mode ...
3
votes
2answers
594 views

Disable auto-indent certain items in Visual Studio 2005?

I don't mind most of the way that VS2005 auto-indents (or auto-formats) my C++ code, but certain items I don't want it to automatically indent. Like #define statements for example. It takes them and ...
2
votes
4answers
90 views

Automatically pretty format large number of Java source files

I have many Java files from a project which have not been formatted properly. Also due to enforcement of a common style many people have introduced their own coding style. I want to bring all this ...
2
votes
3answers
237 views

Are there any Mac OS code editors that support code auto-formatting (a.k.a. beautifying)?

So far I'm really impressed with Espresso, but it doesn't seem to offer any auto-formatting (by which I'm spoiled by Visual Studio). Are there any general code editors for Mac that support this? ...
2
votes
3answers
174 views

Auto formatting in VIM for PHP

I want to be able to take the following code if ($something) { do something } and make it if ($somthing) { do something } through out a whole file without really going to each ...
2
votes
3answers
632 views

Programmatically format XML in indented form just like Visual Studio's auto-format

I haven't found a way using .NET's XmlWriter and associated XmlWriterSettings to format an XML string in indented form exactly the way that Visual Studio does it with its auto-format command (Ctrl-E ...
2
votes
2answers
1k views

Custom format document option in visual studio. Formatting CSS tags

When i work in VS2008, i use the Ctrl+K+D very often as it saves a lot of time. But in CSS files, this command formats the document in a way i don't quite like. For example when i auto format the ...
2
votes
1answer
1k views

Visual Studio Auto-Format Broken

I'm running Visual Studio 2008 sp1 on Windows 7 Build 7100 32bit. I've never had this problem before, even on different installs of Windows 7 RC. when I finish a statement with a ';' or '}' or ...
1
vote
1answer
716 views

Visual Studio 2010 Auto-Formatting

I have the Productivity Power Tools extension installed on my machine, as well as VS 2010, but I seem to have developed a mysterious issue. The IDE no longer auto-formats code when I enter a ; or } ...
1
vote
1answer
528 views

How to disable Eclipse PDT auto-format code when pasting

I'm using Eclipse Indigo 3.7.0 with PDT for PHP develpment. When I copy/paste some code, Eclipse automatically format it. For example, copying this : if ($distance > 50 && $distance ...
1
vote
1answer
376 views

PHP Autoformat Paragraph tags

This is a fairly basic question however I've only ever managed to find three answers. I want to autoparagraph unformatted content that may or may not contain other html elements. The two good to go ...
1
vote
3answers
3k views

Dreamweaver CS5 Auto-Format source code like in VS2010 CTRL+K, CTRL+D?

Does Dreamweaver CS5 support auto-formatting feature similar to Visual Studio 2010 CTRL+K, CTRL+D? Thanks!
1
vote
1answer
313 views

Eclipse does not format this if statement correctly

This should be easy to answer: I have Eclipse set to wrap Java code over 80 chars to respect my margin. This code never wraps: if ...
1
vote
3answers
731 views

Auto formatting a web.config in Visual Studio 2008

I am currently in the process of creating API documentation using Microsoft Word 2007 and I need the user to cut and paste a section from the document into their web.config. I formatted the section ...
0
votes
0answers
52 views

Disable CSS auto-format in Visual Studio (particularly 11)

I need to disable the CSS auto format in Visual Studio 11. It simply drives me nuts, it's horrible. I remember in version 2010 there was an option to disable auto formatting for any language, but now ...
0
votes
1answer
61 views

Can I customize auto-formatting (like using UniversalIndentGUI) with Visual Studio?

So, I'm trying to create my own code formatting since the way Visual Studio auto-formats doesn't work exactly how I want. I was able to get the exact code format I wanted using UniversalIndentGUI. ...
0
votes
0answers
35 views

Autoformat Javadoc pointlists correctly

I want to write in my javadoc something like this /** * some comment for my class * * a list: * - do something * - do something else * - and then do something more * */ class MyClass { How ...
0
votes
1answer
31 views

Eclipse Ganymede Code Indenting of HTML?

I know I can auto-format various filetypes using Ctrl-Shft-F, but it seems pretty weak with HTML. I dug through all the configuration and found nothing that allows me to set format styles for HTML, ...
0
votes
2answers
64 views

Advanced spreadsheet auto-formatting

Is it possible to autoformat spreadsheet like this IF A1 = C1 then A1:E1 cells background becomes light gray I use OO Calc, but it's ok if you know how to do it in MS Excel or Google spreadsheet
0
votes
1answer
63 views

Aptana Studio Standalone JS autoformatting behaving differently from Eclipse Plugin version

For some reason, when I format this block of dojo-fied javascript with Aptana's JS editor var eventInput = new dijit.form.Select({ name : 'event', options : [{ label : 'Today', ...
0
votes
1answer
167 views

dreamweaver - autoformat xml within CDATA tags?

I have an xml that contains many CDATA tags which themselves contain an xml document each as a string. currently these blocks of CDATA are really just this, a string without any formatting. Is there ...
0
votes
0answers
599 views

Netbeans CSS auto format

In Netbeans 6.9.1 (PHP bundle) the code format (ALT+SHIFT+F) doesn't seem to work on CSS files, that is when I try to run it nothing happens. Is it normal or am I missing something?
0
votes
1answer
262 views

auto formatting new line after inline block comment

Visual Studio autoformat places a new line after all block comments - at least the one I am using. It does so obviously only for those comments, which come first on a line. /*mark1*/ double[] a = ...