diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 01:11:00 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 14:03:53 +0200 |
commit | 20709b7a7e1bdaae59d704596898e727e1155d77 (patch) | |
tree | de4d6b0cfa945395318659d2a9d41e737ee19563 /src/calcurse.c | |
parent | 08f5064ef7b204d3c564f76b1c2e78d83d586a1a (diff) | |
download | calcurse-20709b7a7e1bdaae59d704596898e727e1155d77.zip |
Drop legacy online help system
Remove the old online help system and change the generic help key to do
the same thing as ":help".
This also removes some context-sensitive help. We should think about
re-adding support for this later.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.c')
-rw-r--r-- | src/calcurse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 859bc1e..c3a7ce8 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -278,8 +278,7 @@ static inline void key_view_note(void) static inline void key_generic_help(void) { - wins_status_bar(); - help_screen(); + wins_launch_external(DOCDIR "/intro.txt", conf.pager); wins_update(FLAG_ALL); } |