Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 382 Bytes

File metadata and controls

11 lines (10 loc) · 382 Bytes

A Emacs package to mimic dot command in vim.

Configure

(unless (package-installed-p 'dot-command)
  (package-vc-install "https://github.com/sychen52/dot-command"))
(use-package dot-command
  :config
  (setq dot-command-neutral-cmds '(your-command-that-you-want-to-ignore))
  (push #'your-command-that-you-want-to-add dot-command-record-cmds))