Nick Drozd

Results 57 issues of Nick Drozd

```emacs-lisp (tui-define-component tui-random :get-initial-state (lambda () `(:current-number ,(random 100))) :render (lambda () (tui-let (&state current-number) (tui-div (tui-line "Random number: " current-number) (tui-link :target (lambda () (tui--set-state component `(:current-number ,(number-to-string (random...

Here is a yappi graph of Pylint running against `pycodestyle.py`: ![yappi](https://user-images.githubusercontent.com/17630138/44693373-080b2b00-aa2d-11e8-9a20-e5e2b4058d27.png) The numbers in the boxes are (1) the percentage of time spent in that function including its subcalls, (2)...

topic-performance
Discussion 🤔

Sometimes you can't or don't want to use functions from `f`, `s`, etc. In those cases it would be nice to be able to restrict `suggest` output to just builtin...

I read your recent blog post about key bindings and ran through the "guru test" with my username (`C-n C-i C-c C-k`, etc). Then I ran through it with `M-`...

@ebpa put me on to [Refine](https://github.com/Wilfred/refine), which is a nice tool. What would be even nicer is to be able to use it right in a Helpful buffer. Currently there...

Here's the callees list for `fill-paragrah`: ``` Functions called by fill-paragraph: = barf-if-buffer-read-only buffer-hash buffer-modified-p concat current-buffer eq equal fill-comment-paragraph fill-forward-paragraph fill-region fill-region-as-paragraph funcall goto-char list minibufferp move-to-left-margin not point...

#### `helpful-callable` output ``` gensym is a function alias for cl-gensym, defined in cl-macs.el.gz. Function Signature (gensym &optional PREFIX) Function Documentation Generate a new uninterned symbol. The name is made...

Just wondering if you've thought at all about creating a `helpful` analogue of `describe-mode`. Personally I find the `describe-mode` layout pretty ugly, and I would welcome an upgrade. I don't...

Here's the documentation for `magit-branch-pull-request`: ``` Function Signature (magit-branch-pull-request PR) Function Documentation Create and configure a new branch from a pull-request. Please see the manual for more information. ``` Not...

In my config I have ```emacs-lisp (add-to-list 'completion-ignored-extensions ".ibc") (add-to-list 'dired-omit-extensions ".ibc") ``` but that seems like something `idris-mode` might take care of itself. There are probably other similar lists...