A software feature commonly found in word processor programs such as Microsoft Word that automatically changes the formatting or appearance of text.

learn more… | top users | synonyms

1
vote
3answers
67 views

Is there a way to change the way vim auto formats c,c++ code

For example -- when i do gg=G on int main() { return 0; } it will change it to int main() { return 0; } What I want is -- int main(){ return 0; } The '{' should be on the funciton ...
1
vote
1answer
95 views

Auto-format R code in RStudio

Is there any possibilities for auto-formatting code in RStudio? I found this, but it is not connected with RStudio. Also it is desirable that it be customizable formatting.
4
votes
3answers
148 views

autoformat code from command line

Is it possible to run auto-format code for all or for specific file in solution, like (Ctrl+K, Ctrl+D) formatting in Visual Studio but from it`s command line? Or use Resharper's cleanup also from ...
0
votes
2answers
48 views

How to change IntelliJ 12 reformat behavior for enums?

IntelliJ's reformat code option (ctrl+alt+l) adds an extra lines to enum declarations. It will change this: public enum Day {MON, TUE, FRI}; to this: public enum Day {MON, TUE, FRI} ; How do I ...
0
votes
0answers
22 views

Force spaces in field declaration in Intellij Idea

I am using Intellij Idea CE for Android Development. (Very nice IDE). I know fields can be aligned in Intellij Idea as described here. My question is can we insert additional spaces in the field ...
0
votes
1answer
49 views

Howto temporarily turn off auto formating in Visual Studio 2010

Sometimes it would be convenient if I could temporarily turn off the auto formatting feature of Visual Studio, do some editing stuff and then turn it on again. I don't want to go the long way into ...
10
votes
1answer
138 views

How do I keep Resharper from massively indenting lambdas?

I have Resharper installed with mainly default settings. Currently, I'd like my multi-line lambda expressions to look something like this: foobarclass.biz.baz.Event += (s, e) => { ...
1
vote
1answer
75 views

Why does eclipse always wrap after @param myParameter in JavaDoc?

I have this piece of Java-Code: /** * Initializes the Levenshtein Object with the two given words. * * @param word1 first word * @param word2 second word */ public Levenshtein(String word1, ...
1
vote
1answer
47 views

How do I change autoformat in vim?

I use autoformat (textwidth = 72) to write my emails in vim. The problem is that every time I write a list or short phrases, vim joins it to the line above. p.e. These are my options: - option nr. ...
0
votes
1answer
90 views

Visual Studio automatically closing DIV surrounding Legend

So I have a bit of code throughout my project, <fieldset> <div class="legendContainerInactive"> <legend>Legend Stuff </legend> ...
5
votes
2answers
212 views

Eclipse making nice looking JSF Code unreadable by autoformating

I have the Problem, that if I autoformat a xhtml file (JSF 1.2) in eclipse with the keys CTRL + SHIFT + f , the output looks really bad and is not really readable anymore. my formated code: <span ...
1
vote
1answer
201 views

Is there a way to to autoformat a row in DevExpress GridView winforms?

I have a DevExpress GridControl that is bound to a BindingList that has a collection of foo objects. foo has the following members: string name; and int qty; (ofc the properties have get/setters ...
1
vote
1answer
103 views

Emacs auto-formatting php code (on indent)

I'm looking for a way to format the spaces between symbols and keywords in emacs. For example I'd like to change the following php code : foreach($a as $b) { } into foreach ($a as $b) { } All ...
0
votes
1answer
211 views

Auto-formatting Javascript arrays into new lines in Aptana Studio 3

It seems that Aptana Studio 3 only has the option for auto-formatting Javascript arrays into one line. I was wondering if there is a way to make Aptana Studio 3 auto-format Javascript arrays into a ...
0
votes
1answer
171 views

particular auto-format for Properties C# VS2010

I am using VS2010. Auto formatting upon using '}' has been extremely useful for me, however recently it's been quite a pain while I've been working on a library. If i use the line: public Single ...
2
votes
2answers
74 views

Flag a region to not be affected by the auto formatting rules

I'm looking for a way to keep a region of my to code have a certain number of tab indents. The tabs are representing a relation to the field above it. I.e. public string Foo1 pubic string F1Bar1 ...
1
vote
1answer
281 views

Notepad++ Auto-Complete XML/HTML Tag on Demand

There was a plugin for Notepad++ that would auto-complete the last open HTML or XML tag when you pressed Ctrl+.. I used this plugin for a while, but I recently reinstalled Notepad++ and can't remember ...
0
votes
1answer
359 views

Webstorm JSON code style

Is there a way to get an whitespace after the colon in a JSON object when autoformating in webstorm? Actually I've got: { key:value } What I want is { key: value }
2
votes
1answer
923 views

Autoformat Javascript in Netbeans IDE

Are there any known Plugins or ways to properly autoformat Javascript in Netbeans IDE?
2
votes
1answer
147 views

How to make Visual Studio format dictionary initialization?

All Visual Studios (2012 too) do not format the following: _messageProcessor = new Dictionary<ServerDataTypes, MessageProcessor>() { {ServerDataTypes.FrameData, ProcessFrameData } ...
8
votes
2answers
882 views

Auto-comment new line in Vim only for block comments

When I start a new line at the end of a single-line comment in a .{cpp,h} file, vim is automatically commenting it. For example: // This is a comment<CR> // | <- Cursor is moved to `|`, `//` ...
13
votes
5answers
9k views

