intellisense

Notepad++ intellisense for user-defined functions

岁酱吖の 提交于 2019-12-24 10:59:35
问题 I understand that I can enable auto-completion in Notepad++ by going to " Settings -> Preferences -> Backup/Auto-completion ". For example with Python, the auto-completion only works for a set of pre-defined functions according to this link. Does anyone know how to make intellisense in Notepad++ for the functions and methods that I define? I'm no expert in this but I was thinking, surely there must be a way that Notepad++ can automatically detect function definition in the code, and add those

Not getting Intellisense for Lambda Expression

柔情痞子 提交于 2019-12-24 10:55:34
问题 Basically, I've created a helper method for a Validation object I'm using. The code is like so: public class ValidationSet<TSource> : ValidationSet { public void AddValidationErrorFor<TProperty>(Expression<Func<TSource, TProperty>> propertyLambda, string errorMessage, string data = null) { // extension method PropertyInfo property = propertyLambda.GetPropertyInfo(); Add(new ValidationItem { Key = property.Name, Message = errorMessage, DataMessage = data }); } } public class ValidationSet :

Issue with operator-> overloaded in VS2010

被刻印的时光 ゝ 提交于 2019-12-24 09:41:44
问题 I've implemented a small framework in C++ which I use in a course I give at college, to help students implement their homework. One of the most valuable classes of that framework, is a smart pointer class, which as you can imagine, it overloads the -> operator. Recently I upgraded from VS2008 to VS2010, and occasionally I get issues with the intellisense after typing the operator. Instead of showing the methods and fields available in the pointed data type, it shows the methods and fields of

I can't Publish my website anymore

最后都变了- 提交于 2019-12-24 05:58:29
问题 I am trying to publish my site from Visual Studios 2008 Web Developer SP1. I do first a clean build then I rebuild it. I then go and try to publish it. I get one warning that seems to make it fail Warning 1 Error updating JScript IntelliSense: C:\Users\bob\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\25YI099T\jquery-fds90[1]..js: Object doesn't support this property or method @ 2139:1 E:\Projects\Dir\Version 2\trunk\Site\Views\Shared\Site.Master 1 1 I don't understand

Syntax highlighting and intellisense not working .net core vs 2015

落爺英雄遲暮 提交于 2019-12-24 05:52:46
问题 I am trying to work on a .net core project and syntax highlighting is not functioning properly for razor views. Is there a dev dependency or configuration property that I am missing. Intellisense is also not working properly for asp-* tags. Any suggestions? I've already tried deleting the ComponentModelCache in appdata. Here is my project.json so you can see what packages I'm using. It seems to be project setup related, most likely a package. I am importing the tag helpers in my _ViewImports

Class Library Intellisense not showing up after adding the dll to the references

我们两清 提交于 2019-12-24 04:52:09
问题 In C#, I made a ClassLibrary that has one Namespace and one Class. I saved it and build it. in other Projects, when i use it, I add it to my references by browsing to the .dll location. But The Problem is that its name is not showing up in the Intellisense. i.e when I: using ... my dll doesn't show .. I'm Importing the library to a ConsoleApp. both of the App and the library target Framework is .NET Framework 4.0 and I made their Assembly Version 4.0.0.0 so they're the exact same. is there a

Class Library Intellisense not showing up after adding the dll to the references

房东的猫 提交于 2019-12-24 04:52:05
问题 In C#, I made a ClassLibrary that has one Namespace and one Class. I saved it and build it. in other Projects, when i use it, I add it to my references by browsing to the .dll location. But The Problem is that its name is not showing up in the Intellisense. i.e when I: using ... my dll doesn't show .. I'm Importing the library to a ConsoleApp. both of the App and the library target Framework is .NET Framework 4.0 and I made their Assembly Version 4.0.0.0 so they're the exact same. is there a

unable to get intellisense for knockout.js file

断了今生、忘了曾经 提交于 2019-12-24 03:44:27
问题 i am working on asp.net website and we are using knockout.js. I am not able to get javascript intellisense for knowkcout.js file. I tried adding the below snippet but still i am not getting any intellisense. <% if(false){ %> <script src="knockout-2.0.0.js" type="text/javascript"></script> <% } %> This is how my head block looks like: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <% if(false){ %> <script src="knockout-2.0.0.js" type="text

VS2008 jQuery Intellisense not working - (jquery-1.4.1.js)

本秂侑毒 提交于 2019-12-24 02:22:12
问题 I have searched on google, followed scottguthrie's article & also here on SO for a solution but to no avail. My environment consists of VS2008 SP1, including hotfix for JQuery intellisense. I have downloaded 'jquery-1.4.1.js' & also 'jquery-1.4.1-vsdoc.js' from the jquery website. Referenced it in an 'HTM' file like this: <script src="Js/jquery-1.4.1.js" type="text/javascript"></script> and when i write code like below, there is no intellisense. <script type="text/javascript"> $ </script> Any

Intellisense for C++ in VS2010

吃可爱长大的小学妹 提交于 2019-12-24 02:06:59
问题 All, I have a strange issue with Intellisense for C++ projects. Background: I have recently installed VS2010 Sp1 and had a loss of Intellisense with SQL Server 2008 R2. I tried installing Cumulative Update 7 (CU7) as recommended and this did not work. Reinstalling SQL Server 2008 R2 however, did. I then updated using CU7 for SQL Server 2008 R2 and all was good. Now Intellisense works fine for C# projects but now for C++ projects it is not quite working as it should (NOTE: C++ project is not C