How do I stop Visual Studio 2013 jumping out of quotes when I type a space in web editor?

后端 未结 1 1417
误落风尘
误落风尘 2021-01-13 12:37

When I\'m typing the value of an attribute and I hit space, it automatically jumps to the next attribute. I guess this makes sense when typing an id or something but it\'s r

相关标签:
1条回答
  • 2021-01-13 13:18

    The behavior you describe is a function of the IntelliSense "auto list members" feature. You can work around the annoyance by disabling "Auto list members" for HTML. Note: you can also do this for other languages.

    To disable "auto list members" for HTML go to:

    Tools > Options > Text Editor > HTML > General:

    uncheck "Auto list members"

    Unchecking this option will prevent the "jumping" behavior you describe but will also prevent the IntelliSense list from automatically displaying. Probably not a big deal since you can just press CTRL+J to display it when you need it.

    0 讨论(0)
提交回复
热议问题