├── .gitignore ├── .travis.yml ├── BUGS ├── INSTALL ├── Makefile ├── POSIX ├── README ├── RELEASE-2.51 ├── debian ├── .gitignore ├── changelog ├── compat ├── control ├── copyright ├── docs ├── menu ├── postinst ├── prerm ├── rules ├── watch └── xvi.doc-base.help ├── doc ├── .gitignore ├── COPYING ├── Makefile ├── README ├── source.ms └── xvi.1 ├── issues ├── README ├── data │ ├── POSIX-VSC-HOWTO │ ├── POSIX-VSC-aix-01.vrpt.txt │ ├── POSIX-VSC-aix-02.vrpt.txt │ ├── POSIX-VSC-aix-03.vrpt.txt │ ├── POSIX-VSC-aix-04.vrpt.txt │ ├── POSIX-VSC-aix-05.vrpt.txt │ ├── POSIX-VSC-aix-06.vrpt.txt │ ├── POSIX-VSC-ubuntu-01.vrpt.txt │ ├── POSIX-VSC-ubuntu-02.vrpt.txt │ ├── POSIX-VSC-ubuntu-03.vrpt.txt │ ├── POSIX-VSC-ubuntu-04.vrpt.txt │ ├── POSIX-VSC-ubuntu-05.vrpt.txt │ └── POSIX-VSC-ubuntu-06.vrpt.txt └── open │ ├── *-at-start-of-pattern │ ├── POSIX-compliance │ ├── SIGQUIT-char-core-dump │ ├── ^L-on-command-line │ ├── appending-yank-to-unnamed │ ├── arrow-key-aliasing │ ├── colon-@-or-*-with-line-range │ ├── colon-bang-bang │ ├── completion-of-spacey-filenames │ ├── etags-TAGS-files │ ├── global-command-rewrite │ ├── implement-UTF-8 │ ├── implement-abbreviate │ ├── implement-pipe-command-separator │ ├── kill-char-during-input │ ├── line-longer-than-screen │ ├── macros-execute-noisily │ ├── map-ee │ ├── maze-leaves-preserve-file │ ├── move-in-gv │ ├── multiple-files-open-at-line-2 │ ├── netbsd-tests-skipped │ ├── opensuse-check-fails │ ├── page-up-dowm │ ├── per-buffer-parameters │ ├── redo-F-searches-forwards │ ├── save-after-OOM │ ├── slow-with-long-lines │ ├── special-keycodes-mask-chars │ ├── substitute-newlines-on-rhs │ ├── tab-in-subst-unknown-mark │ ├── tags-check-for-update │ ├── tilde-redo-nocount │ ├── undo-position │ ├── use-sigaction │ ├── vis-control-chars-on-DOS │ └── window-resize-current-line ├── src ├── .gitignore ├── 8086mm.inc ├── alloc.c ├── altstack.c ├── ascii.c ├── ascii.h ├── buffers.c ├── change.h ├── cmd.h ├── cmdline.c ├── cmdmode.c ├── cmdtab.c ├── copying ├── cursor.c ├── defmain.c ├── defscr.c ├── dispmode.c ├── edit.c ├── events.c ├── ex_cmds1.c ├── ex_cmds2.c ├── fileio.c ├── find.c ├── flexbuf.c ├── ibmpc.h ├── ibmpc_a.asm ├── ibmpc_c.c ├── make.sh ├── makefile.386 ├── makefile.aix ├── makefile.bcc ├── makefile.bsd ├── makefile.hpx ├── makefile.lnx ├── makefile.msc ├── makefile.os2 ├── makefile.pos ├── makefile.q2t ├── makefile.q2w ├── makefile.q4t ├── makefile.qc ├── makefile.sol ├── makefile.sun ├── makefile.sv ├── makefile.tc ├── makefile.tos ├── makefile.usg ├── makefile.xen ├── makefile.xwn ├── makefile.zc2 ├── makefile.zc3 ├── map.c ├── mark.c ├── misccmds.c ├── mouse.c ├── movement.c ├── msdos.h ├── msdos_a.asm ├── msdos_c.c ├── normal.c ├── os2vio.c ├── os2vio.h ├── param.c ├── param.h ├── pc386.c ├── pc386.h ├── pipe.c ├── preserve.c ├── ptrfunc.c ├── ptrfunc.h ├── q2tscr.c ├── q2wscr.c ├── qnx.c ├── qnx.h ├── qnx_icon.enc ├── regexp.c ├── regexp.h ├── regmagic.h ├── screen.c ├── search.c ├── signal.c ├── startup.c ├── status.c ├── sunback.c ├── sunfront.c ├── sunview.h ├── tag.c ├── targets.c ├── tcap_scr.c ├── tcapmain.c ├── termcap.h ├── tos.c ├── tos.h ├── tos.lnk ├── undo.c ├── unix.c ├── unix.h ├── update.c ├── version.c ├── vi_cmds.c ├── vi_ops.c ├── virtscr.c ├── virtscr.h ├── windows.c ├── xvi.dsk ├── xvi.h ├── xvi.help ├── xvi.icn ├── xvi.lnk ├── xvi.prj ├── xwnscr.c └── yankput.c └── test ├── Makefile ├── README ├── data ├── hanoi ├── maze.c ├── maze_mac ├── sample.maz └── xorg.conf ├── scripts ├── binder-finder ├── runtests ├── term ├── term_expect ├── tkterm └── virterm └── tests ├── 0000-startup ├── Interrupted ├── N-tilde ├── POSIX-$ ├── Without_ce ├── []-with-ignorecase ├── \u& ├── ^-and-$-in-RE ├── append-to-file ├── append-yank ├── autowrite ├── change-move-not-@ ├── change-to-target-at-BOL ├── cmdline-editing ├── colon-@-or-*-newline ├── crtl-w+u ├── delete-in-wrapped-line ├── delete-infinite-loop ├── delete-word-at-EOF-EOL ├── failed-search-halt-macro ├── grave-mark-restore-posn ├── hanoi ├── insert-redo ├── interrupt-with-^Y ├── literal-next-^ ├── maze ├── newline-in-stuff ├── nul-in-command ├── operator-too-many-lines ├── s-garbles-wrapped-line ├── showmode ├── special-keys ├── target-search-BOL^2 ├── undo-dl-cursor-posn ├── unsatisfied-r ├── wrap-garbling ├── yank-to-@-too ├── yl-at-eol └── ~-in-RE /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/BUGS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/Makefile -------------------------------------------------------------------------------- /POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/POSIX -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/README -------------------------------------------------------------------------------- /RELEASE-2.51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/RELEASE-2.51 -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | doc/README 2 | -------------------------------------------------------------------------------- /debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/menu -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/prerm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/watch -------------------------------------------------------------------------------- /debian/xvi.doc-base.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/debian/xvi.doc-base.help -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/README -------------------------------------------------------------------------------- /doc/source.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/source.ms -------------------------------------------------------------------------------- /doc/xvi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/doc/xvi.1 -------------------------------------------------------------------------------- /issues/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/README -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-HOWTO -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-01.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-01.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-02.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-02.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-03.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-03.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-04.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-04.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-05.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-05.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-aix-06.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-aix-06.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-01.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-01.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-02.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-02.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-03.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-03.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-04.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-04.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-05.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-05.vrpt.txt -------------------------------------------------------------------------------- /issues/data/POSIX-VSC-ubuntu-06.vrpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/data/POSIX-VSC-ubuntu-06.vrpt.txt -------------------------------------------------------------------------------- /issues/open/*-at-start-of-pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/*-at-start-of-pattern -------------------------------------------------------------------------------- /issues/open/POSIX-compliance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/POSIX-compliance -------------------------------------------------------------------------------- /issues/open/SIGQUIT-char-core-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/SIGQUIT-char-core-dump -------------------------------------------------------------------------------- /issues/open/^L-on-command-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/^L-on-command-line -------------------------------------------------------------------------------- /issues/open/appending-yank-to-unnamed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/appending-yank-to-unnamed -------------------------------------------------------------------------------- /issues/open/arrow-key-aliasing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/arrow-key-aliasing -------------------------------------------------------------------------------- /issues/open/colon-@-or-*-with-line-range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/colon-@-or-*-with-line-range -------------------------------------------------------------------------------- /issues/open/colon-bang-bang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/colon-bang-bang -------------------------------------------------------------------------------- /issues/open/completion-of-spacey-filenames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/completion-of-spacey-filenames -------------------------------------------------------------------------------- /issues/open/etags-TAGS-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/etags-TAGS-files -------------------------------------------------------------------------------- /issues/open/global-command-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/global-command-rewrite -------------------------------------------------------------------------------- /issues/open/implement-UTF-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/implement-UTF-8 -------------------------------------------------------------------------------- /issues/open/implement-abbreviate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/implement-abbreviate -------------------------------------------------------------------------------- /issues/open/implement-pipe-command-separator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/implement-pipe-command-separator -------------------------------------------------------------------------------- /issues/open/kill-char-during-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/kill-char-during-input -------------------------------------------------------------------------------- /issues/open/line-longer-than-screen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/line-longer-than-screen -------------------------------------------------------------------------------- /issues/open/macros-execute-noisily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/macros-execute-noisily -------------------------------------------------------------------------------- /issues/open/map-ee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/map-ee -------------------------------------------------------------------------------- /issues/open/maze-leaves-preserve-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/maze-leaves-preserve-file -------------------------------------------------------------------------------- /issues/open/move-in-gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/move-in-gv -------------------------------------------------------------------------------- /issues/open/multiple-files-open-at-line-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/multiple-files-open-at-line-2 -------------------------------------------------------------------------------- /issues/open/netbsd-tests-skipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/netbsd-tests-skipped -------------------------------------------------------------------------------- /issues/open/opensuse-check-fails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/opensuse-check-fails -------------------------------------------------------------------------------- /issues/open/page-up-dowm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/page-up-dowm -------------------------------------------------------------------------------- /issues/open/per-buffer-parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/per-buffer-parameters -------------------------------------------------------------------------------- /issues/open/redo-F-searches-forwards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/redo-F-searches-forwards -------------------------------------------------------------------------------- /issues/open/save-after-OOM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/save-after-OOM -------------------------------------------------------------------------------- /issues/open/slow-with-long-lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/slow-with-long-lines -------------------------------------------------------------------------------- /issues/open/special-keycodes-mask-chars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/special-keycodes-mask-chars -------------------------------------------------------------------------------- /issues/open/substitute-newlines-on-rhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/substitute-newlines-on-rhs -------------------------------------------------------------------------------- /issues/open/tab-in-subst-unknown-mark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/tab-in-subst-unknown-mark -------------------------------------------------------------------------------- /issues/open/tags-check-for-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/tags-check-for-update -------------------------------------------------------------------------------- /issues/open/tilde-redo-nocount: -------------------------------------------------------------------------------- 1 | If you redo a "4~" command with ".", it only does "~" 2 | -------------------------------------------------------------------------------- /issues/open/undo-position: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/undo-position -------------------------------------------------------------------------------- /issues/open/use-sigaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/use-sigaction -------------------------------------------------------------------------------- /issues/open/vis-control-chars-on-DOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/vis-control-chars-on-DOS -------------------------------------------------------------------------------- /issues/open/window-resize-current-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/issues/open/window-resize-current-line -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | xvi 3 | tags 4 | -------------------------------------------------------------------------------- /src/8086mm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/8086mm.inc -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/altstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/altstack.c -------------------------------------------------------------------------------- /src/ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ascii.c -------------------------------------------------------------------------------- /src/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ascii.h -------------------------------------------------------------------------------- /src/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/buffers.c -------------------------------------------------------------------------------- /src/change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/change.h -------------------------------------------------------------------------------- /src/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/cmd.h -------------------------------------------------------------------------------- /src/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/cmdline.c -------------------------------------------------------------------------------- /src/cmdmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/cmdmode.c -------------------------------------------------------------------------------- /src/cmdtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/cmdtab.c -------------------------------------------------------------------------------- /src/copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/copying -------------------------------------------------------------------------------- /src/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/cursor.c -------------------------------------------------------------------------------- /src/defmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/defmain.c -------------------------------------------------------------------------------- /src/defscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/defscr.c -------------------------------------------------------------------------------- /src/dispmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/dispmode.c -------------------------------------------------------------------------------- /src/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/edit.c -------------------------------------------------------------------------------- /src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/events.c -------------------------------------------------------------------------------- /src/ex_cmds1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ex_cmds1.c -------------------------------------------------------------------------------- /src/ex_cmds2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ex_cmds2.c -------------------------------------------------------------------------------- /src/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/fileio.c -------------------------------------------------------------------------------- /src/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/find.c -------------------------------------------------------------------------------- /src/flexbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/flexbuf.c -------------------------------------------------------------------------------- /src/ibmpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ibmpc.h -------------------------------------------------------------------------------- /src/ibmpc_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ibmpc_a.asm -------------------------------------------------------------------------------- /src/ibmpc_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ibmpc_c.c -------------------------------------------------------------------------------- /src/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/make.sh -------------------------------------------------------------------------------- /src/makefile.386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.386 -------------------------------------------------------------------------------- /src/makefile.aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.aix -------------------------------------------------------------------------------- /src/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.bcc -------------------------------------------------------------------------------- /src/makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.bsd -------------------------------------------------------------------------------- /src/makefile.hpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.hpx -------------------------------------------------------------------------------- /src/makefile.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.lnx -------------------------------------------------------------------------------- /src/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.msc -------------------------------------------------------------------------------- /src/makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.os2 -------------------------------------------------------------------------------- /src/makefile.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.pos -------------------------------------------------------------------------------- /src/makefile.q2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.q2t -------------------------------------------------------------------------------- /src/makefile.q2w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.q2w -------------------------------------------------------------------------------- /src/makefile.q4t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.q4t -------------------------------------------------------------------------------- /src/makefile.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.qc -------------------------------------------------------------------------------- /src/makefile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.sol -------------------------------------------------------------------------------- /src/makefile.sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.sun -------------------------------------------------------------------------------- /src/makefile.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.sv -------------------------------------------------------------------------------- /src/makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.tc -------------------------------------------------------------------------------- /src/makefile.tos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.tos -------------------------------------------------------------------------------- /src/makefile.usg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.usg -------------------------------------------------------------------------------- /src/makefile.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.xen -------------------------------------------------------------------------------- /src/makefile.xwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.xwn -------------------------------------------------------------------------------- /src/makefile.zc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.zc2 -------------------------------------------------------------------------------- /src/makefile.zc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/makefile.zc3 -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/map.c -------------------------------------------------------------------------------- /src/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/mark.c -------------------------------------------------------------------------------- /src/misccmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/misccmds.c -------------------------------------------------------------------------------- /src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/mouse.c -------------------------------------------------------------------------------- /src/movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/movement.c -------------------------------------------------------------------------------- /src/msdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/msdos.h -------------------------------------------------------------------------------- /src/msdos_a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/msdos_a.asm -------------------------------------------------------------------------------- /src/msdos_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/msdos_c.c -------------------------------------------------------------------------------- /src/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/normal.c -------------------------------------------------------------------------------- /src/os2vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/os2vio.c -------------------------------------------------------------------------------- /src/os2vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/os2vio.h -------------------------------------------------------------------------------- /src/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/param.c -------------------------------------------------------------------------------- /src/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/param.h -------------------------------------------------------------------------------- /src/pc386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/pc386.c -------------------------------------------------------------------------------- /src/pc386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/pc386.h -------------------------------------------------------------------------------- /src/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/pipe.c -------------------------------------------------------------------------------- /src/preserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/preserve.c -------------------------------------------------------------------------------- /src/ptrfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ptrfunc.c -------------------------------------------------------------------------------- /src/ptrfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/ptrfunc.h -------------------------------------------------------------------------------- /src/q2tscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/q2tscr.c -------------------------------------------------------------------------------- /src/q2wscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/q2wscr.c -------------------------------------------------------------------------------- /src/qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/qnx.c -------------------------------------------------------------------------------- /src/qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/qnx.h -------------------------------------------------------------------------------- /src/qnx_icon.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/qnx_icon.enc -------------------------------------------------------------------------------- /src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/regexp.c -------------------------------------------------------------------------------- /src/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/regexp.h -------------------------------------------------------------------------------- /src/regmagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/regmagic.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/search.c -------------------------------------------------------------------------------- /src/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/signal.c -------------------------------------------------------------------------------- /src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/startup.c -------------------------------------------------------------------------------- /src/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/status.c -------------------------------------------------------------------------------- /src/sunback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/sunback.c -------------------------------------------------------------------------------- /src/sunfront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/sunfront.c -------------------------------------------------------------------------------- /src/sunview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/sunview.h -------------------------------------------------------------------------------- /src/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tag.c -------------------------------------------------------------------------------- /src/targets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/targets.c -------------------------------------------------------------------------------- /src/tcap_scr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tcap_scr.c -------------------------------------------------------------------------------- /src/tcapmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tcapmain.c -------------------------------------------------------------------------------- /src/termcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/termcap.h -------------------------------------------------------------------------------- /src/tos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tos.c -------------------------------------------------------------------------------- /src/tos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tos.h -------------------------------------------------------------------------------- /src/tos.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/tos.lnk -------------------------------------------------------------------------------- /src/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/undo.c -------------------------------------------------------------------------------- /src/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/unix.c -------------------------------------------------------------------------------- /src/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/unix.h -------------------------------------------------------------------------------- /src/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/update.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/version.c -------------------------------------------------------------------------------- /src/vi_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/vi_cmds.c -------------------------------------------------------------------------------- /src/vi_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/vi_ops.c -------------------------------------------------------------------------------- /src/virtscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/virtscr.c -------------------------------------------------------------------------------- /src/virtscr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/virtscr.h -------------------------------------------------------------------------------- /src/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/windows.c -------------------------------------------------------------------------------- /src/xvi.dsk: -------------------------------------------------------------------------------- 1 | Turbo C Context File -------------------------------------------------------------------------------- /src/xvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/xvi.h -------------------------------------------------------------------------------- /src/xvi.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/xvi.help -------------------------------------------------------------------------------- /src/xvi.icn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/xvi.icn -------------------------------------------------------------------------------- /src/xvi.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/xvi.lnk -------------------------------------------------------------------------------- /src/xvi.prj: -------------------------------------------------------------------------------- 1 | Turbo C Project File -------------------------------------------------------------------------------- /src/xwnscr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/xwnscr.c -------------------------------------------------------------------------------- /src/yankput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/src/yankput.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/README -------------------------------------------------------------------------------- /test/data/hanoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/data/hanoi -------------------------------------------------------------------------------- /test/data/maze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/data/maze.c -------------------------------------------------------------------------------- /test/data/maze_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/data/maze_mac -------------------------------------------------------------------------------- /test/data/sample.maz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/data/sample.maz -------------------------------------------------------------------------------- /test/data/xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/data/xorg.conf -------------------------------------------------------------------------------- /test/scripts/binder-finder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/binder-finder -------------------------------------------------------------------------------- /test/scripts/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/runtests -------------------------------------------------------------------------------- /test/scripts/term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/term -------------------------------------------------------------------------------- /test/scripts/term_expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/term_expect -------------------------------------------------------------------------------- /test/scripts/tkterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/tkterm -------------------------------------------------------------------------------- /test/scripts/virterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/scripts/virterm -------------------------------------------------------------------------------- /test/tests/0000-startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/0000-startup -------------------------------------------------------------------------------- /test/tests/Interrupted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/Interrupted -------------------------------------------------------------------------------- /test/tests/N-tilde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/N-tilde -------------------------------------------------------------------------------- /test/tests/POSIX-$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/POSIX-$ -------------------------------------------------------------------------------- /test/tests/Without_ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/Without_ce -------------------------------------------------------------------------------- /test/tests/[]-with-ignorecase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/[]-with-ignorecase -------------------------------------------------------------------------------- /test/tests/\u&: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/\u& -------------------------------------------------------------------------------- /test/tests/^-and-$-in-RE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/^-and-$-in-RE -------------------------------------------------------------------------------- /test/tests/append-to-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/append-to-file -------------------------------------------------------------------------------- /test/tests/append-yank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/append-yank -------------------------------------------------------------------------------- /test/tests/autowrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/autowrite -------------------------------------------------------------------------------- /test/tests/change-move-not-@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/change-move-not-@ -------------------------------------------------------------------------------- /test/tests/change-to-target-at-BOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/change-to-target-at-BOL -------------------------------------------------------------------------------- /test/tests/cmdline-editing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/cmdline-editing -------------------------------------------------------------------------------- /test/tests/colon-@-or-*-newline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/colon-@-or-*-newline -------------------------------------------------------------------------------- /test/tests/crtl-w+u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/crtl-w+u -------------------------------------------------------------------------------- /test/tests/delete-in-wrapped-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/delete-in-wrapped-line -------------------------------------------------------------------------------- /test/tests/delete-infinite-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/delete-infinite-loop -------------------------------------------------------------------------------- /test/tests/delete-word-at-EOF-EOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/delete-word-at-EOF-EOL -------------------------------------------------------------------------------- /test/tests/failed-search-halt-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/failed-search-halt-macro -------------------------------------------------------------------------------- /test/tests/grave-mark-restore-posn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/grave-mark-restore-posn -------------------------------------------------------------------------------- /test/tests/hanoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/hanoi -------------------------------------------------------------------------------- /test/tests/insert-redo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/insert-redo -------------------------------------------------------------------------------- /test/tests/interrupt-with-^Y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/interrupt-with-^Y -------------------------------------------------------------------------------- /test/tests/literal-next-^: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/literal-next-^ -------------------------------------------------------------------------------- /test/tests/maze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/maze -------------------------------------------------------------------------------- /test/tests/newline-in-stuff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/newline-in-stuff -------------------------------------------------------------------------------- /test/tests/nul-in-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/nul-in-command -------------------------------------------------------------------------------- /test/tests/operator-too-many-lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/operator-too-many-lines -------------------------------------------------------------------------------- /test/tests/s-garbles-wrapped-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/s-garbles-wrapped-line -------------------------------------------------------------------------------- /test/tests/showmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/showmode -------------------------------------------------------------------------------- /test/tests/special-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/special-keys -------------------------------------------------------------------------------- /test/tests/target-search-BOL^2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/target-search-BOL^2 -------------------------------------------------------------------------------- /test/tests/undo-dl-cursor-posn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/undo-dl-cursor-posn -------------------------------------------------------------------------------- /test/tests/unsatisfied-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/unsatisfied-r -------------------------------------------------------------------------------- /test/tests/wrap-garbling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/wrap-garbling -------------------------------------------------------------------------------- /test/tests/yank-to-@-too: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/yank-to-@-too -------------------------------------------------------------------------------- /test/tests/yl-at-eol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/yl-at-eol -------------------------------------------------------------------------------- /test/tests/~-in-RE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinwguy/xvi/HEAD/test/tests/~-in-RE --------------------------------------------------------------------------------