# HG changeset patch # User Steve Losh # Date 1600464109 14400 # Node ID 18cc4d4f4ac43a363fecabe562a296764db75cc0 # Parent dfb5e299d678064be91e4c138e78835668a03712 More diff -r dfb5e299d678 -r 18cc4d4f4ac4 mutt/muttrc --- a/mutt/muttrc Tue Sep 08 14:03:40 2020 -0400 +++ b/mutt/muttrc Fri Sep 18 17:21:49 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 dfb5e299d678 -r 18cc4d4f4ac4 vim/vimrc --- a/vim/vimrc Tue Sep 08 14:03:40 2020 -0400 +++ b/vim/vimrc Fri Sep 18 17:21:49 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 dfb5e299d678 -r 18cc4d4f4ac4 weechat/python/autoload/sanitize_jira.py --- a/weechat/python/autoload/sanitize_jira.py Tue Sep 08 14:03:40 2020 -0400 +++ b/weechat/python/autoload/sanitize_jira.py Fri Sep 18 17:21:49 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'))}