In Visual Studio 2012 what is the Navigate backward shortcut on a french keyboard?

前端 未结 7 2242
野趣味
野趣味 2021-02-13 19:23

It\'s been a while since I wonder how to navigate backward and forward in Visual Studio using a French (fr-FR) keyboard.

Hovering over the buttons it l

7条回答
  •  情深已故
    2021-02-13 19:46

    I think I found it, but I am not sure. I can't seem to actually test this on my computer, but what I did:

    1. Used Pat or JK's Spy (http://patorjk.com/blog/software/) to extract the text from the combo box.
    2. Copied that weird dot to python and did ord('·') and got 250
    3. 250 = 0xfa, Edit: after doing some more research, I figured it can be also 183
    4. 0xfa = ù ( or 0xb7, after doing some research on this)

    So, I conclude that ctrl+shift+ù should work.. It is the ' or " key on the English keyboard. (% on the french keyboard)

    On my computer it didn't work, but worth the shot, maybe it will help.

    Edit: Well after doing some research, I figured it is probably a bug. After reading this: http://geekhack.org/index.php?topic=17600.0 and all other links in that link, and more about the "middle dot" (interpunct) I concluded that it is just not possible to type that character, not even using Japanese layout (http://answers.yahoo.com/question/index?qid=20081215222938AA9Nz0t)

    I tried Spanish, Catalan, 4 different French layouts and Japanese. Couldn't get that middle dot! So, there seems to be only one explanation for this - it is truly a bug.

提交回复
热议问题