]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

change git-send-email filetype
authormartin f. krafft <madduck@madduck.net>
Wed, 3 Oct 2007 15:28:55 +0000 (16:28 +0100)
committermartin f. krafft <madduck@madduck.net>
Wed, 3 Oct 2007 15:28:55 +0000 (16:28 +0100)
.vim/ftdetect/gitsendemail.vim [moved from .vim/ftdetect/git-send-email.vim with 57% similarity]

similarity index 57%
rename from .vim/ftdetect/git-send-email.vim
rename to .vim/ftdetect/gitsendemail.vim
index d9c2d2169d497e9b5ce17885ce4e3dc56546caa4..e54b01f191161a5eb2c79abd32a8bac78254000a 100644 (file)
@@ -1,5 +1,5 @@
 augroup filetypedetect
   " detect git-send-email messages
   au! BufRead,BufNewFile .msg.[0-9]*
-        \ if getline(1) =~ '^From .\+ignored\.$' | set ft=mail | endif
+        \ if getline(1) =~ '^From .\+ignored\.$' | set ft=gitsendemail | endif
 augroup END