2014-04-17 00:54:23 -07:00
|
|
|
;;; screen.el --- terminal initialization for screen and tmux -*- lexical-binding: t -*-
|
2016-01-01 01:16:19 -08:00
|
|
|
;; Copyright (C) 1995, 2001-2016 Free Software Foundation, Inc.
|
2012-05-02 13:38:01 +02:00
|
|
|
|
2015-05-03 22:24:20 -04:00
|
|
|
(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."
|
2016-01-12 20:06:49 -05:00
|
|
|
:version "25.1"
|
2015-05-03 22:24:20 -04:00
|
|
|
:type xterm--extra-capabilities-type
|
|
|
|
:group 'xterm)
|
|
|
|
|
2011-02-27 16:26:22 -05:00
|
|
|
(defun terminal-init-screen ()
|
|
|
|
"Terminal initialization function for screen."
|
2015-05-03 22:24:20 -04:00
|
|
|
;; 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")))
|
2011-02-27 16:26:22 -05:00
|
|
|
|
|
|
|
;; screen.el ends here
|