summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-07Add global handling and key themes in configglobalandkeythemesJames Nguyen
2022-06-06Take out occur compatibility codeJames Nguyen
2022-06-06Change package-requires to 26.3James Nguyen
25 was already deprecated a year ago: https://github.com/emacs-evil/evil-collection/pull/508/files
2022-06-06TweakJames Nguyen
2022-06-06Add J for Info-menuJames Nguyen
2022-06-06Update readmeJames Nguyen
2022-06-06Add headerJames Nguyen
2022-06-05snake: initial supportFarzin Firouzi
2022-06-06Add evil-collection-setup, a way to defer package loadingJames Nguyen
2022-06-04Fix quotingJames Nguyen
2022-06-04Try to fix lispy and company single quotesJames Nguyen
2022-06-04vterm: remove trailing whitespaceJakub Kadlcik
2022-06-04vterm: when deleting command with `dd`, reset cursor after promptJakub Kadlcik
The original `evil-first-non-blank` isn't usable because the beginning of the prompt is the first non-blank character. Strangely enough, `vterm-beginning-of-line` didn't work either.
2022-06-01Add slash to snippetJames Nguyen
2022-06-01vterm: change "x" to evil-delete-charQuang Luong
2022-06-01Correct cursor position when evil-append in vtermQuang Luong
2022-05-31Add bug link0.0.8James Nguyen
2022-05-31Fix quotingJames Nguyen
2022-05-31Attempt to fix CI for CI error: void function seq-intoJames Nguyen
Error: void-function (seq-into) mapbacktrace(#f(compiled-function (evald func args flags) #<bytecode -0xc4fdb87c8512f81>)) debug-early-backtrace() debug-early(error (void-function seq-into)) seq-into("\32" vector) edmacro-parse-keys("C-z" nil) read-kbd-macro("C-z") (let ((old-key (read-kbd-macro (if (boundp 'evil-toggle-key) evil-toggle-key "C-z"))) (key (read-kbd-macro key))) (with-no-warnings (let ((--dolist-tail-- '((evil-motion-state-map evil-emacs-state) (evil-insert-state-map evil-emacs-state) (evil-emacs-state-map evil-exit-emacs-state)))) (while --dolist-tail-- (let ((pair (car --dolist-tail--))) (if (boundp (car pair)) (progn (let ((map (symbol-value (car pair))) (fun (car (cdr pair)))) (if (keymapp map) (progn (define-key map key fun) (define-key map old-key nil)))))) (setq --dolist-tail-- (cdr --dolist-tail--))))))) evil-set-toggle-key("C-z") (closure (dabbrev-case-distinction dabbrev-search-these-buffers-only t) (sym value) (evil-set-toggle-key value) (set-default sym value))(evil-toggle-key "C-z") custom-initialize-reset(evil-toggle-key (funcall #'(closure (dabbrev-case-distinction dabbrev-search-these-buffers-only t) nil "" "C-z"))) custom-declare-variable(evil-toggle-key (funcall #'(closure (dabbrev-case-distinction dabbrev-search-these-buffers-only t) nil "" "C-z")) "The key used to change to and from Emacs state.\nMust be readable by `read-kbd-macro'. For example: \"C-z\"." :type string :group evil :set (closure (dabbrev-case-distinction dabbrev-search-these-buffers-only t) (sym value) (evil-set-toggle-key value) (set-default sym value))) eval-buffer(#<buffer *load*-269510> nil "/Users/james/.emacs.d/straight/repos/evil-collection/.cask/29.0/elpa/evil-20220518.859/evil-vars.el" nil t) load-with-code-conversion("/Users/james/.emacs.d/straight/repos/evil-collection/.cask/29.0/elpa/evil-20220518.859/evil-vars.el" "/Users/james/.emacs.d/straight/repos/evil-collection/.cask/29.0/elpa/evil-20220518.859/evil-vars.el" nil t) require(evil-vars) byte-code("\302\303!\210\302\304!\210\302\305!\210\302\306!\210\302\307!\210\302\310!\210\302\311!\210\302\312!\210\302\313!\210\302\314!\210\302\315!\210\302\316!\210\302\317!\210\10\203<\0\302\320!\210\11\203D\0\302\321!\210\322\323!\210\324\325!\207" [evil-want-integration evil-want-keybinding require evil-vars evil-common evil-core evil-states evil-repeat evil-macros evil-search evil-ex evil-digraphs evil-types evil-commands evil-jumps evil-maps evil-integration evil-keybindings run-hooks evil-after-load-hook provide evil] 2) require(evil) eval-buffer(#<buffer *load*-174914> nil "/Users/james/.emacs.d/straight/repos/evil-collection/evil-collection.el" nil t) load-with-code-conversion("/Users/james/.emacs.d/straight/repos/evil-collection/evil-collection.el" "/Users/james/.emacs.d/straight/repos/evil-collection/evil-collection.el" nil t) require(evil-collection) eval-buffer(#<buffer *load*> nil "/Users/james/.emacs.d/straight/repos/evil-collection/test/evil-collection-magit-tests.el" nil t) load-with-code-conversion("/Users/james/.emacs.d/straight/repos/evil-collection/test/evil-collection-magit-tests.el" "/Users/james/.emacs.d/straight/repos/evil-collection/test/evil-collection-magit-tests.el" nil t) load("evil-collection-magit-tests.el" nil t) command-line-1(("-L" "." "-L" "./test" "-l" "evil-collection-magit-tests.el" "-f" "ert-run-tests-batch")) command-line() normal-top-level() Symbol's function definition is void: seq-into
2022-05-30Change linkJames Nguyen
2022-05-30Rename workflow to CIJames Nguyen
2022-05-30Add workflow_dispatch to CIJames Nguyen
2022-05-30Bind [S-tab] insteadJames Nguyen
2022-05-28[Corfu]: Fix more compile errorsJames Nguyen
2022-05-28[Corfu]: Define varJames Nguyen
2022-05-28Try to print emacs versionJames Nguyen
2022-05-28Add key themes to corfuJames Nguyen
There should be no functional change to users here unless they set evil-collection-corfu-themes to something other than '(default). It might be worth making this key-theme a global custom variable evil-collection-key-themes instead and using a namespaced corfu symbol instead. e.g. (defcustom evil-collection-key-themes '(corfu-default)) so that users will only have to know one variable to customize.
2022-05-28Add function to check if key can be boundJames Nguyen
2022-05-28Update readmeJames Nguyen
2022-05-28Fix telega function namesVonfry
2022-05-28Use C-n and C-p for navigation in xrefTroy Hinckley
2022-05-28Add a section for emacs-q recipeJames Nguyen
2022-05-28[Corfu] Use normal state after pressing ESCJames Nguyen
2022-05-28[mpdel] Modify song seek keybindings from three to two keysVonfry
2022-05-23[Magit]: Add new customs to bind $ and 0James Nguyen
2022-05-23dired: separate definition of dired-x bindingsFrédéric Giquel
2022-05-21[xwidget] Silence compilerJames Nguyen
2022-05-21[xwidget] Add X (from vimium) to restore last closed tabJames Nguyen
2022-05-21[xwidget] Tweak prompt when switching to tabJames Nguyen
2022-05-21[xwidget] Add additional evil style bindingsJames Nguyen
2022-05-21[xwidget] Bind y to copy selectionJames Nguyen
2022-05-21[xwidget] Tweak prompt when creating new tabJames Nguyen
2022-05-21evil-collection-ebuku: Add bindings for new functions.Alexis
* ebuku-copy-title * ebuku-copy-index
2022-05-21Bind ; to lispy-commment in special modeJames Nguyen
2022-05-16Bind `H` to `realgud:cmd-until-here`Dickby
2022-05-14add ebuku to supported modesCosmosAtlas
2022-05-05compile: bind TAB and S-TAB to compilation-{next,previous}-errorDavid Florness
Currently, TAB is bound to evil-jump-forward, which isn't useful in compile-mode.
2022-05-02vterm: fix paste-before and add paste-after commandJakub Kadlcik
The `vterm-yank` that is currently bound to `p` actually pastes before the cursor, so I am rebinding it to `P` and adding a function for pasting after the cursor.
2022-05-02vterm: use ^ for jumping at the beginning of the command but after promptJakub Kadlcik
We have `0` for jumping at the very first character of the current line and `^` for jumping to the non-blank character. It is useful to keep this distinction in `vterm` buffers. However, it doesn't make much sense in the command part. Because we have a prompt, both of the commands jump to the very first character. I think it would be more useful to change `^` to jump to the first non-blank character after the prompt.
2022-04-30Add some repolist bindingsJames Nguyen