问题描述
我遇到了一个非常奇怪的IntelliSense问题,并且不确定是Visual Studio 2013还是ReSharper 8.1.当我在script
标记(javascript)中的视图(cshtml)中工作时,某些东西会不断将功能"更改为以大写"F"表示的功能".
I am having a very strange IntelliSense issue, and I'm not sure if it's Visual Studio 2013 or ReSharper 8.1. When I'm working in views (cshtml) within script
tags (javascript), something keeps changing "function" to "Function" with a capital "F."
<script type="text/javascript">
var something = function() .... //on tab or completing the ()'s, it changes to Function
</script>
这当然没什么大不了的,但是随着我不得不回头把小写的"F"小写,这已经成为我脖子上的痛苦.有人知道为什么会这样吗?
This isn't a huge deal, of course, but it's becoming a pain in my neck as I keep having to go back and lower-case the "F." Does anyone know why this is happening?
我正在运行带有ReSharper 8.1 C#版的Visual Studio 2013 Ultimate.
I'm running Visual Studio 2013 Ultimate with ReSharper 8.1 C# edition.
推荐答案
清除缓存可能会起作用-Resharper
-> Options
-> Environment
-> General
,然后单击Clear Caches
按钮.
Clearing the caches would probably work - Resharper
->Options
->Environment
->General
and click the Clear Caches
button.
这篇关于为什么IntelliSense不断将功能更改为功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!