mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-30 09:00:31 -08:00
* lisp/electric.el (electric-quote-comment) (electric-quote-string, electric-quote-paragraph): * lisp/epg-config.el (epg-gpgconf-program): * lisp/rect.el (rectangle-preview): * lisp/emacs-lisp/check-declare.el (check-declare-ext-errors): * lisp/emacs-lisp/package.el (package-selected-packages) (package-hidden-regexps): * lisp/erc/erc.el (erc-network-hide-list, erc-channel-hide-list): * lisp/eshell/em-term.el (eshell-destroy-buffer-when-process-dies): * lisp/gnus/mml-sec.el (mml1991-signers, mml2015-signers) (mml-smime-signers, mml1991-encrypt-to-self, mml2015-encrypt-to-self) (mml-smime-encrypt-to-self, mml2015-sign-with-sender) (mml-smime-sign-with-sender, mml2015-always-trust) (mml-secure-fail-when-key-problem, mml-secure-key-preferences): * lisp/net/browse-url.el (browse-url-conkeror-new-window-is-buffer) (browse-url-conkeror-arguments): * lisp/net/newst-reader.el (newsticker-download-logos): * lisp/progmodes/gud.el (gud-guiler-command-name): * lisp/progmodes/prog-mode.el (prettify-symbols-unprettify-at-point): * lisp/progmodes/project.el (project-vc): * lisp/progmodes/python.el (python-indent-guess-indent-offset-verbose) (python-shell-remote-exec-path, python-shell-first-prompt-hook) (python-shell-completion-native-disabled-interpreters) (python-shell-completion-native-enable) (python-shell-completion-native-output-timeout) (python-shell-completion-native-try-output-timeout): * lisp/progmodes/xref.el (xref): * lisp/term/screen.el (xterm-screen-extra-capabilities): * lisp/term/xterm.el (xterm-max-cut-length): Add missing version tags.
23 lines
1,013 B
EmacsLisp
23 lines
1,013 B
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")))
|
|
|
|
;; screen.el ends here
|