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

Source Insight: Show me Enum Values

I'm programming in C and using Source Insight. I have an enum type with a lot of constants (like 100). I have debug prints that print out variable values, but they (of course) print out as integers. What I'd like to do is click on the name of an…
JXG
  • 7,263
  • 7
  • 32
  • 63
0
votes
3 answers

Source Insight 3.5 shows "Parse Too complex" for a .c file

everyone. I'm reading the Wireshark source code these days. After importing all wireshark sources into Source Insight 3.50.0072, I found that several .c files can't be parsed correctly. The left "Symbol Window" can't display the local symbols, with…
hsluoyz
  • 2,739
  • 5
  • 35
  • 59
0
votes
1 answer

How to write "ToDo" comments in Source Insight editor?

I want to know, How can we write To DO comments in Source insight editor so that they'll get highlighted automatically ?
0
votes
2 answers

strange error when using source insight execute UV4

i want to execute UV4 in source insight, and catch the errors and display. the batch file context is c:\Keil\UV4\UV4.exe -b d:\workingcopy\test_project\test.uvproj -o log type d:\workingcopy\test_project\log when i run the batch file, and the…
sillypenguin
  • 129
  • 2
  • 7
0
votes
1 answer

Code from ICCV7- AVR displays garbled in text editor?

I have code written for Atmega64 , with "ICCV7 for AVR" (C Cross Compiler for the Atmel AVR), I can also open and edit it with sourceInsight, but when I open it with text editor (the most common one on Windows), it is all garbled. What can I do…
Julia Chen
  • 3
  • 1
  • 2
0
votes
3 answers

Program error on source insight using ubuntu

I was using Source Insight 3.5 on Ubuntu 10.10 32bit. For some reason, while I was working, the program got stuck. I closed it, and ever since, when I try to open it, I get the following error message: Program Error The program Insight3.exe has…
user1049052
  • 123
  • 1
  • 4
  • 10
-3
votes
1 answer

How can I make SourceInsight understand smart pointers?

If my code uses smart pointers, navigation and completion don't work with SourceInsight. For example with this simple example code: class test { public: void fun(){} }; int main() { boost::scoped_ptr a; a->fun(); return…
waters
  • 11
  • 2
1 2 3
4