Questions tagged [visual-assist-x]

18 questions
6
votes
2 answers

Can I use Visual Assist X on more than one machine?

A copy of the Visual Studio plug-in Visual Assist X costs US$250, or US$50 for an academic licence. However, I code as much on my laptop as I do on my desktop, so I'm guessing I have to buy 2 licenses?
Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
5
votes
2 answers

Where can I find color themes for Visual Assist X?

It's relatively easy to find color themes for Visual Studio. A quick search turns up tens or hundreds of themes without much effort, such as a Vibrant Ink clone, and some of Jeff Atwood's original themes. I use Visual Assist X -- pretty much the…
Billy ONeal
  • 104,103
  • 58
  • 317
  • 552
2
votes
1 answer

Create C++ Implementation (All functions at once) with Visual Assist X

I'm using visual studio 2013 Pro Edition with Visual Assist X. Is there away to create all the functions with one command? Right I have to run the create implementation command for each function. Also it seem that visual assist x does not handle the…
user751651
2
votes
0 answers

Modify the default location of & (by ref) in Visual Assist X's Extract Method macro

In Visual Assist X, the default way of extracting method is to put the & sign adjacent to the variable. Is there a way to change this behavior and make it put the & right after the class name instead? Currently using Visual Assist X, int someInt =…
Bee
  • 2,472
  • 20
  • 26
1
vote
1 answer

Have Visual Assist X disabled by default?

Is there a way that when Visual Studio Starts have Visual Assist disabled and enable it when I need it? I mostly work with C# projects and for that I use Resharper. However when I am working with C++ I would like to use Visual Assist and only then…
Dzyann
  • 5,062
  • 11
  • 63
  • 95
1
vote
1 answer

Managed C++ rename refactoring without keeping files open

I'm currently using Visual Studio 2010 and Visual Assist X to do rename refactorings in managed C++ code. For small codebases or renaming items which are not used very often in the code it works great. It's almost impossible to rename an item which…
1
vote
0 answers

how to force resharper to process .cs files, not VisualAssistX?

I have both Resharper and VisualAssistX installed. I'm using almost the same shortcuts. For example it's very handy to have one hotkey for "Find Usages". The problem is that When I try to "Find Usages" in .cs file VisualAssistX tries to do that…
Oleg Vazhnev
  • 23,239
  • 54
  • 171
  • 305
1
vote
1 answer

how to add "goto definition" in vs2012 and c++ project using "Ctrl+Click"

I do have such code in my .c file: #define CHECK_FAIL(f) \ { \ uint32_t res = f; \ if (res != CG_ERR_OK) \ { \ log_info("Client gate error: %x", res); \ exit(1); \ } \ } .... CHECK_FAIL(env_open(ini_string)); I…
Oleg Vazhnev
  • 23,239
  • 54
  • 171
  • 305
0
votes
1 answer

Does Xcode4 have automatic implementation creation feature?

I'm so used to Visual assist X and one of my favorite feature was automatic implementation creation feature. You put the cursor on the any interface in header file and you run the feature, it creates empty function in your cpp file. And the cursor…
SeniorLee
  • 805
  • 1
  • 12
  • 25
0
votes
0 answers

Visual assist x can not be used on visual studio

I have installed Tomato Assistant on VS2022, but I can't see it in the view window. Even if I uninstall and reinstall it, it still can't return to normal. May I ask how to solve this problem?
0
votes
1 answer

Unreal Engine 4 - Issue with TArrays and Visual Studio intellisense

I've faced an issue with intellisense in Visual Studio while working with TArrays. The problem is that intellisense is not able to find TArray's native functions like "Add()", "Emplace()", "Empty()", "Num()" etc and even iterate over it (cause…
0
votes
1 answer

What's a fast way to see if a function is public?

Debugging around a large VS2017 project, I often find myself switching to a header file and searching/scrolling just to see if a function is public or not. There must be a really quick way to check this, but I'm obviously missing the right words to…
0
votes
2 answers

C++ ReSharper - generating a variable of function's return value / parameter type

Isn't there a ReSharper 2016 C++/VisualAssist X C++/VS 2015 shortcut for generating a variable of function's return value / specific parameter type? (I'm not talking about auto, I mean the actual type)
golosovsky
  • 638
  • 1
  • 6
  • 19
0
votes
1 answer

Visual Studio 2013 opens function's deceleration in the wrong menu

While debugging, for time to time, i use the F12 button to view function's definition / declaration. Usually, VS opens the needed file as a secondary tab in the main menu. Recently, not sure what i've done, it started opening the code in the lower…
igal k
  • 1,883
  • 2
  • 28
  • 57
0
votes
1 answer

How to detect variable type in Vissual Assist X?

How to detect variable type in Visual Assist X? When i use encapsulate field like example it doesn't work(
1
2