crux

March 14, 2026 · View on GitHub

License GPL 3 CI MELPA MELPA Stable

crux

A Collection of Ridiculously Useful eXtensions for Emacs. crux bundles many useful interactive commands to enhance your overall Emacs experience.

Most of the crux commands are related to the editing experience, but there are also a bunch of utility commands that are just very useful to have (e.g. crux-open-with and crux-reopen-as-root).

Origins of crux

Many of the functions in crux started life as blog posts on Emacs Redux, then were included in Emacs Prelude, before finally being extracted to crux. You can see a full list of blog posts on functions in crux on the tags page.

Installation

Available on all major package.el community maintained repos - MELPA Stable and MELPA repos.

MELPA Stable is recommended as it has the latest stable version. MELPA has a development snapshot for users who don't mind breakage but don't want to run from a git checkout.

You can install crux using the following command:

M-x package-install [RET] crux [RET]

If the installation doesn't work try refreshing the package list:

M-x package-refresh-contents

Alternatively, you can add the following code to your Emacs config:

(unless (package-installed-p 'crux)
  (package-refresh-contents)
  (package-install 'crux))

Keybindings

crux doesn't setup any keybindings for its commands out-of-the-box. There are several reasons for this:

  • Most users probably won't need all the commands, so it'd be an overkill to define a minor mode consuming a lot of valuable keybindings
  • Many of the optimal keybindings are in the user space anyways (e.g. C-c some-letter)
  • Everyone has their own preferences when it comes to keybindings

Here's the list of some suggested keybindings. Feel free to bind individual commands to whatever keybindings you prefer.

CommandSuggested Keybinding(s)Description
crux-open-withC-c oOpen the currently visited file with an external program.
crux-smart-kill-lineC-k or Super-kFirst kill to end of line, then kill the whole line.
crux-smart-open-line-aboveC-S-RET or Super-oInsert an empty line above the current line and indent it properly.
crux-smart-open-lineS-RET or M-oInsert an empty line and indent it properly (as in most IDEs).
crux-cleanup-buffer-or-regionC-c nFix indentation in buffer and strip whitespace.
crux-recentf-find-fileC-c f or Super-rOpen recently visited file.
crux-recentf-find-directoryC-c FOpen recently visited directory.
crux-view-urlC-c uOpen a new buffer containing the contents of URL.
crux-eval-and-replaceC-c eEval a bit of Emacs Lisp code and replace it with its result.
crux-transpose-windowsC-x 4 tTranspose the buffers between two windows.
crux-delete-file-and-bufferC-c DDelete current file and buffer.
crux-copy-file-preserve-attributesC-c cCopy current file with file attributes preserved
crux-duplicate-current-line-or-regionC-c dDuplicate the current line (or region).
crux-duplicate-and-comment-current-line-or-regionC-c M-dDuplicate and comment the current line (or region).
crux-rename-file-and-bufferC-c rRename the current buffer and its visiting file if any.
crux-visit-term-bufferC-c tOpen a terminal emulator (ansi-term).
crux-visit-shell-bufferC-c zOpen a shell buffer (eshell).
crux-kill-other-buffersC-c kKill all open buffers except the one you're currently in.
crux-indent-defunC-M zIndent the definition at point.
crux-indent-rigidly-and-copy-to-clipboardC-c TABIndent and copy region to clipboard
crux-sudo-editC-c sEdit currently visited file as root.
crux-find-user-init-fileC-c IOpen user's init file.
crux-find-user-custom-fileC-c ,Open user's custom file.
crux-find-shell-init-fileC-c SOpen shell's init file.
crux-find-current-directory-dir-locals-fileC-c lOpen current directory's .dir-locals.el file.
crux-top-join-lineSuper-j or C-^Join lines
crux-kill-whole-lineSuper-kKill whole line
crux-kill-line-backwardsC-BackspaceKill line backwards
crux-kill-and-join-forwardC-S-Backspace or C-kIf at end of line, join with following; otherwise kill line.
crux-kill-buffer-truenameC-c PKill absolute path of file visited in current buffer.
crux-ispell-word-then-abbrevC-c iFix word using ispell and then save to abbrev.
crux-upcase-regionC-x C-uupcase-region when transient-mark-mode is on and region is active.
crux-downcase-regionC-x C-ldowncase-region when transient-mark-mode is on and region is active.
crux-capitalize-regionC-x M-ccapitalize-region when transient-mark-mode is on and region is active.
crux-switch-to-previous-bufferC-c bSwitch to previously open buffer. Repeated calls toggle between the two most recent buffers.
crux-other-window-or-switch-bufferM-oSelect other window, or switch to most recent buffer if only one window.
crux-move-beginning-of-lineC-aMove point to first non-whitespace character, or to the beginning of the line.
crux-insert-dateC-c d tInsert a timestamp according to locale's date and time format.
crux-recompile-initByte-compile all your Emacs init files.
crux-create-scratch-bufferCreate a new scratch buffer.
crux-keyboard-quit-dwimC-gDo-What-I-Mean keyboard-quit. Closes the minibuffer or completions buffer even without focusing it.

Here's how you'd bind some of the commands to keycombos:

(global-set-key [remap move-beginning-of-line] #'crux-move-beginning-of-line)
(global-set-key (kbd "C-c o") #'crux-open-with)
(global-set-key [(shift return)] #'crux-smart-open-line)
(global-set-key (kbd "s-r") #'crux-recentf-find-file)
(global-set-key (kbd "C-<backspace>") #'crux-kill-line-backwards)
(global-set-key [remap kill-whole-line] #'crux-kill-whole-line)
(global-set-key [remap keyboard-quit] #'crux-keyboard-quit-dwim)

For crux-ispell-word-then-abbrev to be most effective you'll also need to add this to your config:

(setq save-abbrevs 'silently)
(setq-default abbrev-mode t)

Using the bundled advices

crux ships with some handy advice that can enhance the operation of existing commands.

(crux-with-region-or-buffer)

You can use crux-with-region-or-buffer to make a command acting normally on a region to operate on the entire buffer in the absence of a region. Here are a few examples you can stuff in your config:

(crux-with-region-or-buffer indent-region)
(crux-with-region-or-buffer untabify)

(crux-with-region-or-line)

Likewise, you can use crux-with-region-or-line to make a command alternately act on the current line if the mark is not active:

(crux-with-region-or-line comment-or-uncomment-region)

(crux-with-region-or-sexp-or-line)

Similarly, crux-with-region-or-sexp-or-line makes a command that acts on the active region, or else the current list (or string), or finally the current line:

(crux-with-region-or-sexp-or-line kill-region)

(crux-with-region-or-point-to-eol)

Sometimes you might want to act on the point until the end of the current line, rather than the whole line, in the absence of a region:

(crux-with-region-or-point-to-eol kill-ring-save)

Minor modes

(crux-reopen-as-root-mode)

Crux provides a crux-reopen-as-root command for reopening a file as root. This global minor mode changes find-file so all root files are automatically opened as root.

License

Copyright © 2015-2025 Bozhidar Batsov and contributors.

Distributed under the GNU General Public License; type C-h C-c to view it.