Simple question: How can I set Dark Mode on Dymola 2022? - dymola

Is it possible to set Dark Mode on Dymola 2022? Where is the option? I cannot find it.
Thank you so much in advance.

Dark mode is activated as argument to Dymola.exe.
Create a shortcut to Dymola.exe
Add the argument /dark to the path in the target field
Start Dymola via the shortcut

Related

How to fix font color in PDI? currently all font is white

I have a version 9.1 installed in my local machine with macos 11.1
Need help in making the font color to black.
Just found out the answer. Dont put your mac's appearance to dark mode.
When i change it back to light mode, all texts in pdi became black.
Just close pentaho and open again after changing to light mode.
In version 9.3, there is a checkbox Use look of OS (3rd row from bottom, 2nd checkbox from bottom - for those, who are lazy to switch to dark mode) in Preferences - Look & Feel. After checking it, you can still use Dark mode in OS with black texts in PDI.
Actually there is no mode to solve this but i have one quick solution for you.
Install the app "Night Owl" this app let's you to switch between dark and light mode from the tray.
Kind regards,
Just to clarify #Michal's answer, starting from 9.3 you can use dark mode a long with pdi basically.
Since I have to switched to light mode to indicate the right position, there is a step by step for blind touching like me.
Preferences -> Second tab (Look & Feel) -> Use look of OS (3rd row from bottom)

SQL Server Dark Theme -- Drop down menu too dark, how do I change it?

I have enabled the 'Dark Theme' on SQL Server 2017. It is all great, but when I right click in my Object Explorer on a task or something, it is too dark to read. Does anyone know how to change this? See screenshot for what I mean.
I've gone through tools -> environment -> fonts and colors and tried to find where these settings would be, but I'm sure what this element is called.
SSMS Dark Theme is still technically under development and not complete, to enable it you have to do a workaround in the first place modifying text files and uncommenting out some value (I forget the exact file). This is the best you get, unfortunately.

How can I enable IdeaVim on only the main editor window?

IdeaVim current replaces essentially all multi-line text inputs. For example, Git commit messages and the Clojure REPL both accept Vim commands. However, in those situations, I'd prefer to have a simple text input, without Vim's features.
Is there any way to enable IdeaVim only on the main editor window, and disable it on all other text inputs? If not, is there any way to disable it or configure it differently for different text inputs?
Thanks!
The following line will disable IdeaVim from dialogs
set ideavimsupport=
As of November 2020 (and IdeaVIM 0.61), this is fully possible by setting the following in your .ideavimrc file:
set dialogescape=off (disables IdeaVIM in all dialogs | defaults to legacy - the old behaviour)
set oneline=off (disables IdeaVIM only in single line boxes | defaults to on)
Currently it's not possible. Feel free to vote for VIM-765 and VIM-740.

Intellij ignores the selected keyboard layout

This seems like a bug in IntelliJ 12: Every couple of times when I switch between keyboard layouts (English and Hebrew) IntelliJ get stuck on one of them and ignore the windows selected keyboard layout. This happens only for intelliJ, all other programs respond as usual to the windows selected keyboard layout.
Is there at least a workaround, or a way to reset IntelliJ's keyboard layout? The only thing that seems to work for me so far is restarting my machine...
(My OS is Windows 7 Enterprise 64bit)
This is 100% reproduced when you switch keyboard layout in quick class search (Ctrl+N). Also in intellij idea 13.
Something like:
Open quick search menu when keyboard is not in English layout (Russian e.g.)
Type anything
Switch to English
Congratulations! you stuck in russian layout :) restart your intellij idea!
When I ceased to switch layout in search, I forgot about this problem.
UPD: it's suitable for most part of text inputs (even for search and file creation)
I've just had this problem on PyCharm 2020.2.3
Here's how I've solved it:
Go to Settings -> Keymap
At the bottom of the window, check the option Use national layouts for shortcuts (require restart)
That did the trick
restarting IntelliJ also works.
I wonder how they managed to get such a stupid bug, this is not an easy bug to write, especially in Java.
That was found to be more like a global Microsoft/Oracle bug. Simple workaround from IntelliJ's issue tracker: use Windows' language parameters to assign a hotkey (Ctrl + number) for changing the layout directly to a desired language. This suddenly will affect both Windows And IDEA. It's said that bug was fixed in Win8. A bit more info: here
In 2020 bug is still relevant in the most IDEs based on IntelliJ. For example I observe this in PyCharm now.
There is workaround for Windows:
Go to Language Bar - Settings... - Advanced Key Settings
Set key sequence of To English action to Ctrl + 1
Set key sequence of to other your language to Ctrl + 2
Apply
Go to IntelliJ/PyCharm and switch language by new sequences
After that bug disappears and you can switch language by traditional method
For me the following actions seem to resolve the issue:
Go to Control Panel
Select Clock, Language & Region
Press Region
In the opened window choose English for Format.
Also all my settings except the location are set to English (locale, default keyboard etc.)
This fix worked on my mac, access Preferences -> Editor -> Typing Corrector from the intellij IDEA menu. If you are able to navigate to the same window on your OS, you can try this.
Uncheck Enable keyboard layout correction in the Typing Corrector window
I got the same issue in Ubuntu 16.04. Restarting IDEA doesn't change anything. But Changing the default layout to be the one I want by default ensured ubuntu work well with it.
Go to the search textfield above file editor.
Switch layout.
Type smth.
Click somwhere in the file editor.
Write smth with swithed layout.

How to rerun programmatically the program (intellij idea plugin)

I want to programmatically rerun(There is a command for this also you can use ctrl-f5) Below is a picture of rhis button in idea
So how I can run this action by myself?
from the answer on intellij idea development forum
Hi Evgeniy,
You should use ExecutionManager.restartRunProfile() for that.
Default IJ implementation achieves that via RestartAction (the one from your screenshot).
Denis