aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ISSUES.md2
-rw-r--r--vim/after/ftplugin/mail.vim4
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 <buffer> <LocalLeader>h
- \ <C-U>:call mail#FlagImportant()<CR>
+ \ :<C-U>call mail#FlagImportant()<CR>
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>h'
nnoremap <buffer> <LocalLeader>l
- \ <C-U>:call mail#FlagUnimportant()<CR>
+ \ :<C-U>call mail#FlagUnimportant()<CR>
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>l'
" Quote operator