1

I wanted to know if there is any shortcut to switch letter case

example:

doItYourself to became DOiTyOURSELF

or

DOiTyOURSELF to became doItYourself

(I am using VS2010 but I wanted to know generally)

Endri
  • 714
  • 13
  • 34

1 Answers1

1

I don't think there is. There's only functionality for upper and lower case. Notepad++ has this function in menu TextFX > TextFX Characters > iNVERT cASE. Also, check out the relevant question from Super User for other alternatives.

If this functionality is so much required in Visual Studio itself, you can make a Visual Studio add-in (better than VS macros).

Community
  • 1
  • 1
Dialecticus
  • 16,400
  • 7
  • 43
  • 103
  • Thank you. I use notepad++ to, but I can't find TextFX menu. Is it on top level? – Endri Apr 03 '15 at 10:08
  • 1
    In certain versions it was [hidden](http://stackoverflow.com/q/12699833/395718) due to lack of maintenance. Try installing the latest version. Also try to install it through `Plugins > Plugin Manager > Show Plugin Manager`, and in `Available` tab check the box for `TextFX Characters`. – Dialecticus Apr 03 '15 at 10:14
  • @Endri, glad I could help. Make sure you support the workings of Stack Overflow by rewarding all useful answers, accepting the answer that is correct for your case. – Dialecticus Apr 03 '15 at 14:04
  • Ok, but instead I asked for Visual Studio. – Endri Apr 03 '15 at 14:23