nt

A sensible note-taking program
git clone git://git.laack.co/nt.git
Log | Files | Refs | README

extended.go (2653B)


      1 // Copyright 2024 The TCell Authors
      2 //
      3 // Licensed under the Apache License, Version 2.0 (the "License");
      4 // you may not use file except in compliance with the License.
      5 // You may obtain a copy of the license at
      6 //
      7 //    http://www.apache.org/licenses/LICENSE-2.0
      8 //
      9 // Unless required by applicable law or agreed to in writing, software
     10 // distributed under the License is distributed on an "AS IS" BASIS,
     11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 // See the License for the specific language governing permissions and
     13 // limitations under the License.
     14 
     15 // Package extended contains an extended set of terminal descriptions.
     16 // Applications desiring to have a better chance of Just Working by
     17 // default should include this package.  This will significantly increase
     18 // the size of the program.
     19 package extended
     20 
     21 import (
     22 	// The following imports just register themselves --
     23 	// these are the terminal types we aggregate in this package.
     24 	_ "github.com/gdamore/tcell/v2/terminfo/a/aixterm"
     25 	_ "github.com/gdamore/tcell/v2/terminfo/a/alacritty"
     26 	_ "github.com/gdamore/tcell/v2/terminfo/a/ansi"
     27 	_ "github.com/gdamore/tcell/v2/terminfo/b/beterm"
     28 	_ "github.com/gdamore/tcell/v2/terminfo/c/cygwin"
     29 	_ "github.com/gdamore/tcell/v2/terminfo/d/dtterm"
     30 	_ "github.com/gdamore/tcell/v2/terminfo/e/emacs"
     31 	_ "github.com/gdamore/tcell/v2/terminfo/f/foot"
     32 	_ "github.com/gdamore/tcell/v2/terminfo/g/gnome"
     33 	_ "github.com/gdamore/tcell/v2/terminfo/h/hpterm"
     34 	_ "github.com/gdamore/tcell/v2/terminfo/k/konsole"
     35 	_ "github.com/gdamore/tcell/v2/terminfo/k/kterm"
     36 	_ "github.com/gdamore/tcell/v2/terminfo/l/linux"
     37 	_ "github.com/gdamore/tcell/v2/terminfo/p/pcansi"
     38 	_ "github.com/gdamore/tcell/v2/terminfo/r/rxvt"
     39 	_ "github.com/gdamore/tcell/v2/terminfo/s/screen"
     40 	_ "github.com/gdamore/tcell/v2/terminfo/s/simpleterm"
     41 	_ "github.com/gdamore/tcell/v2/terminfo/s/sun"
     42 	_ "github.com/gdamore/tcell/v2/terminfo/t/tmux"
     43 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt100"
     44 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt102"
     45 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt220"
     46 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt320"
     47 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt400"
     48 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt420"
     49 	_ "github.com/gdamore/tcell/v2/terminfo/v/vt52"
     50 	_ "github.com/gdamore/tcell/v2/terminfo/w/wy50"
     51 	_ "github.com/gdamore/tcell/v2/terminfo/w/wy60"
     52 	_ "github.com/gdamore/tcell/v2/terminfo/w/wy99_ansi"
     53 	_ "github.com/gdamore/tcell/v2/terminfo/x/xfce"
     54 	_ "github.com/gdamore/tcell/v2/terminfo/x/xterm"
     55 	_ "github.com/gdamore/tcell/v2/terminfo/x/xterm_ghostty"
     56 	_ "github.com/gdamore/tcell/v2/terminfo/x/xterm_kitty"
     57 )