Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What cscope reference card do you use? [closed]

Tags:

c

cscope

What is the standard/best reference card for cscope shortcuts/usage that I can print for quick reference?

like image 351
Lazer Avatar asked Feb 15 '10 17:02

Lazer


2 Answers

The easiest way I can think of doing this, and its cheap, is to get the hardcopy man page for cscope and create a text file...for instance:

$ man cscope | col -b > cscope.txt 

Or, to convert to ps file for feeding into Ghostscript:

$ man -t cscope > cscope.ps
$ gs cscope.ps -sOutputFile=cscope.pdf
like image 178
t0mm13b Avatar answered Nov 15 '22 05:11

t0mm13b


I use this (for default vim bindings; at the top is first access key - Ctrl+'\', and capital letter is second key):

         ^\ 
Symbol
Global
Calls to
Text
Egrep
File
Includes
calleD by

This quick reference card is sticked to my monitor here (*) for more than 2 years:

________________
|              |_
|              |*|
|              |-
|              |
|              |
----------------
      |  |
     /____\

Extremely cheap and useful.

like image 33
osgx Avatar answered Nov 15 '22 04:11

osgx