Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Is there a way to show/filter the open tabs by the currently selected working set ?
I mean, when I select a working set the editor view only show the related files.
I've searched around in google, stackoverflow and eclipse market, but found nothing.
No you can't. I believe the reason is that if you try to open another file that is not in the working set (e.g. You want to open the declaration of a class in the source code), then you get into a contradiction. You've said that you only want tabs from the working set, but you're also asking for a tab that's not in the working set.
I suppose it's possible to write a plugin that on request will close any editor that's open on a file not in the working set, but that's about the best you could do.
You can try to use Mylyn task focused interface.
It does not exactly what you are looking for, but it is the closest tool that I can think of.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
after update of my Chrome, developer tools started to look ugly. It's really annoying and it's not UX friendly. Is there any way how to turn it back?
this old one that i want
There is no way to revert to the old user interface. The current interface is what will be continued to get refined going forward.
If you have specific suggestions to improve this interface then you can file issues on the Chromium Issue Tracker. Please try to keep a single suggestion to an issue, this way each idea can have its own discussion and work assigned. Issues with multiple suggestions of feedback are difficult to have a good conversation around.
I assume you mean the right side docking location?
You can click on the 3 vertical dots in the top corner next the X to close it and it will show you the options to change the docking location.
Alternatively, on Mac, you can use the shortcut key CMD+SHIFT+D on Windows CTRL+SHIFT+D to toggle the docking locations quickly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
Hope this is right StackExchange forum. Otherwise advise the appropriate forum.
A respected, elderly relative has iphone4s. He complains that the light suddenly comes on, even when he is not doing anything on the phone. He is concerned that someone bugged his phone. I tried googling a solution, and couldn't find anything.
(as I get more info about ios, etc, I'll post, but I think the question is general enough to start troubleshooting)
Any suggestions.
Thanks a bunch!!!
Have you tried hard resetting the iphone (restoring it to its factory settings).
To do so follow the following steps:
Backup the phone to avoid data loss.
Go to settings --> general --> reset
In the reset menu click on "Erase all content and settings" --> "Erase Phone"
Hope this would help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am developing a development tool for a new language. I can't say the details of the language because the organization applied for patent. I am new to eclipse and plugin development. how can I create a user interface which is similar to cdt or jdt. The first module I have to complete is UI development. Please help me to find some good source which give the jdt ui code.
now i need to change file -> new . when click on new it should give the option to create any type of file i.e. user defined file also can create
If you're new to plugin development, I'd strongly recommend taking a look at Xtext:
http://www.eclipse.org/Xtext/
It is exactly what you are searching for: you give it the BNF of your language, and it gives you an Eclipse build with an editor, syntax highlight, content assist, validation & quick fixes, outlines, etc. (Of course, this is a bit simplified description but that's the idea behind the project.)
What you are asking for is very complex and quite a big task. I think you should start by creating a custom editor with syntax highlighting for your new language. This question may help you get started.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I want to build a facebook app. I create a new application, put all information, like app domain, site url. Then click i to save, and error comes up:
Something went wrong. We're working on getting it fixed as soon as we can.
Where is a problem? Couple days ago, i can create a other app with no problems.
Update: If i want to make some changes on other applications on app settings tab, also click save and this error comes up.
Check here the progress on fixing the bug: https://developers.facebook.com/x/bugs/629640800428208/
edit: it's working for me now. ( 2014.01.08 19:10 GMT+1 )
You don't need to worry about it. They must be working on something. So they must have disabled the functionality for the time being.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am working on an eclipse plugin that implements a new editor. I would like to implement "Mark Occurences" wherein when the cursor is on one variable, all its occurances in the open editor are highlighted. Is there a way to implement this?
Thanks!
You need to implement your own Annotations and display them using your SourceViewer.
Maybe start reading about this here: http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/editors_annotations.htm
I don't know if this is what wou want to implement, but there is already an Eclipse plugin that highlights all occurrences for a given text (not only at editor view but in the currently focused view (search results, console, Navigator, outline, etc.), and does incremental text search too. That includes, but is not limited to, variables.
I'm talking about Eclipse Glance.
I know it's been long but if you still want answers, you can refer this.