--- a/mutt/muttrc Wed Sep 23 12:33:59 2020 -0400
+++ b/mutt/muttrc Wed Sep 23 12:34:48 2020 -0400
@@ -177,6 +177,7 @@
# Sorting
macro index <f1> "<enter-command>set sort = threads<enter><enter-command>set sort_aux = reverse-last-date-received<enter>" "sort with newest first"
macro index <f2> "<enter-command>set sort = threads<enter><enter-command>set sort_aux = date-received<enter>" "sort with oldest first"
+bind index <f3> sort-reverse
# Mark all as read
macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read"
--- a/stumpwmrc Wed Sep 23 12:33:59 2020 -0400
+++ b/stumpwmrc Wed Sep 23 12:34:48 2020 -0400
@@ -458,9 +458,8 @@
(run-or-raise "gcontrol" '(:class "Gnome-control-center")))
(defcommand zoom () ()
- (when-let ((window (find-window `(:title ,(ppcre:create-scanner "^Zoom Meeting ID: .*")))))
- (when window
- (focus-window window t))))
+ (when-let ((window (find-window `(:title ,(ppcre:create-scanner "^Zoom Meeting.*")))))
+ (focus-window window t)))
;;;; Timers -------------------------------------------------------------------
--- a/vim/vimrc Wed Sep 23 12:33:59 2020 -0400
+++ b/vim/vimrc Wed Sep 23 12:34:48 2020 -0400
@@ -1,6 +1,6 @@
" .vimrc
" Author: Steve Losh <steve@stevelosh.com>
-" Source: http://bitbucket.org/sjl/dotfiles/src/tip/vim/
+" Source: https://hg.stevelosh.com/dotfiles/file/tip/vim/vimrc
" Preamble ---------------------------------------------------------------- {{{
"
--- a/weechat/python/autoload/sanitize_jira.py Wed Sep 23 12:33:59 2020 -0400
+++ b/weechat/python/autoload/sanitize_jira.py Wed Sep 23 12:34:48 2020 -0400
@@ -19,6 +19,9 @@
)
def sanitize_jira(data, line):
+ if 'sign up for an Atlassian account to view this link' in line['message']:
+ return {'message': ' '}
+
m = first_line_re.search(line['message'])
if m:
return {'message': '%s | %s' % (m.group('title'), m.group('link'))}