Add core-debug + realgud universal debugging platform
This commit is contained in:
parent
bbde8f2c70
commit
1cd492d301
7 changed files with 127 additions and 2 deletions
|
@ -125,5 +125,14 @@
|
|||
(user-error
|
||||
(evil-ex-pattern-update-ex-info nil (format "?%s" lossage))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun narf/evil-ex-undefine-cmd (cmd)
|
||||
(if (string-match "^[^][]*\\(\\[\\(.*\\)\\]\\)[^][]*$" cmd)
|
||||
(let ((abbrev (replace-match "" nil t cmd 1))
|
||||
(full (replace-match "\\2" nil nil cmd 1)))
|
||||
(setq evil-ex-commands (delq (assoc full evil-ex-commands) evil-ex-commands))
|
||||
(setq evil-ex-commands (delq (assoc abbrev evil-ex-commands) evil-ex-commands)))
|
||||
(setq evil-ex-commands (delq (assoc cmd evil-ex-commands) evil-ex-commands))))
|
||||
|
||||
(provide 'defuns-evil)
|
||||
;;; defuns-evil.el ends here
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue