Skip to content

Commit d50c7fd

Browse files
committed
feat(on-demand): add support for SmallTalk
1 parent e11138d commit d50c7fd

File tree

2 files changed

+26
-14
lines changed

2 files changed

+26
-14
lines changed

core/me-loaddefs.el

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,6 @@
66
;;; Code:
77

88

9-
10-
;;; Generated autoloads from ../elisp/goto-last-change.el
11-
12-
(autoload 'goto-last-change "../elisp/goto-last-change" "\
13-
Set point to the position of the last change.
14-
15-
Consecutive calls set point to the position of the previous changes.
16-
With a prefix arg (optional arg MARK-POINT non-nil), this will set mark
17-
so \\[exchange-point-and-mark] will return point to the current
18-
position.
19-
20-
(fn &optional MARK-POINT)" t)
21-
(register-definition-prefixes "../elisp/goto-last-change" '("goto-last-change-"))
22-
239

2410
;;; Generated autoloads from ../modules/on-demand/me-agda.el
2511

@@ -839,6 +825,11 @@ Show the list of declared external dependencies." t)
839825

840826
(minemacs-register-on-demand-module 'me-selinux-policy :auto-mode '(("\\.te\\'" . selinuxpolicy-mode)))
841827

828+
829+
;;; Generated autoloads from ../modules/on-demand/me-smalltalk.el
830+
831+
(minemacs-register-on-demand-module 'me-smalltalk :auto-mode '(("\\.st\\'" . smalltalk-mode)))
832+
842833

843834
;;; Generated autoloads from ../modules/on-demand/me-sml.el
844835

modules/on-demand/me-smalltalk.el

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
;;; me-smalltalk.el --- SmallTalk -*- lexical-binding: t; -*-
2+
3+
;; Copyright (C) 2022-2024 Abdelhak Bougouffa
4+
5+
;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")
6+
7+
;;; Commentary:
8+
9+
;;; Code:
10+
11+
;;;###autoload
12+
(minemacs-register-on-demand-module 'me-smalltalk
13+
:auto-mode '(("\\.st\\'" . smalltalk-mode)))
14+
15+
16+
(use-package smalltalk-mode
17+
:straight t)
18+
19+
20+
(provide 'on-demand/me-smalltalk)
21+
;;; me-smalltalk.el ends here

0 commit comments

Comments
 (0)