You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
EmacsLisp
16 lines
326 B
EmacsLisp
;;; stitchers.el --- Stitching pattern mode -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
(require 'cell)
|
|
|
|
|
|
(cl-defun stitchers-mode ()
|
|
"Major mode for editing stitching patterns."
|
|
(message "Hello"))
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.sel\\'" . stitchers-mode))
|
|
|
|
(provide 'stitchers)
|
|
;;; stitchers.el ends here
|