Is it possible to auto format PHP in Sublime Text 2?

In Sublime Text 2, I am trying to type the code and have auto format command to rearrange and auto indent source code. If it is not possible to have a automatic formatter, would be nice to have a ...
2
votes
1answer
114 views

How to make vim not break strings when autoformating?

I have a list of string values that I would like to autoformat but vim breaks the strings if there is a space inside of it. Can this be fixed somehow? example "sdasda", "asdasdasd", "afasfasf", ...
2
votes
2answers
325 views

D IDE with auto-format

I just started learning D. Does anyone know of a good IDE for D that has auto-format capabilities? DDT for eclipse doesn't seem to have anything besides syntax highlighting.
5
votes
1answer
353 views

How to make Resharper format line-wrapped ternary operators in the following way -

I really want Resharper to format my line-wrapped ternaries in this way return navigator.IsTerminating ? navigator.Context : navigator.Context.GetSimulatableRelative(new ...
0
votes
1answer
2k views

Netbeans : Auto Format : prevent it for a section of my code

I use Netbeans auto format (ctrl+alt+f) a lot. It's a very nice function!. But I use StringBuffer.append() to generate some xml. I indent the .append parameter to represente the node structure of my ...
5
votes
1answer
169 views

How to ignore space after comments when calculating indent level in Vim

Consider writing a JavaDoc-style comment which includes an indented list (when expandtab is set and softtabstop=2): /** * First line: * - Indented text */ Currently, after typing First line: ...
4
votes
1answer
2k views

Eclipse auto-formatter, disable auto line-wrapping of comment lines

I love eclipse auto formatting, but there's one feature that's driving me raging mad: Since I use wrap-lines in my auto-formmatter, code like this: private static Location ...
3
votes
1answer
98 views

How to order HTML attributes alphabetically on Visual Studio automatically?

I have <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script> <script type="text/javascript" src="js/jquery-ui-1.8.18.custom.min.js"></script> Note that the ...
1
vote
1answer
290 views

Why is auto formatting “not available” for cshtml in my Visual Studio?

While searching for an answer to this I've seen enough posts on here about the issues with the auto formatter to know that auto format should be possible. However, when I ctrl-k+ctrl-d I get: "The ...
1
vote
1answer
334 views

Diff-Tool that can autoformat source code before comparing?

I've been using WinMerge, Eclipse's compare tool and Tortoise's to see my changes before committing. The problem is that when I edit a file that hasn't been edited by someone else since we last ...
6
votes
2answers
358 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 ...
2
votes
4answers
523 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 ...
3
votes
2answers
584 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
178 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
1answer
277 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
123 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
11
votes
4answers
968 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 ...
2
votes
1answer
153 views

How can I get Vim to not break DocBlock comments?

/** * Example Comment */ When I press enter after Comment Vim autoindents but leaves the cursor lined up with the * characters. How can I get Vim to add the * and a space so that my comment lines ...
3
votes
2answers
9k 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 } ...
0
votes
1answer
173 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', ...
4
votes
1answer
2k 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 ...
2
votes
3answers
750 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? ...
0
votes
1answer
546 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 ...
3
votes
3answers
469 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
1answer
2k 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?
1
vote
1answer
2k 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 ...
0
votes
1answer
425 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 = ...
3
votes
3answers
1k 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 ...
10
votes
4answers
1k 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 ...

1 2