Philippe Vaucher
Philippe Vaucher
Well, what elisp function is `C-S-right` bound to? `C-h k KEYCOMBO` will tell you.
> > ` (translated from )` > > Well this is wrong. Indeed. Not sure what would trigger it tho, maybe some key modifiers?
Heh, actually by me I have the same: ``` (translated from ) runs the command right-word (found in global-map), which is an interactive compiled Lisp function in ‘bindings.el’. ``` Except...
I'm also interested in X support. Do you have a rough guide of what needs to be done for it to move forward (so maybe I can start some PR)?...
> I _am_ a bit worried about two things here: firstly, a combinatorial explosion of emacs builds if we add various feature flags like this, and secondly, the total cache...
What would be good names? `featurefull` and `lightweight`? Also is +100MB really a showstopper? One version is simpler 😉
Related to #49.
@purcell I'm am pretty happy with the latest changes. I disabled X for 23.4 because it needs giflib 4 and it was removed and I don't know how to build...
Same problem here with the following: ``` ruby def show gon.watch.users_count = User.count respond_with @user end ``` Basically, anytime you call `render` then it tries to render twice when the...
@gazay: can't this be fixed in a simple manner in gon? e.g before calling render yourself, you check if it was already called... and add the appropriate params to it?