Questions tagged [ide-customization]

34 questions
1
vote
1 answer

How do I extend the code generation of Faktor-IPS to modify generated Code

I need to modify the code generated by Faktor-IPS. I've seen the extension property "org.faktorips.devtools.core.artefactbuilderset" and created a class extending the StandardBuilderSet. I created my own builder (MetaattributPolicyCmptClassBuilder)…
Thorsten
  • 93
  • 8
1
vote
1 answer

How do I identify a Faktor-IPS extension property in a validation message?

I've created an extension property and added some validation code - but how do I identify the extension property within the message so the error marker is placed on the field for my extension property? Here is my code: @Override public…
Thorsten
  • 93
  • 8
1
vote
1 answer

Is there a way to customize the input element for a Faktor-IPS extension property?

I've sucessfully created a plugin-project defining an extension property for a PolicyCmptType. This extension property is enum-based, so I would like to get a ComboBox as control for it, at the moment a simple Text control is created. Is there an…
Thorsten
  • 93
  • 8
1
vote
1 answer

Ms SharePoint 2007 Template Customization

After downloading the free templates from Microsoft's site I want to combine some features of two templates together. For example, there is a "Contact Management" template and a "Marketing Site" template. Each template has its own "contacts…
del
1
vote
1 answer

Eclipse background color unexpected behaviour

I am trying to change background color for Eclipse. I want the editor background to be completely black. To make the UI respond I first have to choose a random color, as I do at step A in the picture. Then I can choose black, click Apply and I get…
A. Lindberg
  • 299
  • 4
  • 13
1
vote
2 answers

User-created Programming Fonts: Possible?

I really hate all my options with programming fonts. I have fairly particular tastes though: I prefer non-monowidth, since in my opinion there's no reason for the characters to be in columns. I prefer minimal line spacing, to fit more code on the…
bwerks
  • 8,651
  • 14
  • 68
  • 100
1
vote
0 answers

How can I add "Terminate All" to an Eclipse toolbar?

I very regularly use Terminate/Disconnect All but find it cumbersome to switch to the Debug pane, right click, and find and select it in the menu. How can I add it to a toolbar, or assign a hotkey to this command? It is not displayed in Customize…
mafu
  • 31,798
  • 42
  • 154
  • 247
1
vote
1 answer

Apache Isis: How to change Alt-Attribute of brandLogoHeader and brandLogoSignin?

According to this page of the Apache ISIS documentation, one can configure own images for brandLogoHeader and brandLogoSignin. However, the Alt-Attribute of the resulting img-Elements default to the value Brand. I'd like to not just adjust the…
HumanInDisguise
  • 1,335
  • 4
  • 17
  • 29
1
vote
3 answers

how to change text "Eclipse" to some other text say "AshuEclipse" in the Header left hand corner?

How to change text "Eclipse" to some other text say "AshuEclipse" in the Header left hand corner? Note: I dont want ot change the header to show workspace ,but I want to change the word Eclipse itself. Plz suggest.
Ashu
  • 11
  • 2
0
votes
1 answer

Custom Project Directory from Android New Project Wizard in Eclipse

I would like to know how to create a customized directory structure template that will be created each time I start a new project. Rather than having to create files, and folders over and over, is there a way to just have the New Project Wizard…
Shawn
  • 2,406
  • 1
  • 26
  • 31
0
votes
1 answer

I there a real-time warning system like in Pycharm for the Anaconda Jupyter Lab?

PyCharm has this very useful warnings where it underlines/highlights any problematic code and give you hints of how to fix it, like when you hint a variable type and then you provide another type: var: int = ~"Hello World!"~. Or when you are typing…
0
votes
0 answers

How to change a background of project area in Android Studio?

I'm trying customise background colors of Android Studio. And I need to change the background of project area. Project_area_picture I've found out how to change background of code editor in Editor -> Color Sceme -> General. But I have no idea what…
0
votes
1 answer

How to enable a new custom Context Menu Item in Visual Studio Solution Explorer?

I would like to have "File.CopyRelativePath" as an option in the Context Menu of Solution Explorer when I right click a file. I am using Visual Studio 2022 I have managed to put the command in the menu by adding it at: Tools - Customize - Commands -…
0
votes
1 answer

VSCode Color Theme customization for golang method-parameters

I'm trying to find a way to color 'foo', 'a' and 'b' in VSCode (language: golang): func (foo *Foobar) Subscribe(a string, b int) { logger.Log(a) logger.Log(b) } How can I go about achieving this? I have tried editing settings.json and added…
XDS
  • 3,786
  • 2
  • 36
  • 56
0
votes
1 answer

How to create VSCode bindings to input bra and ket efficiently

I'm currently using VSCode for Q# programming. This sometimes entails including simple qubit expressions in the comments for clarity. It is of course possible to just settle with using regular angle brackets (such as |00> or <00|), but it looks…