UNPKG

2.05 kBJavaScriptView Raw
1/*
2 Terminal Kit
3
4 Copyright (c) 2009 - 2020 Cédric Ronvel
5
6 The MIT License (MIT)
7
8 Permission is hereby granted, free of charge, to any person obtaining a copy
9 of this software and associated documentation files (the "Software"), to deal
10 in the Software without restriction, including without limitation the rights
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the Software is
13 furnished to do so, subject to the following conditions:
14
15 The above copyright notice and this permission notice shall be included in all
16 copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 SOFTWARE.
25*/
26
27"use strict" ;
28
29
30
31const tree = require( 'tree-kit' ) ;
32const xterm256 = require( './xterm-256color.js' ) ;
33const eterm = require( './eterm.js' ) ;
34
35const esc = tree.extend( { own: true } , Object.create( xterm256.esc ) , eterm.esc , {
36 color24bits: { on: '%D%D%D' , na: true } , // not capable
37 bgColor24bits: { on: '%D%D%D' , na: true } // not capable
38} ) ;
39
40
41// So far, we derivate from xterm-256color and then just add specific things (owned properties)
42// of Eterm, thus we achieve a clean inheritance model without duplicated code.
43
44module.exports = {
45 esc: esc ,
46 keymap: tree.extend( { own: true } , Object.create( xterm256.keymap ) , eterm.keymap ) ,
47 handler: tree.extend( { own: true } , Object.create( xterm256.handler ) , eterm.handler ) ,
48 support: {
49 deltaEscapeSequence: true ,
50 "256colors": true ,
51 "24bitsColors": false , // DEPRECATED
52 "trueColor": false
53 } ,
54 colorRegister: eterm.colorRegister
55} ;