> Just a technical note: please consider diff -u or
> diff -c for patches. It provides more context and
> also helps in case the hunk moved in the meantime.
Ahhh ... the -u is what I was looking for ... couldn't think of it.
I'll remember that from now on, thanks!
- J.
--~--~-~--~~-
Hi,
On 23 Okt., 14:48, "J. McConnell" <[EMAIL PROTECTED]> wrote:
> Here's a tiny patch against the VimClojure syntax file to allow Vim to
> recognize BigDecimal literals (numbers suffixed with "M"):
>
> kant[~/.vim/syntax]$ diff clojure.vim.orig clojure.vim
> 162c162
> < syn match clojureNumber
Here's a tiny patch against the VimClojure syntax file to allow Vim to
recognize BigDecimal literals (numbers suffixed with "M"):
kant[~/.vim/syntax]$ diff clojure.vim.orig clojure.vim
162c162
< syn match clojureNumber "\<-\?[0-9]\+\>"
---
> syn match clojureNumber "\<-\?[0-9]\+M\?\>"
Hope s