Ackerley Tng

Results 39 comments of Ackerley Tng

I've merged some of the functions as you suggested and updated the PR. I think further inlining of functions or making functions inner functions will probably not improve readability. Hope...

Oh I found a fix somewhere else on the internet a few days ago! It's because I have menu bar set to off in my config, and osx's menu bar...

I can also confirm, turning on `jit-lock-debug-mode` solves it. Here's my profiler report before turning off `jit-lock-debug-mode`: ``` Samples % Function 1359 65% - redisplay_internal (C function) 1359 65% -...

It seems like `jit-lock-debug-mode` isn't actually a workaround. It effectively turns *off* highlighting, which improves performance at the cost of functionality.

I have to get to something else so I can't bisect to find the right setting, but one of these four `defcustom`s fixed it for me: ``` (use-package markdown-mode :ensure...

If there are `^`s or `@`s in the `EAP-PEAP-Phase2-Identity` or `EAP-PEAP-Phase2-Password`, will those need to be encoded or are quotes necessary?

I'm trying to implement something like helm-projectile-ag (or rg/grep, etc), and I believe having being able to dynamically generate the completion list would be nice too! For now, I have...

Here's my implementation, which prompts for a search input if it there isn't anything marked or at the cursor https://gist.github.com/ackerleytng/290c29ac951c18d859593a9414f88fe7 I think in terms of UX it isn't that bad...

Yes, the search string step (first step) is completely separate from the searching and filtering (second step). I'm not actually using anything from consult though - the magic of consult...