# HG changeset patch # User Steve Losh # Date 1600878888 14400 # Node ID 0ad0176a5755cc4465a995049ceaa87cd243b70b # Parent 8c32f46d08e88c74b4f9a16f8f8d3e3e3f539e9b# Parent 18cc4d4f4ac43a363fecabe562a296764db75cc0 Merge diff -r 8c32f46d08e8 -r 0ad0176a5755 mutt/muttrc --- 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 "set sort = threadsset sort_aux = reverse-last-date-received" "sort with newest first" macro index "set sort = threadsset sort_aux = date-received" "sort with oldest first" +bind index sort-reverse # Mark all as read macro index \Cr "T~UN." "mark all messages as read" diff -r 8c32f46d08e8 -r 0ad0176a5755 stumpwmrc --- 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 ------------------------------------------------------------------- diff -r 8c32f46d08e8 -r 0ad0176a5755 vim/vimrc --- 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 -" Source: http://bitbucket.org/sjl/dotfiles/src/tip/vim/ +" Source: https://hg.stevelosh.com/dotfiles/file/tip/vim/vimrc " Preamble ---------------------------------------------------------------- {{{ " diff -r 8c32f46d08e8 -r 0ad0176a5755 weechat/python/autoload/sanitize_jira.py --- 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'))}