mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-09 15:50:21 +00:00
d5e827929c
* lisp/term/AT386.el, lisp/term/bobcat.el, lisp/term/cygwin.el: * lisp/term/internal.el, lisp/term/iris-ansi.el, lisp/term/linux.el: * lisp/term/lk201.el, lisp/term/news.el, lisp/term/ns-win.el: * lisp/term/pc-win.el, lisp/term/rxvt.el, lisp/term/screen.el: * lisp/term/sun.el, lisp/term/tty-colors.el, lisp/term/tvi970.el: * lisp/term/vt100.el, lisp/term/vt200.el, lisp/term/w32-win.el: * lisp/term/w32console.el, lisp/term/wyse50.el, lisp/term/x-win.el: For consistency, provide 'term/name in all files that don't already.
26 lines
1.0 KiB
EmacsLisp
26 lines
1.0 KiB
EmacsLisp
;;; screen.el --- terminal initialization for screen and tmux -*- lexical-binding: t -*-
|
|
;; Copyright (C) 1995, 2001-2016 Free Software Foundation, Inc.
|
|
|
|
(require 'term/xterm)
|
|
|
|
(defcustom xterm-screen-extra-capabilities '(modifyOtherKeys)
|
|
"Extra capabilities supported under \"screen\".
|
|
Some features of screen depend on the terminal emulator in which
|
|
it runs, which can change when the screen session is moved to another tty."
|
|
:version "25.1"
|
|
:type xterm--extra-capabilities-type
|
|
:group 'xterm)
|
|
|
|
(defun terminal-init-screen ()
|
|
"Terminal initialization function for screen."
|
|
;; Treat a screen terminal similar to an xterm, but don't use
|
|
;; xterm-extra-capabilities's `check' setting since that doesn't seem
|
|
;; to work so well (it depends too much on the surrounding terminal
|
|
;; emulator, which can change during the session, bug#20356).
|
|
(let ((xterm-extra-capabilities xterm-screen-extra-capabilities))
|
|
(tty-run-terminal-initialization (selected-frame) "xterm")))
|
|
|
|
(provide 'term/screen)
|
|
|
|
;; screen.el ends here
|