Using breakpoints in Xamarin Studio - xamarin.ios

In Visual Studio when I use a breakpoint, F10 key moves to next step and
F11 key moves next and step into methods while debugging.
What is the equavalents for these keys in Mac for Xamarin Studio ?

In Xamarin Studio you can see the keyboard shortcuts if you open Preferences and select Key Bindings.
Step: ⇧⌘O
Step Into: ⇧⌘I

The key binding can be update in menu Visual Studio > Preferences > Key Bindings.
Here is the default key binding:

Related

Method signature Refactor for Dart/Flutter - available in Android Studio?

Using Android Studio 3.6.1 with Dart / Flutter.
I don't see an option to Refector > Change Signature for Methods.
Is this not supported? Or only in Intellij IDEA?
Normally this would be a Ctrl + F6 shortcut and available on context menu or main menu, but it's missing.

Android Studio hotkey for "do refactor"

In Android Studio I can start renaming via Shift + F6. Then Android Studio shows me a box telling me about the changes and presents me with a "Do Refactor"-button. When hovering over the button Android Studio shows me no information about a hotkey I could press. Is there a hotkey for that button?
I found that it works with pressing Alt + d.
There shouldn't be a keyboard shortcut for every button.
Usually program developers provide hotkeys just for most used basic functions.
There is Shift+F6 in Android Studio for refactoring and that's the closest option to get the functionality you want.

ReSharper Shift+Alt+L (go to open file) not working in 2015 with .resx?

I'm wondering if this is just my ReSharper setup, but as of updating to Visual Studio 2015 with ReSharper Ultimate 9.1.3, using the Shift+Alt+L shortcut while editing a .resx in the designer does nothing.
Has anybody else experienced this, and is there any config that will get this working or is it a bug?
Thanks
This was caused (for me anyway) because my keyboard mapping had magically changed back to UK mapping from US (I want US).
The other day I had another issue that caused Resharper key mappings to go awry and followed some advice on another post (I can't find it at the moment) that want along the lines of:
Open Tools > Options > Keyboard and hit Reset
Open Resharper > Options > Keyboard & Menus, select "Visual Studio" and hit "Apply Scheme"
This should wrest control from Resharper back to Visual Studio and give Resharper the freedom it needs to wrest control back from VS.. ugh, but it worked
Maybe have a look to Stackoverflow - How to locate a file in Solution Explorer in Visual Studio 2010?.
Tools (in Menu) -> Options -> Keyboard -> goto input Show commands containing and type SolutionExplorer.SyncWithActiveDocument. Goto Press Shortcut Keys and press Shift + Alt + L click on Assign button.
You may get a warning that the shortcut is already in use.

How to Re-enable F12 to Go To Definition After Installing Resharper in Visual Studio 2012

In visual studio 2012, also should work with other versions:
Tools > Options > Environment > Keyboard
In the box "Show commands containing:", type "Edit.GoToDefinition", then in the box "Press shortcut keys" hit F12 and click assign.
Enter Tools > Options > Environment > Keyboard and press the Reset button. Click OK to save changes.
Then enter in Resharper > Options > Environment > Keyboards & Menus. Select Visual Studio and then press Apply Scheme button. Click Save to save changes.
Worked for me.
Credits to F12 no longer works in Visual Studio
For Resharper 2019 / Visual Studio 2019 this can be changed via the resharper options, under Tools > External Sources. Resetting the keyboard scheme does nothing.
The above didn't work for me. I had to remove all keyboard shorcuts and re-applying them:
1) Enter Resharper > Options > Keyboard & Menus:
2) Choose None and then Apply Scheme:
3) Repeat the above, this time choose Visual Studio scheme (don't forget to click Apply Scheme).
Enter Resharper > Environment > Keyboard & Menus. Uncheck Override Visual Studio refactorings
Worked for me.

Strange key mapping in Android Studio

I am new to Android studio, it seems to be great IDE. But I have found that it has really strange key and shortcut mapping. I am using Czech keyboard.
When I try to type ">" by pressing Right ALT + . the symbol is not appearing, and I got message box that says "Go to custom Region. There are no custom foldings regions in the current file."
It is really strange behaviour, I have problem with writing many more characters like brackets,..... I tried to set keymap profiles to Visual Studio and more. But nothing seems to work. I didn't have any of these problems in any other IDE (Netbeans, Eclipse, Visual Studio, Xamarin)
Add this line:
actionSystem.force.alt.gr=true
to this file:
...\Android\android-studio\bin\idea.properties
As written here:
http://youtrack.jetbrains.com/issue/IDEA-91975
Yes, well... its problem with "old" keyboards. Newer keyboards don't have Alt Gr keys and IDE doesn't count on this in default.
Solutions:
Buy a new keyboard with no Alt Gr on it (using right Alt instead of Alt Gr is working for me)
Go to File -> Settings -> Keymap and search for implementation - delete Ctrl + Alt + B, hit "Apply" and you can now use this shortcut for "{"
As already mentioned below... add following line to ..\<Android Studio folder>\bin\idea.properties:
actionSystem.force.alt.gr=true
(update) Since newer version of AS (not sure which one, should be 2.3.3+), you don't need to manually access the properties file. Go to Help -> Edit Custom Properties and add actionSystem.force.alt.gr=true there.
Go to Preferences -> Keymap and choose Mac OS X as Keymaps.
I have been a long time Visual Studio user, so wanted to leverage all the keyboard shortcuts that I had picked up using Visual Studio.
On Android Studio, I first changed the Keymap to be Visual Studio. You can do this by using Alt+F7 on Windows and then search for Keymap.
By using the Visual Studio Keymap in Android studio, I got only debug related mapping, which was still a minority of what I use in Visual Studio.
So went ahead and added/modified some more mappings.
Here is the github link
https://github.com/vinayakg/VisualStudioKeymapforAndroidStudio/blob/master/settings.jar.
PR's welcome.
As for '>' sign (AltGr + .) and Android Studio 1.0.1, go to File>Settings, choose Keymap in IDE Settings section, search for "GotoCustomRegion" item (it is located in MainMenu-Navigate) and remove its mapping (via context menu).
If you're using macOS newest versions and have had weird behavior with the shortcuts, try this:
Go to Android Studio -> Preferences -> Keymap
Now change from "Mac OS X" to "Mac OS X 10.5+" and hit apply.

Resources