Compare commits

...

3 Commits

Author SHA1 Message Date
2711375a4a non-see-through before/after 2023-09-09 15:40:03 +02:00
b8a43a2416 better docs 2023-09-07 14:26:59 +02:00
7d03e1598f display the correct help message 2023-09-07 14:14:31 +02:00
7 changed files with 14 additions and 5 deletions

View File

@ -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 -->

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 KiB

After

Width:  |  Height:  |  Size: 708 KiB

BIN
docs/after.old.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 KiB

After

Width:  |  Height:  |  Size: 257 KiB

BIN
docs/before.old.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

BIN
docs/cscope.1.bz2 Normal file

Binary file not shown.

View File

@ -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;
}
}