Namespace most of my custom functions
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Has been cancelled
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Has been cancelled
This commit is contained in:
parent
dd5387cd7e
commit
c2caa56b35
25 changed files with 82 additions and 85 deletions
|
|
@ -63,7 +63,7 @@
|
|||
(setq tab-stop-list (number-sequence tab-width 200 tab-width))
|
||||
|
||||
;; Ensure indentation in steps:
|
||||
(defun set-indent (step)
|
||||
(defun icejam/set-indent (step)
|
||||
"Set indentation to STEP."
|
||||
(interactive "NNumber of columns for one step: ")
|
||||
(setq-local tab-width step)
|
||||
|
|
@ -74,8 +74,14 @@
|
|||
:defer t
|
||||
:config (global-column-enforce-mode t))
|
||||
|
||||
;; Vim-like regex replace with preview in buffer.
|
||||
(use-package visual-regexp :straight t :defer t)
|
||||
;; PCRE to emacs regex translations
|
||||
(use-package pcre2el :straight t)
|
||||
|
||||
;; Visual regexp
|
||||
(use-package visual-regexp-steroids
|
||||
:straight t
|
||||
:requires (pcre2el)
|
||||
:config (setq vr/engine 'pcre2el))
|
||||
|
||||
(provide 'icejam-prog-mode)
|
||||
;;; icejam-prog-mode ends here
|
||||
;;; icejam-prog-mode.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue