This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Version: 3.2.419.21172 I purchased a copy of Web Workbench today and so far so good aside from some strange intellisense behaviour. I am not getting any intellisense before the colon? Even if I try and activate intellisense with CTRL + SPACE that doesn't work either. Is there a solution for this? |
|
|
Hi Mark, Is this in Visual Studio 2010 or Visual Studio 2012 that you are seeing the problem? We do not currently support CTRL+SPACE for triggering intellisense, it is triggered only when typing - there is a feature request for this however so you may want to vote this up :) http://www.mindscapehq.com/thinktank/suggestion/381414
|
|
|
Hi Jeremy, I am using VS 2010. I'm definitely not getting any intellisense before the colon when typing the property. Mark |
|
|
I am not sure what I did but this is now working properly. |
|
|
I've realised what the issue is: any properties created after a comment // will not activate intellisense before the colon. e.g. Intellisense will work on these properties
h1 {
font: @lrgFont;
line-height: 40px;
color: @gp-darkest;
margin-bottom: 20px; Intellisense for adding margin-bottom will not work. h1 { font: @lrgFont; line-height: 40px; color: @gp-darkest; // This is a comment. } |
|