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
1
vote
0 answers

symbol not found in source insight

I build the project php internal source code with source insight.When I read the code in "zend.h" like this typedef struct { zend_error_handling_t handling; zend_class_entry *exception; zval *user_handler; }…
Leo
  • 127
  • 2
  • 8
1
vote
1 answer

Can't change keyboard shortcut in Source Insight

I'm working with Source Insight, and I want ctrl+A to select everything on the page. Reasonable enough, I think. So I make sure the command exists where I think it does - yep, there it is. So I go to the key shortcuts, but I can't find the Select…
dkb
  • 551
  • 5
  • 14
1
vote
1 answer

Force Source Insight to recognize a new macro

It's possible to create user-defined macros in Source Insight. According to the Source Insight macro overview: Macros are saved in a text file with a .EM extension. The files are added to your project, or to any project on the Project Symbol Path,…
JXG
  • 7,263
  • 7
  • 32
  • 63
1
vote
1 answer

How to save configuration template in Source Insight?

I'm working on a project with many similar branches. I'd like to configure Source Insight "once and for all"--to spend the time analyzing the huge project for which files/directories should be included and excluded, and then saving that as a…
JXG
  • 7,263
  • 7
  • 32
  • 63
1
vote
1 answer

Anyone written a script that turns gcov branch coverage output into compiler warning format?

Most code editors know how to take a reasonably standard format of file_path, line_number, message_text and hyperlink into code. They know how because that's how they display compiler warnings. Visual Studio does it, and Source Insight is trivial to…
talkaboutquality
  • 1,312
  • 2
  • 16
  • 34
1
vote
1 answer

How to get a whole list of compiled files of Linux kernel?

I'm working on different Android projects and need to setup project in Source Insight for different kernel source tree. There are many unused files in kernel, I want to find a method to pick out all .c,.h,.S files that are compiled in kernel. I was…
Haipeng Yu
  • 11
  • 2
1
vote
1 answer

vim ctags, jump to the definition of a class method

When I use ctags in vim, I run into this problem: InputDevice *device = mdev; device->process(...); when i wanna see the definition of process of class InputDevice, ctags can't give a solution and it shows so many tags. While in source insight, it…
Aylwyn Lake
  • 1,919
  • 4
  • 26
  • 36
0
votes
1 answer

Source Insight 4.0: the word being highlighted can not seen

In Source Insight 4.0 running on Windows 10, I came across a highlight problem. After any word being highlighted, the word is covered with a yellow rectangle and can not be seen anymore (as shown in picture-1). …
Perlman Soong
  • 111
  • 1
  • 9
0
votes
1 answer

How to add extensionless files (i.e. makefiles) in source insight?

How to add extensionless files (i.e. makefiles) in source insight? Working in Source Insight 3.X. An existing c/cpp project code is loaded. When I search in project window, make/makefile which are extension less are not showing. How can I confirm…
Sazzad Hissain Khan
  • 37,929
  • 33
  • 189
  • 256
0
votes
0 answers

Source Insight 4 Stuck and Not Working, How can I get it to work?

When using Source Insight4 to find a symbol, it gets stuck and no working after the first character is entered Has anyone encountered a similar problem and have any ideas on how to solve it?
0
votes
1 answer

Delphi Tooltip Symbol Insight / Code Insight Stopped Working

I'm running Delphi Tokyo 10.2. My Tooltip Symbol Insight (when debugging) has suddenly stopped working. The Code Insight that shows tool-tip information in the editor on mouse hover has also stopped working. All other Code Insight features appear to…
mait
  • 130
  • 8
0
votes
1 answer

Can I edit source insight bookmark database

I have a list for C source code position, which need to be add bookmark in the source insight project. I want edit bookmark database directly. For example the list is as following: line 5406 of file.c line 5594 of file.c line 3761 of …
0
votes
3 answers

sourceInsight tabs indentation

I have sourceInsight 4.0 version. I set the tab width to 4, and also set "Expand tabs to space. However, I still have indentation problem - for example: I have function decleration in one line, and in the second line I want to add the function…
user1335880
  • 81
  • 2
  • 8
0
votes
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
0
votes
1 answer

Source Insight can not jump to function definition

My language is lua. Many functions in the file table.lua is named as "Table_XXX",like pictue1.In table.lua's symbol window,all they are marked as the same symbol----"Table",like picture 1.while function call in other files(enven in the same…