Compare commits
3 Commits
521319a575
...
2711375a4a
Author | SHA1 | Date | |
---|---|---|---|
2711375a4a | |||
b8a43a2416 | |||
7d03e1598f |
@ -14,7 +14,7 @@ Csope is alive and well.
|
||||
|
||||
# Features
|
||||
#### Search for
|
||||
+ C symbol
|
||||
+ symbol
|
||||
+ global definition
|
||||
+ assignments to specified symbol
|
||||
+ functions called by specified function
|
||||
@ -26,6 +26,13 @@ Csope is alive and well.
|
||||
#### ...and open with your editor.
|
||||
#### Batch change search results **interactively**.
|
||||
#### Save/load/pipe results.
|
||||
#### It fully supports:
|
||||
+ C
|
||||
+ Lex
|
||||
+ Yacc
|
||||
#### Partially supports
|
||||
+ C++
|
||||
+ Java
|
||||
|
||||
# Interface
|
||||
<-- Tab -->
|
||||
|
BIN
docs/after.jpg
BIN
docs/after.jpg
Binary file not shown.
Before Width: | Height: | Size: 243 KiB After Width: | Height: | Size: 708 KiB |
BIN
docs/after.old.jpg
Normal file
BIN
docs/after.old.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 KiB |
BIN
docs/before.jpg
BIN
docs/before.jpg
Binary file not shown.
Before Width: | Height: | Size: 262 KiB After Width: | Height: | Size: 257 KiB |
BIN
docs/before.old.jpg
Normal file
BIN
docs/before.old.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 262 KiB |
BIN
docs/cscope.1.bz2
Normal file
BIN
docs/cscope.1.bz2
Normal file
Binary file not shown.
10
src/help.c
10
src/help.c
@ -97,10 +97,12 @@ static char changeing_help_msg[] =
|
||||
"?\t\tDisplay this list of commands.\n";
|
||||
|
||||
const char *help(void) {
|
||||
if(input_mode == INPUT_CHANGE) {
|
||||
return help_msg;
|
||||
} else {
|
||||
return changeing_help_msg;
|
||||
switch (input_mode) {
|
||||
case INPUT_CHANGE:
|
||||
case INPUT_CHANGE_TO:
|
||||
return changeing_help_msg;
|
||||
default:
|
||||
return help_msg;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user