formatting Questions
10
I made a new Java file in Gedit.
When I open it in Eclipse (CTRL + SHIFT + F), it does not format the code.
(CTRL + SHIFT + F) still formats other Java files (which I also did not create in Ecl...
Impasse asked 17/7, 2014 at 17:5
5
Solved
When I change a setting in a window like in the screenshot below, where are those settings actually stored?
Bonus: Is there any way, using Java, Eclipse RCP etc, to access the settings programmati...
Carbamate asked 2/7, 2013 at 17:27
4
Solved
Okay, so the title may be slightly misleading, This is simply my end goal.
So, I'm just getting into the world of Dart. So far it seems great, but my biggest issue with it is the stupid default fo...
Autoharp asked 19/1, 2020 at 23:31
7
Solved
I have not even an idea where to look to fix this error.
Recently i get following exception after i've clicked the checkbox in a DataGridViewCheckBoxColumn to check it and leave that cell:
Syste...
Jamiejamieson asked 5/11, 2014 at 15:34
2
Solved
Everything was fine until one update changed a formatting setting and I don't know how to reverse it.
Whenever I select C++ code and try to replace the text with an open brace, it will simply surro...
Breland asked 5/10, 2022 at 17:45
9
I want VS Code to put curly braces on a new line in C# and C++
How it works now
How it should look
Tried C# FixFormat extension, but it works only after I push CTRL+K+F
but I want VS Code to m...
Dittany asked 8/7, 2019 at 11:35
4
Solved
I have a report that needs to be output in either English or French (based on a field value).
I have copied the text from the Word document to the SSRS package, and all French characters show as t...
Kalif asked 19/2, 2013 at 14:44
2
As I understand, PyCharm uses his own set of formatting rules.
https://www.jetbrains.com/help/pycharm/configuring-code-style.html#editorconfig
Is there any faster way to apply same rules to the VSC...
Herrod asked 26/10, 2022 at 10:20
20
How would I make a multiplication table that's organized into a neat table? My current code is:
n=int(input('Please enter a positive integer between 1 and 15: '))
for row in range(1,n+1):
for col...
Jacalynjacamar asked 6/12, 2013 at 3:26
7
Solved
I am interested in formatting all the files in a Visual Studio (ver. 2005) project all at once.
Currently, there is a way to format a single document by doing something like Edit->Advanced->Format...
Janelljanella asked 31/5, 2009 at 5:48
2
I have a component that contains many date inputs. All of them, but one, will use the standard format (MM/DD/YYYY). I read here, which helped me figure out how to get the customFormat (MM/YYYY) I w...
Stoned asked 5/12, 2018 at 1:6
4
Solved
Given {"a": 1234567890}, I want 1,234,567,890 in the result, how this can be done with jq
echo '{"a": 1234567890}' | jq '.a | FORMAT?'
Thanks for @peak's answer, the solution is
echo '{"a": 12...
Varus asked 10/2, 2020 at 10:29
4
Solved
I have looked up a million techniques and I can't get this to work and I know there is other posts similar to this. I'm sorry if it bugs anyone but I need specific instructions for my code cuz me s...
Polard asked 21/3, 2016 at 1:21
4
Solved
Is it possible to use variables in the format specifier in the format()-function in Python? I have the following code, and I need VAR to equal field_size:
def pretty_printer(*numbers):
str_list =...
Manchu asked 5/9, 2015 at 12:35
5
Opened a ticket with AutoPep8, but when I installed the autopep8 extension, it doesn't seem to find the module. When I change the config to tell it where it is a format doesn't do anything. Formati...
Wesson asked 11/10, 2017 at 3:9
13
Solved
I have columns of numbers that, for whatever reason, are formatted as text. This prevents me from using arithmetic functions such as the subtotal function. What is the best way to convert these "te...
Mikelmikell asked 21/4, 2016 at 13:41
3
Microsoft is about to release a new "Spill" feature for Excel. At time of post, this not available in the current version, but insiders can use it.
Is there an "easy" (non-vba o...
Install asked 24/2, 2019 at 20:9
6
Solved
I'd like to use VIM to write papers for some classes I'm in. The problem I'm having is with the formatting of lines in the editor. If I don't explicitly break the end of a line with the enter key, ...
Renie asked 7/1, 2014 at 15:48
2
Solved
I'm using clang-format (version 8.0.0 (tags/google/stable/2019-01-18)) with a style file, in which I set
…
PointerAlignment: Left
…
This succeeds in transforming declarations such as this one
cons...
Gorged asked 11/6, 2019 at 6:36
2
When running a .NET 8 console application, why does MMM show "June" instead of "Jun" when its part of a date format (e.g. .ToString("dd-MMM-yy")) but "Jun" (...
Bismarck asked 8/5 at 5:40
3
I want to add curly braces in IntelliJ to single line statements.
Lets say I have:
if(x)
print(y)
I want IntelliJ to automatically format that to:
if(x){
print(y)
}
Tannenbaum asked 10/1, 2020 at 16:46
3
Bit of a noob here, but I basically want text to automatically indent when it's wrapped.
So instead of:
Peter piper picked a peck
of pickled peppers.
It would be:
Peter piper picked a peck
of ...
Tertial asked 28/3, 2014 at 2:46
3
Solved
I'm currently researching Black as our default formatter, but, I'm having some edge cases that don't format well and I want to know if there's a way to get the result I want.
Black's documentation...
Mongolian asked 3/5, 2020 at 17:34
27
In C, how can I format a large number from e.g. 1123456789 to 1,123,456,789?
I tried using printf("%'10d\n", 1123456789), but that doesn't work.
Could you advise anything? The simpler the...
Philippines asked 19/9, 2009 at 23:38
5
Solved
While trying to remove duplicate phone numbers from a relatively large list I recently combined, Google Sheets presented me with this error message:
There was a problem.
Your selection contains...
Mumps asked 6/7, 2019 at 14:59
1 Next >
© 2022 - 2024 — McMap. All rights reserved.