where is word wrap in DBeaver 5.2.0? - dbeaver

I've been looking for hours in the options of DBeaver but I can't seem to find a "word wrap" option. Is it available, as this changelog suggests? I'm losing my patience over this issue...

Right click in the editor and go to Format>>Toggle Word Wrap

For those on Mac and Version 22.3.4:

Related

Remove "Search workspace (cmd+click)" hover from Integrated Terminal

Since new update (1.46.0) the floating window appears any time I move my mouse to any string in the Integrated Terminal. It's very annoying to me.
Can anyone please tell me how do I disable this feature?
enter image description here
I assume this commit solved or at least helped this situation https://github.com/microsoft/vscode/commit/832a49d14dc048fc381b51793019e76412cc9452
Can you try out the Insiders' Build to see if it is better (or wait for v1.4).

unable to type in Visual Studio Code

people from StackOverflow. I have a very frustrating experience with VS Code. At the moment of starting a new file, a mode starts on the editor that makes me being unable to type anything. Here is a youtube link from me, trying to type something.
Unable to type characters in VScode
Please, tell me, what should I do?
press control+C, then press "i" to get in the "insert" status, you could edit your file now.
It looks like you have the Vim extension, or another extension, installed which is causing this. I see SURROUND INPUT MODE in the status bar which is probably the cause. Look at your extensions and see whether you need to disable or uninstall one, or start Code with --disable-extensions flag to disable them all.
I have been having the same problem caused by a plugin called vim (vim emulation for Visual studio code)...If it can help..
I had the same issue so I look up to Visual Studio Extensions and Disabled Vim extension then I can now edit my code anytime.
I had the same issue which was caused by the vim extension. Just go to extensions and type in vim, if it's installed clicked uninstall then reload/refresh vscode. This worked wonders for me.
Just press "i" on your keyboard, it should work!
You can disable this by starting with the letter i while your file is opened and with the cursor at any point on your file. Tapping i on your keyboard should immediately take you back to insert mode.
Challenge with this: You have to do it for every file before you start typing.
This is probably the VIM extension. You can keep the extension, all you need to do is command + C then i. the i is to get into insert mode.
To completely solve this problem, you may have to uninstall or disable VIM as an extension
Had the same problem. all I had to do was disable the vim extension install in my vscode
Disabling vim plugin in VS code helps.

Drag selected text to move it?

Is it possible to drag selected text to move it? This is in almost every other editor (not to mention text input fields in browsers.) I was surprised not to find it in VS Code.
Here is a gif example.
This is now supported as of Feb 2017 release (1.10.1) but it is disabled by default.
To enable it: Go to File > Preferences > Settings and add this line "editor.dragAndDrop": true
Source: https://code.visualstudio.com/updates/v1_10#_preview-drag-and-drop-selected-text
Looks like it's not yet implemented, but there's an open issue about it.
If you want to help without diving into the internals, go 👍 the issue to add to its social signal.
I don't believe so. Their site says that it is keyboard-optimized and keyboard-centric, so their idea might be that you should highlight some text, cut it, and past it where you want it rather than dragging it.
I talk about this problem on Github Microsoft page and Microsoft engineers see this. I hope to solve it. (Please support by 👍 on this page.)

How to wrap words/lines in NetBeans IDE 6.9.1?

I searched for "wrap" in keyboard mappings without success. I don't see this option in menu neither.
EDIT: I was thinking about result the you get let's say in Notepad2 by pressing Ctrl+W (or selecting View -> Word Wrap). So I'am asking about toggling such Word Wrap
In Tools->Options there is a whole section on line wrapping. The options you choose here will depend on how you need to do the wrapping - it is quite configurable.
Go to Tools->Options.
Click on Editor in the ribbon at the top.
Choose the formatting tab.
Choose the language you require the wrapping for it the Language combobox.
In the Category, choose Wrapping.
Configure how you would like the wrapping to take place.
Hope this helps...
Stolen from Sidarta's tip in this SO post:
You can use word wrap in Netbeans.
Add to netbeans.conf
(netbans_instalation_path/etc/netbeans.conf):
-J-Dorg.netbeans.editor.linewrap=true and restart Netbeans.
In Options->Editor->Formating there is
Line Wrap dropdown option
Works fine for me in Netbeans 6.9
Are you talking about "soft wrapping"? That is, there are no line breaks inserted into the text file, but each line is wrapped to fit in the editor window?
NetBeans doesn't support that. Hard to believe, I know. I think it might be coming in the 7.0 version, I'm not sure.
Since Netbeans 7, word wrap is available. See this blog for directions:
Netbeans & Wordwarp
As Daniel says, after Netbeans 7 this is possible. Just go to your NetBeans options and select the editor tab. In languages (dropdown) selection choose "all languages". Then you will see the option Line Wrap. Change it to "After Words" or "Anywhere".
Go to toolbar-> option ->Editor(Tab)
view this picture..
soft wrap in netbean
select your line wrap 'after words' .
after apply these settings. you will see the code responsive way. you don't need to scroll horizontal to see code.view the picture for resutl.
soft wrap in netbean

PHPEclipse weird highlight

This is not a technical problem, but very annoying.
Does anyone know how to turn off or change the color for the name highlight in phpEclipse?
I use white-on-black scheme and this highlight has a white background which makes it unreadable and very ugly.
To better explain which highlight I'm refering to, it's when I move the cursor to a variable/function/method/constant, all other places that name is typed get highlighted.
I've spent a few days going thru the settings many, many times and I haven't found one that changes that specific annoying highligh.
Anyone? please? :)
For Java in Eclipse it is:
Window > Preferences > Java > Editor > Mark Occurrences.
My ruby plug-in has the same option. Do a search in the preferences window for 'Mark Occurrences' and hopefully the php plug-in has the same option.
Thanks, that was it, Mark Occurences.
When I searched thru the options I was looking for color pickers instead of checkboxes :)
It would be nicer to be able to change the highlight color for that, but even removing it is of huge help.
From Eclipse, go to Window > Preference, use the filter field ("type filter text") to search for "color". It will show all the config options related to the colors.
I suppose it's not a problem with phpEclipse, but an incompatibility with another Eclipse plugin.
PS: When you fix the problem please tell us what that setting!