Wilfred Hughes

Results 332 issues of Wilfred Hughes

The result looks like this: ![smex_keybindings](https://cloud.githubusercontent.com/assets/70800/11160837/b72fc642-8a67-11e5-81af-51d12cefea0a.png) A neat consequence of this is that you can filter by keybindings, not just command names: ![smex_keybindings_completion](https://cloud.githubusercontent.com/assets/70800/11160840/cba548c2-8a67-11e5-9cdb-7eeae3b69057.png) Do let me know what you think....

One feature I miss from helm is being able to see keybindings: ![helm_commands](https://cloud.githubusercontent.com/assets/70800/10119525/88c993b6-6490-11e5-97af-4cc091d234aa.png) 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...