emacs-config/lisp/ti-config/ti-asm.el
2026-04-01 17:17:08 -05:00

37 lines
1.1 KiB
EmacsLisp

;;; ti-asm.el --- -*- lexical-binding: t -*-
;; Copyright (C) 2026 Benson Chu
;; Author: Benson Chu <bensonchu457@gmail.com>
;; Created: [2026-04-01 17:07]
;; This file is not part of GNU Emacs
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(define-derived-mode ti-asm-mode asm-mode "TI assembly"
"")
(defun ti-asm-truncate-lines ()
(toggle-truncate-lines t))
(add-hook 'ti-asm-mode-hook
#'ti-asm-truncate-lines)
(provide 'ti-asm)
;;; ti-asm.el ends here