From 0ae687aa603c04305fb08349e5415bccc38a0fc2 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 22 Nov 2018 23:54:49 +1300 Subject: Remove a couple of unneeded XTerm resources --- X/Xresources.d/XTerm | 2 -- 1 file changed, 2 deletions(-) diff --git a/X/Xresources.d/XTerm b/X/Xresources.d/XTerm index c8ec0ca4..f991ec91 100644 --- a/X/Xresources.d/XTerm +++ b/X/Xresources.d/XTerm @@ -2,9 +2,7 @@ XTerm.termName: xterm-256color XTerm.vt100.bellIsUrgent: true XTerm.vt100.internalBorder: 0 -XTerm.vt100.colorMode: true XTerm.vt100.eightBitInput: false -XTerm.vt100.locale: true XTerm.vt100.metaSendsEscape: true XTerm.vt100.background: #030303 XTerm.vt100.foreground: #E0E0E0 -- cgit v1.2.3 From f1b6f3b156bfdfbdb6e7c3c05b8bc7e72474ffeb Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 23 Nov 2018 11:34:36 +1300 Subject: Add an issue about mail filetypes in Vim --- ISSUES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ISSUES.md b/ISSUES.md index 3ead2d0d..f5ca69a8 100644 --- a/ISSUES.md +++ b/ISSUES.md @@ -26,3 +26,5 @@ Known issues depends on which shell you're using; the `sd` function isn't available when you're not using Bash. Maybe I should try to extend `help` without breaking it? +* The low-priority shortcut for mail messages in Vim doesn't work if you're on + the first line. -- cgit v1.2.3 From b28916fcf57b63c233b68e500a0596b6dc704299 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 23 Nov 2018 11:54:30 +1300 Subject: Correct RHS of (un)important mail ftplugin map This resolves the issue raised in f1b6f3b, where the mappings did not work if the cursor was on the first line. I had the colon `:` that starts the `ex` command and the `` that clears any existing command around the wrong way. Because CTRL-U in normal mode scrolls up, it fails if we're already on the top line, and the rest of the mapping looks to be skipped. There don't seem to be any other instances of the same error that I can find. --- ISSUES.md | 2 -- vim/after/ftplugin/mail.vim | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ISSUES.md b/ISSUES.md index f5ca69a8..3ead2d0d 100644 --- a/ISSUES.md +++ b/ISSUES.md @@ -26,5 +26,3 @@ Known issues depends on which shell you're using; the `sd` function isn't available when you're not using Bash. Maybe I should try to extend `help` without breaking it? -* The low-priority shortcut for mail messages in Vim doesn't work if you're on - the first line. diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim index 609cd92f..688ca6eb 100644 --- a/vim/after/ftplugin/mail.vim +++ b/vim/after/ftplugin/mail.vim @@ -43,10 +43,10 @@ endif " Flag messages as important/unimportant nnoremap h - \ :call mail#FlagImportant() + \ :call mail#FlagImportant() let b:undo_ftplugin .= '|nunmap h' nnoremap l - \ :call mail#FlagUnimportant() + \ :call mail#FlagUnimportant() let b:undo_ftplugin .= '|nunmap l' " Quote operator -- cgit v1.2.3 From 18b894c57e5bc7d52d9aacdf78cc44bf5761c211 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 23 Nov 2018 11:59:40 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index fa353a78..da2e77b2 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v1.76.2 -Thu Nov 22 10:46:57 UTC 2018 +tejr dotfiles v1.77.0 +Thu Nov 22 22:59:40 UTC 2018 -- cgit v1.2.3