Noam Postavsky

Results 112 comments of Noam Postavsky

> Firstly, I no longer develop or maintain Rudel. Its new home is http://elpa.gnu.org/packages/rudel.html. This repository is just an archive. Right, sorry, I should have mentioned off the top that...

@rsbowman this should be fixed with yasnippet `0.12.0` or later (released Jul 17, 2017).

> byte-compiled functions do not hash to the same value every time! This looks like a bug in Emacs, `sxhash` treats non-`eq` but `equal` byte-compiled functions differently. ```elisp (let ((obj1...

https://github.com/k1LoW/emacs-cake/blob/a7c9f3bee71eb3865060123d4d98e5397c2f967e/cake.el#L1558-L1559 ``` elisp (defconst cake-snippets-dir (file-name-directory (or (buffer-file-name) load-file-name))) ``` I think the arguments to `or` should be switched around.

> ```emacs-lisp > (noflet ((find-file-noselect (file-name) > (if (string-match-p "^#.*" file-name) > (this-fn "/tmp/mytest") > (this-fn file-name))) > ``` I think this part of the example is wrong: `this-fn` is...

Wouldn't adding a ``` install_emacs: install_gnutls ``` line work?

Not sure how relevant this is since I haven't been following this thread, but > The .git directory is not watched at all with the current code so that shouldn't...

> http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22454 is fixed. It's not "fixed" exactly, I closed it because there was no bug in Emacs: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22454#13 So depending on the filesystem, it's possible that changes inside `.git/`...

Hi, yasnippet maintainer here, coming from joaotavora/yasnippet#785, it seems to me that the problem is that smartparens doesn't handle any hippie expansion that inserts balanced pairs (due to yasnippet internals,...

> check if yasnippet expand was triggered and choose what to do based on that I posted advice doing that here: https://github.com/joaotavora/yasnippet/issues/785#issuecomment-285437447 Wouldn't it be better to search for the...