Changeset f17bff98 for commands.c
- Timestamp:
- Oct 19, 2003, 11:30:00 PM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 4664c96
- Parents:
- c15bbfb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
rc15bbfb rf17bff98 568 568 569 569 OWLCMD_ARGS("show", owl_command_show, OWL_CTX_INTERACTIVE, 570 "show information", 571 "show variables\n" 572 "show variable <variable>\n" 570 "show information\n", 571 "show colors\n" 572 "show commands\n" 573 "show command <command>\n" 574 "show errors\n" 573 575 "show filters\n" 574 576 "show filter <filter>\n" 575 577 "show keymaps\n" 576 578 "show keymap <keymap>\n" 577 "show commands\n" 578 "show command <command>\n" 579 "show startup\n" 580 "show status\n" 581 "show styles\n" 579 582 "show subscriptions / show subs\n" 580 "show zpunts\n"581 "show styles\n"582 "show colors\n"583 583 "show terminal\n" 584 "show variables\n" 585 "show variable <variable>\n" 584 586 "show version\n" 585 587 "show view [<view>]\n" 586 "show status\n" 587 "show errors\n", 588 "show zpunts\n", 588 589 589 590 "Show colors will display a list of valid colors for the\n" … … 592 593 "Show filter <filter> will show the definition of a particular\n" 593 594 " filter.\n\n" 595 "Show startup will display the custom startup config\n\n" 594 596 "Show zpunts will show the active zpunt filters.\n\n" 595 597 "Show keymaps will list the names of all keymaps.\n" … … 1923 1925 } else if (!strcmp(argv[1], "status")) { 1924 1926 owl_function_status(); 1927 } else if (!strcmp(argv[1], "startup")) { 1928 char *filename; 1929 1930 filename=owl_sprintf("%s/%s", owl_global_get_homedir(&g), OWL_STARTUP_FILE); 1931 owl_function_popless_file(filename); 1932 owl_free(filename); 1925 1933 } else if (!strcmp(argv[1], "errors")) { 1926 1934 owl_function_showerrs();
Note: See TracChangeset
for help on using the changeset viewer.