mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
Add support for the kmscon terminal emulator
* lisp/term/kmscon.el: New file. (Bug#81428)
This commit is contained in:
parent
96e2a7ff0d
commit
b54ef91209
15
lisp/term/kmscon.el
Normal file
15
lisp/term/kmscon.el
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
;;; kmscon.el -*- lexical-binding:t -*-
|
||||
|
||||
;; Copyright (C) 2026 Free Software Foundation, Inc.
|
||||
|
||||
(require 'term/xterm)
|
||||
|
||||
(defun terminal-init-kmscon ()
|
||||
"Terminal initialization function for kmscon."
|
||||
|
||||
;; kmscon supports 24-bit color mode.
|
||||
(xterm-register-default-colors xterm-standard-colors))
|
||||
|
||||
(provide 'term/kmscon)
|
||||
|
||||
;;; kmscon.el ends here
|
||||
Loading…
Reference in a new issue