├── .github └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── flake.lock ├── flake.nix ├── get-version ├── m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_append_link_flags.m4 ├── ax_check_compile_flag.m4 ├── ax_check_link_flag.m4 └── ax_require_defined.m4 └── src ├── Makefile.am ├── dabbrev.c ├── term.c └── term.h /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/configure.ac -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/flake.nix -------------------------------------------------------------------------------- /get-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/get-version -------------------------------------------------------------------------------- /m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_append_link_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_append_link_flags.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/dabbrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/src/dabbrev.c -------------------------------------------------------------------------------- /src/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/src/term.c -------------------------------------------------------------------------------- /src/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincentbernat/vbeterm/HEAD/src/term.h --------------------------------------------------------------------------------