zhaojiangbin
zhaojiangbin
An option to format the key bindings as find-file -> C-x C-f This fits well with `which-key-description-order`. Pull requests are welcome as long as the following apply. 1. The issue...
I often need to switch between desktop sessions to work on different projects on daily basis. hl-todo adds noticeable delays to `desktop-read` when restoring sessions, in particular large ones with,...
With the following minimal setup: ``` (use-package magit-todos :load-path "~/CodeWorks/emacs/magit-todos" :commands (magit-todos-mode) :hook (magit-mode . magit-todos-mode) :config (setq magit-todos-recursive t magit-todos-depth 100) :custom (magit-todos-keywords (list "TODO" "FIXME"))) ``` Trying to...
As per discussion at the end of issue [#11](https://github.com/alphapapa/magit-todos/issues/11#issuecomment-401583376). Some ideas of what a popup would be good for: - call `magit-todos-update` (i.e. an action) - toggle the grouping and...
The org buffer to reproduce: ``` * TOC :PROPERTIES: :TOC: :include all :ignore (this) :END: :CONTENTS: :END: * one * ``` Note the last headline has no text. This causes...
See https://github.com/lapce/lapce/pull/481#pullrequestreview-967239975 and https://github.com/lapce/lapce/pull/481#issuecomment-1121609021
Also corrected a couple of spelling errors in the existing function names. I am not sure if this single boolean setting deserves a group by its own. It could have...
In vscode I have the rust-analyzer extension for programming in Rust. This extension has a special command for the Enter key: https://rust-analyzer.github.io/manual.html#on-enter. It requires to have the following binding in...
First of all, thanks for this wonderful extension. Say I want to define a command for the 'v' key, that, depending on how many time I press the key in...
I am imagining something like: ``` elisp (defhydra foo () "foo" ("a" 't :when (pred1)) ("b" 't :when (pred2)) ("c" 't) ("q" nil)) ``` In such a hydra, until their...