diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-07 01:11:00 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-07 01:11:00 +1200 |
commit | c8c890ba9203f77e56688e559cb7d65b67665188 (patch) | |
tree | c99342bf766b5f59c834cc8f352544ce29cd5287 /vim/after/ftplugin | |
parent | Add a couple of abbreviations (diff) | |
download | dotfiles-c8c890ba9203f77e56688e559cb7d65b67665188.tar.gz dotfiles-c8c890ba9203f77e56688e559cb7d65b67665188.zip |
Adjust quoting in mail greeting match
Diffstat (limited to 'vim/after/ftplugin')
-rw-r--r-- | vim/after/ftplugin/mail.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim index e84702f0..cfb738a1 100644 --- a/vim/after/ftplugin/mail.vim +++ b/vim/after/ftplugin/mail.vim @@ -15,13 +15,13 @@ if line('.') == 1 && col('.') == 1 while getline('.') =~? '^> *' \ . '\%(' \ . '\%(' - \ . "g['\u2019]\\=day" + \ . 'g[''\u2019]\=day' \ . '\|\%(good \)\=\%(morning\|afternoon\|evening\)' \ . '\|h[eu]\%(ll\|rr\)o\+' \ . '\|hey\+' \ . '\|hi\+' \ . '\|sup' - \ . "\\|what['\u2019]\\=s up" + \ . '\|what[''\u2019]\=s up' \ . '\|yo' \ . '\)' \ . '[[:punct:] ]*' |