diff config.feeds.example @ 662:bb6aea76cdb4

feeds: Fix binds to actually work.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 20 Feb 2021 17:35:07 +0200
parents 1d39db72e190
children 8bde8f798188
line wrap: on
line diff
--- a/config.feeds.example	Fri Feb 19 21:06:20 2021 +0200
+++ b/config.feeds.example	Sat Feb 20 17:35:07 2021 +0200
@@ -33,13 +33,15 @@
 # Initialization proc called only by feeds.tcl
 proc feeds_init { } {
   # Bind commands
-  bind pubm - !feed* feeds_cmd_pubm
+  bind pub - !feed feeds_cmd_pub
+  bind pub - !feeds feeds_cmd_pub
   bind pub - !last feeds_cmd_pub_last
-  bind pubm - !lates* feeds_cmd_pubm_last
+  bind pub - !latest feeds_cmd_pub_last
 
-  bind msgm - !feed* feeds_cmd_msgm
+  bind msg - !feed feeds_cmd_msg
+  bind msg - !feeds feeds_cmd_msg
   bind msg - !last feeds_cmd_msg_last
-  bind msgm - !lates* feeds_cmd_msgm_last
+  bind msg - !latest feeds_cmd_msg_last
 }