Is it possible to remove or disable the Project Symbol Search button from the Dephi (10.2) editor. It is the magnifying glass on the far right in the image below.
It is a nuisance to me because I keep pressing it instead of the dropdown arrow on the Methods combo box next to it (because my hand co-ordination is poor) and it freezes the IDE for 20-30 seconds.
In Tools > Options > Editor Options > Display there is only an option to turn off the hole toolbar ("navigation toolbar").
The toolbar is not even mentioned in the docs for the options dialog!
But at least you can find information about it here and here in the docs.
Related
Spyder 4 is great. Is there a way to disable code folding? I find I am frequently collapsing sections of code when I try to set a break point.
Go to Tools > Preferences
Click on Editor on the left, then on the display tab uncheck the "Show code folding" option. That should remove the small triangles from the left of main editor window.
I am using third party framework in my swift project with Xcode11, which is having many warnings for
Non-portable path to file "HeaderFile.h"; Specified path differs in case from file name on disk Headerfile.h
Is there any way to suppress these specific warnings? or any way to silent framework warnings?
I went through with many threads but did't find the expected solution.
Any inputs would be a great help here, Thank you!!
Add -Wno-nonportable-include-path to your compiler options.
In Xcode, click the “Show the Project navigator” icon at the top left (leftmost icon under the red-yellow-green window buttons) or select View > Navigators > Show Project Navigator.
The select the project (topmost item in the tree shown in the sidebar once the project navigator view is shown). To the right, click on Build Settings. Below that, and to the left, in Basic / Customized / All, click All.
Scroll to “Apple Clang - Custom Compiler Flags”. Click the blank field to the right of “Other Warning Flags”. A dialog with fields to enter options will pop up. Click “+” at the bottom left. In the empty field that becomes editable, enter “-Wno-nonportable-include-path”.
If I have multiple panes in the Matlab's IDE, Shift-Ctrl-M causes the one with the focus to become the only visibe pane, taking up the entire IDE window. Pressing Shift-Ctrl-M again brings back all the other panes that were present, and the pane with the focus becomes just one pane among many again.
Is there such a shortcut key in the Spyder IDE?
There is a GUI button to do this, but I wonder if there is also a shortcut key.
(Spyder maintainer here) The shortcut for that in Spyder is Ctrl+Shift+Alt+M
Note: You can browse and modify all our available shortcuts by going to the menu
Tools > Preferences > Keyboard shortcuts
I am reading through a very large and complex ios app project, I want to find the places in the code when a certain function (or method) is called.
I've seen some answers for older xcodes where you can filter your search results to only show you references. But I dont see this option in xcode 5.
so possibly 2 questions:
1- is there a way to enable these search options?
2- are there any other ways to search for all references to a method (or any symbol).
If you click the search icon and the click where it says "In workspace". It should bring across a menu that will allow you to select specific groups and folders. You can also create a "new scope" to use for searching more complex rules.
In Xcode 6, you can open the Find Navigator (⌘-3) then where it says Find > Text > Containing, these items are clickable and you can change it to Find > References > Containing.
Alternatively, with your cursor inside a method you can click the icon in the top left corner of the editor (it looks like four squares) and choose Callers.
I'm currently learning iOS development from scratch, and as such, I'm making lots of new projects. Every time I do so, I have to resize the Xcode window (I don't want it maximised, but I don't want it as tiny as it makes it), and I also have to pop open the Utilies and Debug areas, as well as dragging the Objects library up to make it larger. Can I set some defaults in Xcode to do this for every new project?
No, Xcode doesn't include all these options, but you can get part way there. You can setup a behavior that shows or hides the parts of an Xcode window such as the utilities, the toolbar, the debugger, etc. Then it's one menu selection or key command to show the parts, and a little dragging to resize things.
To make a behavior select Behaviors>Edit Behaviors... from the "Xcode" menu in Xcode. Create a new behavior by clicking the "+" symbol near the lower left corner. Give your behavior a name and optionally a key command. Set the options in the behavior to show or hide the parts you want shown or hidden, and maybe even take some of the other available actions.
To run the behavior just select it from the "Behaviors" submenu of the "Xcode" menu, or press the appropriate key command combination.