-
Hi there,
Just saw your post on /r/emacs, and this looks great! Can't wait to try it.
I have an idea: I have this code which I use to enclose regions in Org blocks and change Org block types, and i…
-
Hi,
Is it possible (or the goal) in erudite to capture and print the output of a function, akin to org mode ?
I'm imagining:
```
#| The latest news are:
@capture
#|
(defun latest-news (…
-
I patch lsp-mode to diplay the peek ui in a childframe:
```
(defun lsp-ui-peek--peek-display (src1 src2)
(-let* ((win-width (frame-width))
(lsp-ui-peek-list-width (/ (frame-width…
-
```
(defun test1()
(let ((a '(0 0)))
(setf (elt a 0) (+ 1 (elt a 0)))
a))
```
以上のように`test1`関数を定義して、それを2回以上呼び出すと、下のように返り値がおかしくなります。
```
1.irteusgl$ test1
(1 0)
2.irteusgl$ test1
(2…
-
```
(defun test (uri)
(let ((u (parse-uri uri)))
(puri:render-uri u t)
(terpri)
(setf (puri:uri-parsed-path u)
(puri:uri-parsed-path u))
(puri:render-uri u t)
(terpri))…
-
We have debugger support since a few months, and it works, but the UX could use some more refinement.
Clearing breakpoints is tedious at the moment at you have to go to every line with a breakpoint…
-
![image](https://user-images.githubusercontent.com/36224762/118396836-9b19a280-b666-11eb-9d6c-535a7f982d39.png)
I have this function which applies the text properties correctly to the result blocks…
-
My configuration is the following: Debian Testing with kernel 5.19.0, g++ 12.2.0, and SBCL 2.2.3.
I use the SparQ version from the master branch from this repository.
I am trying to use constraint…
-
that's could be very convenience
-
First off thanks again for putting this package together.
I wrote a completing-read interface for quick access to usernames and passwords that I think may be of more broad interest. In comparison …