Tom Davis

Results 10 comments of Tom Davis

No, that's not what I mean. The problem is that `git diff ` compares `` with the working tree; it doesn't spit out the commit's absolute changes (e.g. the diff...

Yeah, I've had to bind it to a key as well. I poked around for a while and this really seems like an issue internal to yasnippet. I could get...

I'm on 2013-10-14. In this version, I actually can't even get snippets with more than two fields to expand properly: Debugger entered--Lisp error: (wrong-type-argument numberp nil) zerop(nil) yas--field-probably-deleted-p([cl-struct-yas--snippet ([cl-struct-yas--field nil...

Yep, same issue here. Anybody know of a patch?

``` #http://boot-clj.com #Tue Sep 20 12:30:29 EDT 2016 BOOT_CLOJURE_NAME=org.clojure/clojure BOOT_CLOJURE_VERSION=1.7.0 BOOT_VERSION=2.6.0 ```

As an aside, I did notice that the dependencies were set properly if I used `(task-options! pom ...)` in the task rather than rely on passing the options to `pom`.

Here's what I came up with. Hopefully it's useful to you! ``` clojure (require '[clojure.java.io :as io] '[clj-pgp.keyring :as keyring] '[byte-streams :refer [to-byte-array]]) (import '[org.bouncycastle.openpgp PGPSignatureGenerator PGPSignatureSubpacketGenerator PGPUtil PGPSignature] '[org.bouncycastle.openpgp.operator.jcajce...

Ensure you supplied the full path to `index.org`, such as `/MobileOrg/index.org`. This resolved "Invalid index.org file provided" for me.

I haven't found one. Honestly, the best thing to do would probably be to just `cat django.snippets >> python.snippets`, not mess with `ft`, and be done with it. I thought...

Sure. I just made this up, but it should give you a good enough idea: ``` # app/models.py from django.db import models class CustomQuerySet(models.query.queryset): pass class CustomManager(models.Manager): def get_query_set(self): return...