AmaiKinono

Results 26 issues of AmaiKinono

First thank you for this repo, I've learned a lot! I have been using alacritty for a while and I think it may suits your needs: - > image capability...

Here's an example: ``` emacs-lisp (general-def "C-c m" '(set-mark-command :wk "Set Mark")) ;; Remap C-c this way so it works as copy when a region is active (general-def :keymaps 'override...

From here: I tried to simulate `C-c` in emacs state, here's my config: ``` emacs-lisp (general-unbind 'insert "C-x" "C-c" "C-z") (general-def :states 'insert :keymaps 'override "C-c" 'kill-ring-save) ;; I have...

bug

First, I can say this is not a problem of `mini-modeline` alone. I have an old configuration project that doesn't use `mini-modeline` and it has exactly the same problem. But...

This is a somewhat long question, so please be patient. Use `emacs -Q`, and do this (I omitted the load-path configuration): ``` emacs-lisp (require 'avy) (require 'ace-window) (ace-window-display-mode 1) (require...

## Expected behavior In an html file like this: ``` html some|thing ``` call `sp-kill-hybrid-sexp` should give this: ``` html some ``` ## Actual behavior In html-mode: ``` html some...

Here's my recipe for a package called `awesome-tab`: ``` emacs-lisp (straight-override-recipe '(awesome-tab :host github :repo "manateelazycat/awesome-tab" :depth 1 :fork (:host github :repo "AmaiKinono/awesome-tab" :depth full))) ``` When pulling from upstream...

discussion
repository management
ux
fork
git
vc

Currently I don't know what exactly is needed, but there are 2 motivations behind this request, I hope they can guide us. ## resolve relative file name When finding definitions,...

For now, most ctags client tools create tags file using a fixed command line. Users can't customize the command line for different projects. If the command line arguments are recorded...

The goal of this PR is to 1. Separate the modules more clearly to ease the maintainence. 2. Make it easy to create a backend so other tools like GNU...