Questions tagged [source-insight]

Source Insight is an advanced code editor and browser with built-in analysis for C/C++, C#, and Java programs.

Source Insight parses your source code and maintains its own database of symbolic information dynamically while you work, and presents useful contextual information to you automatically. Not only is Source Insight a program editor, but it also can display reference trees, class inheritance diagrams, and call trees. Source Insight features the quickest navigation of source code and source information of any programming editor.

Links

  1. Manual
  2. Updates
52 questions
0
votes
1 answer

SourceInsight Macro to type text in current buffer?

Is there a macro to type text in the current buffer? I see the macro to insert a line, I want to insert a string.
Steve Kolokowsky
  • 423
  • 2
  • 12
0
votes
1 answer

Source Insight cannot find symbol

#include using namespace std; template class Compare { public: numtype* x; }; class test { public: void fun(){ std::cout << "fun" << std::endl; } }; int main() { Compare a; a.x = new…
0
votes
1 answer

Is it possible to store the edited lines [the ones highlighted in green in the side] in SourceInsight/Source Insight?

Whether is it possible to store the highlight that source insight shows for edited lines? I wish the highlight to be stored till I discard it manually.
nullptr
  • 133
  • 1
  • 1
  • 8
0
votes
1 answer

In source insight, how to directly jump to project window text box?

In source insight, to access source file, I use project window very often. I type few letters or word contained in the name of the file I look for in project window text box to find the target file quickly. However, to do that, I need to click the…
user5150273
  • 195
  • 1
  • 2
  • 8
0
votes
0 answers

Source insight 3.5/4.0 - How to get SI to parse structure member that defined in include file

I have some structure defined look like below, typedef struct { #include } foo_bar; How can I force Source Insight to parse the content of foobar.h then expand to foo_bar structure like a normal structure definition. Is there any idea…
isaac
  • 1
  • 1
  • 1
  • 2
0
votes
1 answer

How to widen the Source Insight Location view?

I am using Source Insight to browsing a large code base. When searching for some symbol definitions, the Location view is too narrow to display the full content. Shown below. Anyway to widen it? (I was planning to post it to Superuser but…
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
0
votes
1 answer

How to import all vs symbols into Source Insight?

Just switched to Source Insight,how to import all symbols(library and header files) that are available in visual studio into Source Insight?
Alan
  • 5,029
  • 5
  • 32
  • 37
0
votes
1 answer

(Source Insight) How to hide references of function definition in Relation Window?

I am using "Relation Window" view in Source Insight and want to know how to hide references of function when it's just a function definition(usually in header files) as it's useless.
user5150273
  • 195
  • 1
  • 2
  • 8
0
votes
1 answer

How to change root directory of project file browser in Source Insight 3.5

I am trying to change the root directory of project file browser because the project file is not in c:. I have already checked out the documents in source insight official site but seems like no way to change it or I miss it. Does anyone know how to…
hismart
  • 405
  • 6
  • 15
0
votes
1 answer

Autosar function prototype not recognized by Source insight

Following is the prototype of function declaration according to Autosar standard: FUNC(Return_Type, Memory_section) Function_Name ( Input_parameters ); but this is not recognized by source insight, what setting should i do to get this issue…
ganesh
  • 1
  • 2
0
votes
1 answer

Shortcut to open source files in Source Insight

I am new to Source Insight and wuld like to know the keyboard shortcuts. For example - in eclipse to open source file we can use Ctrl+Shift+R. Is there such shortcuts in source insight?
apb_developer
  • 321
  • 2
  • 9
0
votes
2 answers

Is hidden declaration possible in a project?

In my project, a structre is being used in several functions. like this: void function1 (Struct_type1 * pstType1); but when I search for Struct_type1 's references, I can't find any. This Structure must be defined somewhere. How to find the…
SKD
  • 464
  • 1
  • 4
  • 16
0
votes
1 answer

Is there a way to config Visual Studio with a Context Window as in Source Insight?

The Context Window is a Source Insight innovation that automatically provides relevant information while you are viewing and editing your source code. I've searched on the web and found a Vim plugin SrcExpl providing the same function in Vim. So, is…
Bill
  • 130
  • 3
  • 9
0
votes
1 answer

Does Source Insight provide "EOL conversion" function?

In Notepad++, there is an "EOL Conversion" option which can change the EOL of a file from Windows into Unix format. Does Source Insight provide the similar feature which can convert a file or a bunch of files in batch?
Nan Xiao
  • 16,671
  • 18
  • 103
  • 164
0
votes
1 answer

Source Insight Reset Windows Layout

Is there any way of setting the Windows layouts to default in Source Insight.I mean how can I do the "Reset Windows layout" as in Visual Studio in Source Insight?