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
8
votes
2 answers

Source Insight is not displaying the full path of a file in the title bar

Consider that I have opened a file, E:\code\module1\souce\temp.c, in Source Insight. Then in the Source Insight title bar it will display the path as temp.c(E:\code\..\source). But I want it to display like temp.c (E:\code\module1\source). How can…
rashok
  • 10,508
  • 11
  • 76
  • 90
6
votes
2 answers

source insight multiple highlights

Is there some feature/macro readily available which can help in highlighting different words in source insight in different colours ( The original installation allows highlighting of different words, but all in the same colour).
AJ-42
  • 61
  • 1
  • 4
6
votes
3 answers

source insight like free source code browser and editor in windows

can anyone suggest me free source code browser (c/c++ )and editor in windows like source insight?
suresh
  • 3,854
  • 9
  • 40
  • 54
3
votes
2 answers

C++ Cross Ref for VIM similar to Source Insight

I wanted a cross reference navigation similar to Source Insight. Lets take simple example: classA::MethodB() { ... m_variable = value; } In this example if I use Ctags / Cscope, then when I try to find m_variable, it will show me all the…
hari
  • 1,379
  • 3
  • 16
  • 29
3
votes
2 answers

Source Insight type editor with tabbed windows and dividers?

I really like the set up of Source Insight, it has a context window for one click understanding of function calls and variables, and a relations window for where functions are called in a project and where variables are used in the project. It is…
Hyperian
  • 119
  • 2
  • 12
2
votes
1 answer

Where to find a configuration file for SourceInsight?

Where to find a configuration file for SourceInsight? The default configuration of the software makes the code even unreadable. Thanks.
user53670
2
votes
2 answers

How to use vim editor in windows source insight

I am using windows source insight. In this only the basic text editor is available. Is there any vim plugin available to use it in windwos source insight?
rashok
  • 10,508
  • 11
  • 76
  • 90
2
votes
1 answer

ARM assembly in source insight

What would be the best way to read ARM assembly using source insight? I currently am reading code for the linux kernel using SI and so far everything has worked great. However, when I try to read ARM assembly it chokes. I tried following the…
learnlearnlearn
  • 591
  • 1
  • 3
  • 13
2
votes
1 answer

Source Insight //TODO comment

a bit silly, but it is driving me crazy, i recently started working with Source Insight, and in order to get a proper looking //TODO - comment you need to write // TODO (with an extra space). i tried looking around the config for a way to remove…
Dinari
  • 2,247
  • 9
  • 28
2
votes
1 answer

Source Insight cannot recognize function definitions

If any macro shows up in the definition, source insight would fail to recognize the function correctly. Like this: header: //whateverheader.h #define DECLINLINE(type) static __inline__ type source: //whateversource.c static DECLINLINE(int)…
Sean
  • 523
  • 1
  • 6
  • 16
2
votes
4 answers

Assembly code support in source insight

Has anybody tried browsing assembly language file (filename.s) in source insight? I just added whole Linux kernel project into source insight but it does not support any of the assembly files.
San
  • 867
  • 3
  • 13
  • 32
1
vote
0 answers

Source Insight can't recognize multi-line macro

Here is a snippet: #if defined(a) || \ defined(b) void test(); #else void test(); #endif Source Insight can't recognize multi-line macro. It treats #if defined(a) || \ defined(b) as #if defined(a) #if defined(a) || defined(b) How do I fix…
haolee
  • 842
  • 8
  • 16
1
vote
1 answer

Context Window and Relation Window in source insight

I am unable to view the context window and relation window in source window suddenly. Even if I toggle the Context Window or Relation window, it is not coming up. issue image
1
vote
2 answers

Can Source Insight Project View show the file tree? not just the file name list

I have so many files in different folders of my project. I want to view and edit them in Source Insight, i found the project view only show the file name not the tree view as in Visual Studio. Is it possible to show the file tree in Source…
Tingur
  • 142
  • 1
  • 10
1
vote
1 answer

Undeclared reference to variable..which has been defined extern

I have defined a global variable named "ledFlag" in one source file, this source file also has a ISR for push button connect to Interupt pin. The ledFlag variable will be set in ISR once the push button is pressed. Since the main application is in…
Ali
  • 39
  • 6
1
2 3 4