projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aaa7ce5
)
Add term/st.el (Bug#33182)
author
Stefan Kangas
<stefankangas@gmail.com>
Thu, 3 Oct 2019 00:46:44 +0000
(
02:46
+0200)
committer
Stefan Kangas
<stefankangas@gmail.com>
Mon, 10 Aug 2020 12:29:57 +0000
(14:29 +0200)
This is a copy of term/konsole.el with konsole -> st.
* lisp/term/st.el: New file.
lisp/term/st.el
[new file with mode: 0644]
patch
|
blob
diff --git a/lisp/term/st.el
b/lisp/term/st.el
new file mode 100644
(file)
index 0000000..
3a15576
--- /dev/null
+++ b/
lisp/term/st.el
@@ -0,0
+1,12
@@
+;;; st.el --- terminal initialization for st -*- lexical-binding:t -*-
+;; Copyright (C) 2020 Free Software Foundation, Inc.
+
+(require 'term/xterm)
+
+(defun terminal-init-st ()
+ "Terminal initialization function for st."
+ (tty-run-terminal-initialization (selected-frame) "xterm"))
+
+(provide 'term/st)
+
+;; st.el ends here