extended.go 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Copyright 2020 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. // Package extended contains an extended set of terminal descriptions.
  15. // Applications desiring to have a better chance of Just Working by
  16. // default should include this package. This will significantly increase
  17. // the size of the program.
  18. package extended
  19. import (
  20. // The following imports just register themselves --
  21. // these are the terminal types we aggregate in this package.
  22. _ "github.com/gdamore/tcell/v2/terminfo/a/aixterm"
  23. _ "github.com/gdamore/tcell/v2/terminfo/a/alacritty"
  24. _ "github.com/gdamore/tcell/v2/terminfo/a/ansi"
  25. _ "github.com/gdamore/tcell/v2/terminfo/b/beterm"
  26. _ "github.com/gdamore/tcell/v2/terminfo/c/cygwin"
  27. _ "github.com/gdamore/tcell/v2/terminfo/d/dtterm"
  28. _ "github.com/gdamore/tcell/v2/terminfo/e/emacs"
  29. _ "github.com/gdamore/tcell/v2/terminfo/f/foot"
  30. _ "github.com/gdamore/tcell/v2/terminfo/g/gnome"
  31. _ "github.com/gdamore/tcell/v2/terminfo/h/hpterm"
  32. _ "github.com/gdamore/tcell/v2/terminfo/k/konsole"
  33. _ "github.com/gdamore/tcell/v2/terminfo/k/kterm"
  34. _ "github.com/gdamore/tcell/v2/terminfo/l/linux"
  35. _ "github.com/gdamore/tcell/v2/terminfo/p/pcansi"
  36. _ "github.com/gdamore/tcell/v2/terminfo/r/rxvt"
  37. _ "github.com/gdamore/tcell/v2/terminfo/s/screen"
  38. _ "github.com/gdamore/tcell/v2/terminfo/s/simpleterm"
  39. _ "github.com/gdamore/tcell/v2/terminfo/s/sun"
  40. _ "github.com/gdamore/tcell/v2/terminfo/t/termite"
  41. _ "github.com/gdamore/tcell/v2/terminfo/t/tmux"
  42. _ "github.com/gdamore/tcell/v2/terminfo/v/vt100"
  43. _ "github.com/gdamore/tcell/v2/terminfo/v/vt102"
  44. _ "github.com/gdamore/tcell/v2/terminfo/v/vt220"
  45. _ "github.com/gdamore/tcell/v2/terminfo/v/vt320"
  46. _ "github.com/gdamore/tcell/v2/terminfo/v/vt400"
  47. _ "github.com/gdamore/tcell/v2/terminfo/v/vt420"
  48. _ "github.com/gdamore/tcell/v2/terminfo/v/vt52"
  49. _ "github.com/gdamore/tcell/v2/terminfo/w/wy50"
  50. _ "github.com/gdamore/tcell/v2/terminfo/w/wy60"
  51. _ "github.com/gdamore/tcell/v2/terminfo/w/wy99_ansi"
  52. _ "github.com/gdamore/tcell/v2/terminfo/x/xfce"
  53. _ "github.com/gdamore/tcell/v2/terminfo/x/xterm"
  54. _ "github.com/gdamore/tcell/v2/terminfo/x/xterm_kitty"
  55. _ "github.com/gdamore/tcell/v2/terminfo/x/xterm_termite"
  56. )