jeberger
jeberger
Here's what I use (compatible with Git, Mercurial and Subversion): ```lisp (require 'dash) (defun jmb/project-root () "Locate the project root (i.e. where the VCS folder is located) for the currend...
@thomasf > I don't think we should work something overly complicated into this behaviour Note that @belak's solution is actually _simpler_ than the implementation currently used by `use-package`. > If...
@vyp No, it only affects people who use `:ensure` (directly or through `use-package-always-ensure`). People who don't use `package.el` will not be concerned by the existing behaviour nor by the proposed...
@thomasf > a proper solution which doesn't involve guessing about the remote package state might be complicated to implement. There is no guessing involved, updating the list of available packages...
Further testing shows that the problem only manifests for the first few values. If I discard the first 30 calls to `random_choice (t, 4)` and only use the 31st, then...
Note that when seeding a PRNG with _N_ bits of state, it is usually considered good practice to discard at least the first _N_ bits of output in order to...
I've run some tests using the [dieharder](http://www.phy.duke.edu/~rgb/General/dieharder.php) test suite on 4 random number generators: Mersenne Twister, Xoroshiro128+, Splitmix64 and Combined Tausworthe. I've run the following tests: - **straight:** give the...
I've compiled ag from sources using mingw.
> And could you show me your configuration of `helm-ag` ? Here it is: ``` lisp (when (executable-find "ag") (defun jmb/helm-do-ag-at-project-root-or-folder () "Run `helm-do-ag-project-root' or `helm-do-ag' depending on whether a...
Just in case, here is the ag binary I've compiled: https://www.dropbox.com/s/qi6gj7om4x0nv21/ag.zip?dl=0 Some extra information which may be relevant: - I don't have the problem with the same emacs/helm/helm-ag/ag versions on...