How to enable mark occurrences feature for the OpenEdge editor - openedge

I've been missing this feature since starting to work with OpenEdge, and I am left wondering if the is any way to enable this.
I've checked the OpenEdge editor properties in Eclipse but was unable to find the option to toggle this. Is there a plugin that can enable it? Maybe a hidden way to do that without the need of a plugin? Any help is appreciated.
Mark occurrences feature example

If you search using Ctrl+H (or Search -> Search) in the OpenEdge Editor (Eclipse based) you get marked occurences in the editor as well as a list of all search hits in the Search tab.
In this example I've searched for "RETURNS CHARACTER"
In the old AppBuilder editor you are out of luck.

Related

Atom Editor - Can´t write the ':' character

I installed some plugins (autoclose-html), and now I cannot write the : character. If I disable it, I can write this back, but if I enable it another time, I get the problem.
How can I fix this? How can I change the plugin not to override my keys?
I've also filed a bug report.
I assume you're using an international keyboard layout. I run into this issue as well with 2 different international layouts (PT and SE).
As of v.0.23.0 Legacy/International Mode has been added. if you activate it in settings, it should solve your issue.
Activate Legacy/International Mode works for me

The type or namespace name 'FaceBookClient' could not be found

None of the other questions regarding this question were able to answer this. I am new to programming, and I am just trying to add a FacebookLogin option to the website.
I built all the Javascript they wanted, and there is no error there(I don't think). In the interest of saving time, and that I am working on multiple computers. I am going to post pictures of all the code. I have added excess using statements to try and get the reference.
http://imgur.com/a/2wCyf
If you need anymore information let me know. And I will edit this page.
it looks like you just have some simple issues to fix in your IDE/project. The below instructions are for Visual Studio, but can be slightly altered for other IDEs.
First, make sure you have a reference to the Facebook SDK for .NET (I'm assuming you're using Outercurve's library from the looks of it):
In Visual Studio, check in the Solution Explorer window, then expand the "References", and make sure you see it there.
If it's not there, right-click "References", then "Manage Nuget Packages". When the Packages screen pops up, ensure in the left-pane that you have "Online -> nuget.org" selected. In the top right of the Packages window, in the "Search Online" textbox, enter:
facebook sdk and press "enter". On my screen, it's the second search result. To ensure you have the correct one, ensure that the "Created by" field says "Outercurve Foundation" before you accept it. Once you know you have the right package, hit the "Install" button, and it will be added to your project.
Once you have verified you have the correct reference, if you are still having the issue, make sure you have a "using" statement in your class file, to ensure library types you are using are recognized. In this example, I believe that would be:
using Facebook;
From the images of code you provided, I didn't see that statement in there, so that may be the problem, if this is fact the library you are referencing.
I am new to this type of application but what I found that is:
Use Facebook.FacebookClient instead of FacebookClient.

How do you actually find what you want from offline QT documentation?

I wanted to go through QtQuick/QML Button API, which I found here online.
But I can't find it from the offline documentation available in QTCreator. The offline search gives me less relevant results.
Any tips for searching...? Thanks!
One trick I use is this:
Type the item (e.g. "Button") into the code editor
Hover my mouse cursor over the item
Press F1
That will open the documentation for the Button QML type. Works in C++ too.
Google has much more powerful search engine comparing to offline documentation browser. So you just didn't find matching article in help browser search. You can:
Find "Button" instead of "button" in help browser search results
Place cursor on interesting identifier in code and press F1 to show help
Select appropriate documentation in "Contents" mode of help browser left panel

Disable Code Assist in Aptana Studio 3

Is there any way to disable code assist in Aptana Studio 3? It is driving me absolutely insane! It changes things I don't want changed, it just overall gets in the way of my workflow. It was never a problem until the most recent update and ever since that update it's been much more aggressive in it's "assisting." I just want to be able to write the code myself without it messing me up.
To Caldwell,
The thing that you have mention is called Content Asisst. It will show a code-assist when you typing a code related to HTML/CSS.
To disable Content Assist in Aptana Studio 3 is :
Choose Window in the main menu ( menu avaiable on top) → Preferences → Choose Aptana Studio → Content Assist → Look at the Auto-display content asisst then you will see the drop down menu at besides, then click drop-down menu choose Off instead of Default delay.
That's all. Thank you
The issue you are referring to is most likely resolved in the beta of 3.0.4, but if you need to turn code assist off, I would suggest:
a) Preferences > Aptana > Editors (main node)
b) Preferences > Aptana > Editors > JavaScript (for example) and check the activation triggers. You may wish to remove "(" and "." for example.
Found this article trying to turn off the auto-complete of quotes and html tags. This feature is called auto-close. It can be turned off in Windows by going to Window -> Preferences -> Aptana Studio -> Editors. Here there is a "Typing" section of options. Unchecking "Auto-close matching character pairs" and "Wrap selected text with matching characters" did the trick for me.

Global Search and Replace throughout Flex Project files?

Is there a way to do a search and replace across multiple files in a single project?
thanks,
Mark
Ctrl+Shift+F -> Enter 'Containing text', select 'Enclosing projects', Click 'Replace' button, enter replacement text.
Also, check out Windows Grep. It does not validate your changes to make sure no errors were created from them. But, it is a good way of doing exactly what you want without being tied to an IDE.

Resources