-
Getting this error `Symbol's function definition is void: defun*`
Emacs version: 30.0.50.163757-1.
Thanks.
-
I want `org-back-to-heading` to only be called if `avy-jump` has succeeded.
```
(defun night/avy-goto-org-header ()
(interactive)
(when (avy-jump "^\*+ ")
(org-back-to-heading)))…
-
### Evaluation commands:
I think the whole evaluation system could be effectively narrowed to 4 versatile functions:
1. `send-region-fold-or-section-or-defun-or-paragraph` (no output by default)
2. `…
-
First off, thanks for writing ein. It is fantastic emacs mode that I have spent countless hours benefiting from. Now my feature request:
Emacs Clojure developers benefit from a wonderful emacs comman…
-
## latex
;; Text background colour after 80 column
(defun latex-mode-theme-hook ()
(require 'color-theme)
(font-lock-debug-fontify))
(add-hook 'latex-mode-hook
'latex-mode-theme-hook)
-
small improvement to your code: in Common Lisp setting a variable is a different operation from defining it.
```
(defun check-collision-all (item)
(setf collides nil)
(loop
:for elem :i…
lispm updated
5 years ago
-
老师你好:
很高兴学习你的课程,按你视频上所讲。我也实现了一个版本:代码如下:
company-jstags.el
```lisp
(require 'my-js-keywords)
;; prefix: 输入的信息
;; 该方法用过滤符合条件的正则
(defun my/get-input-format-regexp (prefix)
(let* ((str…
-
Since rtags can already display full symbol info at point, it is easy to add integration with Eldoc. Here is an Elisp snippet that I whipped out quickly to get it done:
```elisp
(defun rtags-eld…
tuhdo updated
6 years ago
-
Is it possible to have a keybinding to directly jump to nth window? Most of the time I have few window splits that I want to navigate between.
I tried sending char to ace-window but it's a blocking…
-
I am using priorities only on PROJ headings but I want the priorities to be reflected on the children headings.
The feature I'd like would be priority inheritance but it seems that org-mode does not …