Suddenly Sublime shortcuts not working - keyboard-shortcuts

I'm using sublime text as my editor and when i'm writing code in HTML such as
<div class="header"></div>
So there was a shortcut that i'm typing like that
.header
and then clicking TAB and it automatically make it, but suddenly it's not working, do you have any idea?

Make sure you are actually in an HTML syntax file. You can tell what version you are in by looking in the bottom right corner:
http://wes.io/Qz2B/content
You can change it by either clicking it or opening the command pallet and typing ssx html

I know that.. still in HTML like i did before and it's not wroking anymore for me...
I tried also the sublime 3, both of them doesn't make the TAB shortcut for me.... ?
-- OK, i got it, i was needed to remove the EMMET packages and install it again

Related

SyncedSideBar on Atom IDE

Is there away to install SyncedSideBar or something similar to that for Atom IDE ?
I used this one on my sublime text 3, and I was looking for the same plugin that will work for Atom.
I like how it auto highlight the current opened file
Any suggestions ?
You don't need any extra plugin for this. It there in the default tree plugin. Search for tree in packages
Click on settings and check the Auto Reveal checkbox
And now the active file will be automatically highlighted
Some of the themes may not highlight this properly, so you should change the theme and make sure it works. Sometimes after changing the settings you may need a restart, if it doesn't work

How do I stop this hover popup in Phpstorm?

When hovering over code in Phpstorm, I get a popup like below. Every hover produces a similar popup like these below:
Edit: I've realized the popups only occur during live edit.
But I still cant find a setting to turn them off.
They can't be turned off.
This is part of "inspections" (validations) which I think is necessary in any editor to prevent syntax and run-time errors. PHPStorm goes a step further than something like Eclipse (which has validations but lets you disable the pop-ups), and as far as I can tell, the PHPStorm developers are not interested in an option to disable the pop-ups. I have no clue why as they constantly get in the way of me clicking or typing.

How do I copy and paste the tooltip error message that pops up in IntelliJ IDEA?

IntelliJ IDEA automatically shows a red line if it cannot resolve some entities or it detects an error. Is there a way to copy and paste the content of that tooltip?
With eclipse I use the f2 to get the information.
I used the idea version 14.1.4 and use this way to copy the tooltips.
You can click the error line and the info will display, now you can right click to copy this error info.
Mouse shortcut:
Hover mouse over error in editor to bring up tooltip
Alt + click on error message inside tooltip to copy it to clipboard
For step 1 you can also bring up the tooltip for the current carret position by Ctrl + F1. For step 2 there does not seem to exist a keyboard shortcut at the time of writing (for IntelliJ 2018.1), see also IDEA-65636.
If you stumbled upon looking for solution for Linux version (and none of the above worked for you, like for me) click ctrl+alt+left mouse button on the tooltip, and you'll get its content into the clipboard :)
No, the tooltips don't offer a way to get that information from their context alone.
You could traditionally compile it instead via Build -> Compile and get the error message that way, instead. You can then select this text and do with it what you wish.
There is a bug report on this since 2011 (!) . Feel free /encouraged to vote for having the bug fixed:
https://youtrack.jetbrains.com/issue/IDEA-65636
IDEA-65636 I can't copy text from tooltip, though I can select it
Though honestly JetBrains infrequently gets around to non super critical bug fixes.

How to make whitespace, newlines and tabs visible in jedit

I am working with jedit, and I want to know that how can I make whitespace, tabs and newlines visible in jedit. So far I have created the toggle button for the same. But not getting any clue which file should I modify.
I don't know what you mean by "you created a toggle button and searching what for to edit." Do you mean in the source code? Just install the Whitespace plugin, it does exactly what you are after. Most functionally in jEdit is added by plugins.

Can TextMate find matching opening and closing tags?

Something I liked in Visual Studio was that I could click an opening tag, say and it would do its best to highlight in bold the closing tag. Does anyone know if you can do that in textmate? I searched an looked but cannot find it.
It gets hard to find the closing tag many DIVs deep.
If TextMate won't do it, can anyone tell me an editor on Mac that will?
Thank you for any help.
EDIT: If it can do it, can someone please tell me how? Thanks again.
Install the experimental bundle - and look for the "Select Balanced Tags" macro (Shift-Command-B)
Whenever you transverse with your keyboard or mouse the closing tag, TM will flash you the opening one.
But I think the reverse it's not possible (or at least, haven't found a way to work it like that)