These buttons are added as extension points by me, now i would like to hide these buttons when
"recycle bin" query runs as vsts "link to work item" button hide. please see attachments.
How to hide
Sample code
The work-item-query bar in assigned to me and recycle bin is using the same target: ms.vss-work-web.work-item-query-results-toolbar-menu
If you use this target for your extension, the button will list for both assigned to me and recycle bin.
The open/link to work item system button is also just using some code hidden themselves when loading the query toolbar in recycle bin. Which is more related to UI. However the code is not open, it's not able to achieve this for extension. About the UI related for the extension, you could also take a look at the answer in this question: How to hide quick add panel Backlogs Items using VSTS extension?
You could add a uservoice here suggest either separate targets in assigned to me and recycle bin for the query tool bar, or provide a way to hidden button in extension json.
Related
Basically exactly how a number appears next to the Problems panel title depending on # of problems in your workspace, I would like the same behavior for a custom webview view container I have contributed to the panel (based on a number that can dynamically change during my extention's use). Is this possible with currently provided vscode extension API's?
Even after deleting derived data many times, and trying other things, I am still facing this problem. Can you help me?
You can try using the shortcut key instead, to open up the assistant editor.
Shortcut key: -
option + click on the file which you want to open up in the assistant editor
Guys I just stop dealing with this problem by changing the settings in xcode 9.2. And now i use Navigation Pane.
Here is how it works :
Ok now if you go to xcode -> preferences -> navigation
and Choose the "Uses Focused Editor" as in the picture below.
Now you can manually select inside the Navigation Pane.
Just click whichever page you would like to change and select in the Navigation Pane.
Here is a few screenshots :
Pictures shows code files but it works with everything you can click in the Navigation Pane.
Try to drag and drop file from the Project Navigator into the path of the Assistant Editor as temporary fix.
You also can click on this icon to bring recent files.
Try to clean your project, clean Build Folder, restart Xcode.
Make sure the view controller in your Storyboard has correct custom class name.
I think I know the problem you're having. I experience it too, but it's intermittent. Sometimes clicking Manual shows me the entire project folder and I can select the editable classes, but other times it only shows the interface versions of them, which aren't editable and cannot have IBOutlets dragged to them (you can tell b/c it'll say internal class and has less code). I have noticed that if I toggle back and forth between Automatic and Manual, I can usually get the editable class to appear. I also will toggle the assistant editor off, select a different View Controller or two on the storyboard, then go back to my original one, turn the Assistant Editor back on, and it starts working again.
There are other discussions of it here, here, and here. This suggestion of turning off indexing sounds intriguing and worth a try if the problem keeps reappearing. UPDATE: This trick with hitting the + and opening a 2nd file, then closing the interface file, worked great when I tried it just now.
Here are pics of how the Automatic side shows the actual file when the Manual side only shows the interface, which says internal next to class:
In GIMP: is there a way how to make my own custom dock (toolbar) where a could put my most used functions?
Something like this:
Create new empty dock or toolbar
Somehow set what functions will be in it
(any of the functions, no matter it has an icon or where in menus is located)
I'd like to have it so I don't have to search in menus every time I need something. I'm aware that I can make keyboard shortcuts but they are difficult to remember since I don't use Gimp every day. I'm used to this from Corel Photopaint and I think it is really useful.
Thanks for your suggestions.
In GIMP 2.8, you can only customize the dockable dialogs - by dragging then around, and in another level, customize tool presets and make use of the tags in the presets dialog to quckly access paint-modes with set brushes, gradients and painting dynamics - so, keeping the tool-presets dialog around, and appropriately using the tags can give you quick access to these settings.
You can't, however, add additional menu entries or icons to select particular plug-ins (filters) - and access those from any of the dockable dialogs. without rebuilding GIMP, you could edit the XML files at /usr/share/gimp/2.0/menus to customize your menus.
In the master branch, the unstable "GIMP 2.9" which will eventually become GIMP 2.10, there is a "search" action implemented, initiated by pressing the / character that will probably make it for the need to quickly find-out any operations wanted.
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 am using this routine to pop up the Shell Context Menu for a file name which is working well, except for one thing.
How to pop-up the Windows context menu for a given file using Delphi?
When I click "Copy" the menu closes as expected. If I move to another Folder or stay in the same one, when I right-click again for the Context Menu, it has no "Paste" option. Not even a grayed out one. I checked on the Poster's blog as mentioned in his Edit at the bottom, but that new routine crashes with Incorrect Parameter.
Can someone please assist with adding "Paste" to the original routine in the above link
Thanks
Look for TClipboard (library/uses ClipBrd). Using this you can manage a cliboard on Delphi.
More information: Basic CLipboard Operations
Obs.: You can use "Actions" too, depending your needs. See ActionManager component, and Action properties of your popupmenu.