Changeset 987ff51 for commands.c
- Timestamp:
- May 19, 2007, 6:35:30 PM (17 years ago)
- Branches:
- master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 693c8f2
- Parents:
- cd57601
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r8fa9562 r987ff51 712 712 "default searches are done fowards, if -r is used the search\n" 713 713 "is performed backwards"), 714 715 OWLCMD_ARGS("setsearch", owl_command_setsearch, OWL_CTX_INTERACTIVE, 716 "set the search highlight string without searching", 717 "setsearch <string>", 718 "The setsearch command highlights all occurences of its\n" 719 "argument and makes it the default argument for future\n" 720 "search commands, but does not move the cursor. With\n" 721 "no argument, it makes search inactive."), 714 722 715 723 OWLCMD_ARGS("aimlogin", owl_command_aimlogin, OWL_CTX_ANY, … … 2384 2392 } 2385 2393 2394 char *owl_command_setsearch(int argc, char **argv, char *buff) 2395 { 2396 char *buffstart; 2397 2398 buffstart=skiptokens(buff, 1); 2399 2400 owl_global_set_search_active(&g, buffstart); 2401 2402 if (!*buffstart) { 2403 owl_global_set_search_inactive(&g); 2404 } 2405 2406 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 2407 2408 return(NULL); 2409 } 2410 2386 2411 char *owl_command_aimlogin(int argc, char **argv, char *buff) 2387 2412 {
Note: See TracChangeset
for help on using the changeset viewer.