intellisense

emacs intellisense

亡梦爱人 提交于 2019-12-05 10:47:45
问题 I know this has been discussed a lot of times but is there any nice how-to for c/c++ intellisense in emacs? I have never been able to set up cedet properly. Right now I am working on a maintenance project with a huuge code base and it is very difficult to manage without proper intellisense. Currently I am using vim with ctags/cscope and omnicomplete features for intellisense which works great; but I would like to get things to work with emacs. 回答1: If you cannot get CEDET working, then you

How to add NHibernate XML schema to Visual Studio?

落爺英雄遲暮 提交于 2019-12-05 10:46:32
问题 I'm learning NHibernate and I added <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"> to App.config . Visual Studio reported a message: Could not find schema information for the element 'urn:nhibernate-configuration-2.2:hibernate-configuration'. I know this is not a problem, but if VS knew the schema, IntelliSense would work. How can I add the schema? 回答1: Just include the XSD files in any of your projects or as Solution Items. 回答2: Copy the two .xsd from the folder Required

Razor in class library, missing intellisense

◇◆丶佛笑我妖孽 提交于 2019-12-05 09:10:34
I'm trying to include razor (cshtml) files in a class library, to be included in a separate MVC4 project. I've gotten everything working, except intellisense seems to be missing for certain types, specifically System.Web.Helpers.Json , although there could be others I haven't discovered yet. My problem might be related to Razor views: Intellisense not working with C# 3 for class libraries but it's not exactly the same. Here is a sample from my razor view: @model dynamic @{ // ... some code ... var options = new global::System.Web.Mvc.SelectListItem[] { new global::System.Web.Mvc.SelectListItem

Namespace not found within the same project according to intellisense, yet project builds

旧巷老猫 提交于 2019-12-05 09:07:19
I have a simple ASP.Net MVC project which for some reason has issues with intellisense. It is constantly giving me errors that namespaces local to the project can not be found, even though they do exist and the project will build fine. Here's an example: It is very frustrating as this results in me having no intellisense available whatsoever. Has any one encountered a problem like this before, and do they know of a solution? The project itself is an MVC4 website running in VS2013 in W8 under Paralells on a Macbook Air, should that have any effect on the problem. As stated, I have no error

vs 2017 intellisense not working C# and XAML

ⅰ亾dé卋堺 提交于 2019-12-05 06:38:00
I have a Strange issue that I can't seem to fix, my Intellisense for XAML is no longer showing up and the code behind is only showing the premade Members. The Classes and Methods I have made are not showing up. Also Visual Studios is not recognizing other pages and wont recognize Navigation either. I have tried going to Tools>Text Editor>C#>Intellisense -Statement completion and checking the boxes Auto list members and Parameter information. I also tried to clear out the cache. From what I have researched it seems nobody else is having the same problems. CalebR Close all open tabs in the

Visual Studio IntelliSense for viewing block declarations from the closing brace?

心不动则不痛 提交于 2019-12-05 06:35:34
问题 I'm really curious if anyone knows if Visual Studio's IntelliSense can be configured to display a code block's declaration by hovering over the block's closing brace (or something similar). Rather than having to mark long code blocks with a comment, I would much rather hover over the closing brace to view which block it ends. If what I'm saying isn't clear, imagine you had the code block below: if (typeof(obj) is Int32) { ///...PROGRAM LOGIC... } In this example, if I were to move the caret

JavaScript Intellisense in VS2010 extremely slow and memory hungry

强颜欢笑 提交于 2019-12-05 04:27:36
I'm having 2 problems with the Intellisense in VS2010. Our project is very large, it consists of a couple hundred .js files comprising a couple hundred thousand lines of code. After using VS2010 for as little as 5-10 minutes the memory usage can easily climb to over 1gb, which causes a significant slow down, and every time I CTRL+TAB between files "Updating JavaScript Intellisense" appears in the status bar. All of our .js files have tags so Intellisense knows where to find related code, each .js can easily reference 20-30 other .js files. So I'm assuming every time you CTRL+TAB or open a new

jQuery Intellisense in VS2012

☆樱花仙子☆ 提交于 2019-12-05 03:43:58
How can I add a plugin into Visual Studio 2012 to work with jQuery syntax in intellisense on visual studio? Please don't give me link of other site, just give a solution that you did and worked fine. Saeed Bazzaz Install NuGet in Visual Studio Extension Manager Open your web application solution Open Package Manager Console from Tools-> Library Package Manager, NuGet add latest jQuery versions to your project Type "PM> Install-Package jQuery" in console Drag and drop your jQuery script file from the Solution Explorer window onto the javascript editor window Enjoy jQuery intellisense Visual

resharper intellisense problem with extension methods

一曲冷凌霜 提交于 2019-12-05 03:21:47
so, I have a repository defined with a method like this: IQueryable<Customer> Customers{...} and elsewhere an extension method to filter the customers like so: public static IQueryable<Customer> WithID(this IQueryable<Customer> customers, int ID){...} and this woks nicely, letting me use the repository like this: var c = repo.Customers().WithID(5).Single(); but the problem is, ReSharper messes up the Auto-Completion on this big time. When I type var c = repo.Customers().Wi I get nice Intellisense showing me the WithID(...) method, but when I cursor down to it and hit TAB, instead of getting

Visual Studio Code Custom Language IntelliSense and Go to symbol

好久不见. 提交于 2019-12-05 02:24:21
问题 I am in the process of writing an extension for a custom language in Visual Studio Code. Syntax detection is working well via the tmLanguage file. I am trying to figure out how to add intellisense and go to symbol support, neither of which I have been able to find clear documentation on nor reference file(s) to work from. When I have a file open with my custom language selected and I select go to symbol I get the following error: Unfortunately we have no symbol information for the file. Is