You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
findquote pattern - Show the latest quote matching pattern. pattern could be a regular expression or a glob. lastquote nick - Show the latest quote for nick, looking for <nick> at the beginning of the quote.
The latter might need to strip prefixes (+%@&!~) and timestamps. And it won't work if someone adds a quote where the nick is formatted differently.
The text was updated successfully, but these errors were encountered:
Regular expression is out of question, due to Python 2.x not having a timeout for regular expression parsing.
Though I like the idea for searching for quotes by a certain user. I'm thinking of showing a list of numbers that are the quote numbers, and then people can .quote , to see the actual quote. Thoughts?
Something like the following:
findquote pattern - Show the latest quote matching
pattern
.pattern
could be a regular expression or a glob.lastquote nick - Show the latest quote for
nick
, looking for<nick>
at the beginning of the quote.The latter might need to strip prefixes (
+%@&!~
) and timestamps. And it won't work if someone adds a quote where the nick is formatted differently.The text was updated successfully, but these errors were encountered: