We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 374d970 + 9136d46 commit 0234a9fCopy full SHA for 0234a9f
asm-blox.el
@@ -3671,10 +3671,13 @@ The following commands are available:
3671
(let ((saved-file-ids (asm-blox--saved-puzzle-ct-ids name)))
3672
(dolist (i saved-file-ids)
3673
(insert
3674
- (propertize (format "[%d]" i)
3675
- 'asm-blox-puzzle-selection-id name
3676
- 'asm-blox-puzzle-selection-filename
3677
- (asm-blox--make-puzzle-idx-file-name name i)))
+ (button-buttonize
+ (propertize (format "[%d]" i)
+ 'asm-blox-puzzle-selection-id name
+ 'asm-blox-puzzle-selection-filename
3678
+ (asm-blox--make-puzzle-idx-file-name name i))
3679
+ (lambda (_)
3680
+ (asm-blox-select-puzzle))))
3681
(insert (propertize " " 'asm-blox-puzzle-selection-id name)))))
3682
(insert "\n")))))
3683
0 commit comments