Questions tagged [visual-assist]

Visual Assist is a commercial Visual Studio extension that enhances overall code editing.

Visual Assist is developed by Whole Tomato Software and offers various enhancements to Visual Studio. These enhancements include more detailed syntax highlighting, improved code completion, more navigation options, and last but not least, an array of refactoring tools.

Visual Assist is compatible with many versions of Visual Studio and supports C/C++ and C#.

For more info read here.

86 questions
2
votes
1 answer

tooltips in Visual Studio 2010

Sometimes I prefer to add a comment after declare a variable. For example: bool isOverhwndChild1; // This is just an example to make my question clear and you can understand. bool isOverhwndChild2; // This is just an example to make my question…
1
vote
2 answers

Anyone using Visual Assist? How does VA get the source code content?

I'm using Visual Assist with VC6, it seems to be a powerfull tool. As a programmer, I'm curious about the implementation. I'm wondering how does VA get the source code content? it seems that VA knows every line of my code file, even when it's…
Felix
  • 2,673
  • 3
  • 30
  • 38
1
vote
2 answers

Visual Assist X -- More items in Intellisense?

Right now, Visual Assist X shows 5 items in my Intellisense suggestions window (i.e. when I begin typing). Is there any way to increase it? 5 items is too few. :(
user541686
  • 205,094
  • 128
  • 528
  • 886
1
vote
0 answers

Visul Studio 2022 with Visual Assist - GO button gets huge issue

I am using: current version of Microsoft Visual Studio 2022 (64-bit) - Version 17.4.3. current version of Visual Assist (Visual Assist build 2022.5) I have a random problem, when Go button sometimes after pressing some function with ctrl + right…
Adam Kuzański
  • 509
  • 4
  • 12
1
vote
0 answers

VimPlugin: Scroll autocomplete suggestion in Visual Studio without arrows

Is possible to configure Vim plugin for VisualStudio to let you scroll the VisualAssistX's context menu showing autocomplete options without using arrows keys? I found this bug but those shortcut don't work for me. It seems to scroll through and…
Heisenbug
  • 38,762
  • 28
  • 132
  • 190
1
vote
1 answer

How I can close horisontal navigation panels in VS 2017?

When I edit sources in VS 2017, I see next navigation panels (above the source): Some of them could be created by an Visual Assist. How can I close some of them? Where are the settings for displaying these panels?
r1d1
  • 469
  • 4
  • 16
1
vote
0 answers

Showing contextual documentation for C++ virtual functions in Visual Studio

Is there a way to annotate a virtual function so that Visual Studio will show documentation from the function's base declaration on all its implementations? I'm imagining something of this form: class Base { // [some documentation, probably with…
Biro Cash
  • 11
  • 4
1
vote
1 answer

Is there a way to create Visual Assist specific preprocessor sections?

I have some complicated preprocessor macros which use the N-arg trick to count arguments and generate specific sub macro depending on the __VA_ARG__ argument count. Visual Assist doesn't like that and it completely messes up the parsing and the…
Juicebox
  • 442
  • 4
  • 11
1
vote
2 answers

Visual Studio environment alternative

I use Visual C++ (7.1 and 8.0) on huge C++ project. The solution contains thousands of files. Visual Assist helps in jumping to function and class definitions. The problem is that it sometimes becomes too slow. I just can't edit a single letter…
Stas
  • 11,571
  • 9
  • 40
  • 58
1
vote
2 answers

How to "Go to definition" of a function using Visual Assist?

I am using Visual Assist for last couple of months. Alt+G is very useful and fast in finding definition of anything under cursor. But I am not able to figure out how to Go to definition by manually putting the function-name or class-name as text…
Saurav Sahu
  • 13,038
  • 6
  • 64
  • 79
1
vote
0 answers

How to teach Visual Assist to assist me with smart pointers?

We usually define classes that are often used like this: class SomeClass { // Some code here }; typedef std::shared_ptr SomeClassPtr; Because frankly having to type std::shared_ptr every time is a suicide. However Visual…
Tomáš Zato
  • 50,171
  • 52
  • 268
  • 778
1
vote
1 answer

What is an efficient way to list all macros defined in a Visual Studio C++ Project (with Visual Assist)?

I want to list all macros which were defined inside a certain Visual Studio 2010 Project or Solution. Is there an efficient way to list them with a Tool (might be Visal Assist, too). Or is there a good regex to find them all? If there is an enhanced…
1
vote
1 answer

Is there anything like VisualAssistX for Eclipse? or I'd like some autocomplete with my cup of Eclipse

I'm currently being forced to work with Eclipse on one of my current projects. The language we're working with is C++. The one thing I miss the most from Visual Studio is VisualAssistX, mostly for its Auto Complete. Is there anything like it for…
F. P.
  • 5,018
  • 10
  • 55
  • 80
1
vote
1 answer

Visual Studio 2015 / Visual Assist autocomplete behaviour

When I type a word e.g. "cat", and then start typing another word at the start "ccat" and then use autocomplete (press enter with a suggestion selected, e.g. "cout"), the entire first word will be replaced, so I end up with just "cout". This is not…
user673679
  • 1,327
  • 1
  • 16
  • 35
1
vote
1 answer

Visual-Assist Add Include directive

I have a project name "HelloWorld" Folder "include" Class1.h Class2.h Folder "src" Class1.cpp If I use the the feature "Add #include Directive" from Class1.cpp, the following include gets added: #include "..\include\Class2.h" But in my project I…
Gam
  • 1,254
  • 1
  • 9
  • 18