Map "screen" to shell-script-mode

This commit is contained in:
Litvinov Sergey 2012-01-20 18:26:59 +01:00 committed by Eric Schulte
parent 97e8e03eea
commit f92facd890
2 changed files with 7 additions and 1 deletions

View File

@ -153,7 +153,8 @@ but which mess up the display of a snippet in Org exported files.")
(defcustom org-src-lang-modes
'(("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist)
("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql)
("calc" . fundamental) ("C" . c) ("cpp" . c++))
("calc" . fundamental) ("C" . c) ("cpp" . c++)
("screen" . shell-script))
"Alist mapping languages to their major mode.
The key is the language name, the value is the string that should
be inserted as the name of the major mode. For many languages this is

View File

@ -0,0 +1,5 @@
#+Title: a collection of examples for ob-screen tests
#+begin_src screen :session create-tmpdir
mkdir -p $TMPDIR
cd $TMPDIR
#+end_src