Wilfred Hughes
Wilfred Hughes
The result looks like this:  A neat consequence of this is that you can filter by keybindings, not just command names:  Do let me know what you think....
One feature I miss from helm is being able to see keybindings:  Could this be added to smex?
Johnny Cache builds a cache key by repeatedly calling `key.update`. This is equivalent to concatenating all the parameters together and generating a hash. As a result, Johnny Cache confuses the...
This fork of pyflakes works better than the original[1], but only the original is available on [http://pypi.python.org/pypi](http://pypi.python.org/pypi). It would be great to see the minor version incremented and the package...
The following code: ``` try: import cPickle as pickle except ImportError: import pickle def foo(): return pickle.dumps ``` Gives the following error: `foo.py:4: redefinition of unused 'pickle' from line 2`....
``` def decorator(func): return func @decorator def defined_twice(): pass @decorator def defined_twice(): pass ``` Calling pyflakes on this: ``` > pyflakes twice.py twice.py:10: redefinition of function 'defined_twice' from line 5...
``` $ docker run -t --entrypoint bash --name example nginx:1.13.1 -c 'ls' bin dev home lib32 libx32 mnt proc run srv tmp var boot etc lib lib64 media opt root...
Enable users to start running common commands (I often just use `overseer-test`) without needing to do `(require 'overseer)`. This is great for discovering commands when first using the package.
When using change-inner with rust-mode, the following code (with `|` as the cursor): ``` rust let issue_list_url = Url::parse(| "https://github.com/rust-lang/rust/issues?labels=E-easy&state=open" ).unwrap(); ``` calling `M-x change-inner (` gives: ``` rust let...