-
It was pointed out on Zulip that [there is no command to send a top-level expression](https://janet.zulipchat.com/#narrow/channel/409409-editors-and-tooling/topic/Emacs.20.2F.20.28non-vim.29.20Setup.2…
-
Test file:
```
(defun f ()
(format t "f~%"))
(defun test ()
(f))
```
1. `M-x sly`
2. `C-c C-k`
3. Place cursor at call of `f` in function `test`.
4. `M-.`
5. Cursor jumps to `(defun …
-
make a working defun
-
Hi!
Thanks for the awesome project!
I use `beginning-of-defun` (C-M-a) and `end-of-defun` (C-M-e) frequently to jump to beginning/end of functions. But in flutter mode, they jump to beginning/en…
-
Several times I have found myself wanting the ability to drag a (mode-specific) defun up and down (swapping places with other defuns, not a line at a time). I don't have time to work on this right no…
gvol updated
12 years ago
-
Hey,
I'd like to use defun to construct a conditional decision tree.
Is there any way to visualise it in a tree/graph format?
Thanks
-
Wanting more flexible argument handling, I tried to implement this with `pcase`, but I couldn't get it to match the plist at the end. It was much easier with `-let`, however I ran into a problem that…
-
Hello,
The following code works:
``` elisp
(defun aio-call-process (program &rest args)
(let* ((process (apply #'start-file-process program "*aio-call-process*" program args))
(pro…
-
Hi,
Forgive me if this is covered elsewhere, but I couldn't find any reference to it in the docs or old issues.
Would it be possible to add `compile-defun` support to use-package? For example, …
-
In other modes, e.g. c-mode, beginning-of-defun jumps to the beginning of any definition. For go-mode it works with functions and methods but not for types, variables and constants. Should it work for…