├── .builds ├── alpine.yml ├── debian.yml ├── freebsd.yml └── openbsd.yml ├── .codecov.yml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── coverity-scan.yml │ ├── luacheck.yml │ ├── luadoc.yml │ ├── macos.yml │ ├── man.yml │ ├── ubuntu.yml │ └── windows.yml.NOACTIVE ├── .gitignore ├── .luacheckrc ├── CHANGELOG.md ├── Dockerfile ├── GNUmakefile ├── LICENSE ├── Makefile ├── README.md ├── array.c ├── array.h ├── buffer.c ├── buffer.h ├── config.def.h ├── configure ├── doc ├── .gitignore ├── Doxyfile ├── Makefile ├── array.rst ├── buffer.rst ├── conf.py ├── index.rst ├── map.rst ├── requirements.txt ├── text.rst ├── view.rst └── vis.rst ├── event-basic.c ├── libutf.c ├── libutf.h ├── lua ├── doc │ ├── README.md │ └── config.ld ├── lexer.lua ├── lexers │ ├── LICENSE │ ├── README.md │ ├── actionscript.lua │ ├── ada.lua │ ├── antlr.lua │ ├── apdl.lua │ ├── apl.lua │ ├── applescript.lua │ ├── asm.lua │ ├── asp.lua │ ├── autohotkey.lua │ ├── autoit.lua │ ├── awk.lua │ ├── bash.lua │ ├── batch.lua │ ├── bibtex.lua │ ├── boo.lua │ ├── c.lua │ ├── caml.lua │ ├── chuck.lua │ ├── clojure.lua │ ├── cmake.lua │ ├── coffeescript.lua │ ├── container.lua │ ├── context.lua │ ├── cpp.lua │ ├── crystal.lua │ ├── csharp.lua │ ├── css.lua │ ├── cuda.lua │ ├── d.lua │ ├── dart.lua │ ├── desktop.lua │ ├── diff.lua │ ├── django.lua │ ├── dockerfile.lua │ ├── dot.lua │ ├── dsv.lua │ ├── eiffel.lua │ ├── elixir.lua │ ├── elm.lua │ ├── erlang.lua │ ├── factor.lua │ ├── fantom.lua │ ├── faust.lua │ ├── fennel.lua │ ├── fish.lua │ ├── forth.lua │ ├── fortran.lua │ ├── fsharp.lua │ ├── fstab.lua │ ├── gap.lua │ ├── gemini.lua │ ├── gettext.lua │ ├── gherkin.lua │ ├── git-rebase.lua │ ├── gleam.lua │ ├── glsl.lua │ ├── gnuplot.lua │ ├── go.lua │ ├── groovy.lua │ ├── gtkrc.lua │ ├── hare.lua │ ├── haskell.lua │ ├── html.lua │ ├── icon.lua │ ├── idl.lua │ ├── inform.lua │ ├── ini.lua │ ├── io_lang.lua │ ├── janet.lua │ ├── java.lua │ ├── javascript.lua │ ├── jq.lua │ ├── json.lua │ ├── jsp.lua │ ├── julia.lua │ ├── latex.lua │ ├── ledger.lua │ ├── less.lua │ ├── lexer.lua │ ├── lilypond.lua │ ├── lisp.lua │ ├── litcoffee.lua │ ├── logtalk.lua │ ├── lua.lua │ ├── makefile.lua │ ├── man.lua │ ├── markdown.lua │ ├── matlab.lua │ ├── mediawiki.lua │ ├── meson.lua │ ├── moonscript.lua │ ├── myrddin.lua │ ├── nemerle.lua │ ├── networkd.lua │ ├── nim.lua │ ├── nix.lua │ ├── nsis.lua │ ├── null.lua │ ├── objeck.lua │ ├── objective_c.lua │ ├── org.lua │ ├── output.lua │ ├── pascal.lua │ ├── perl.lua │ ├── php.lua │ ├── pico8.lua │ ├── pike.lua │ ├── pkgbuild.lua │ ├── pony.lua │ ├── powershell.lua │ ├── prolog.lua │ ├── props.lua │ ├── protobuf.lua │ ├── ps.lua │ ├── pure.lua │ ├── python.lua │ ├── r.lua │ ├── rails.lua │ ├── rc.lua │ ├── reason.lua │ ├── rebol.lua │ ├── rest.lua │ ├── rexx.lua │ ├── rhtml.lua │ ├── routeros.lua │ ├── rpmspec.lua │ ├── ruby.lua │ ├── rust.lua │ ├── sass.lua │ ├── scala.lua │ ├── scheme.lua │ ├── smalltalk.lua │ ├── sml.lua │ ├── snobol4.lua │ ├── spin.lua │ ├── sql.lua │ ├── strace.lua │ ├── systemd.lua │ ├── taskpaper.lua │ ├── tcl.lua │ ├── template.txt │ ├── tex.lua │ ├── texinfo.lua │ ├── text.lua │ ├── todotxt.lua │ ├── toml.lua │ ├── troff.lua │ ├── txt2tags.lua │ ├── typescript.lua │ ├── vala.lua │ ├── vb.lua │ ├── vcard.lua │ ├── verilog.lua │ ├── vhdl.lua │ ├── wsf.lua │ ├── xml.lua │ ├── xs.lua │ ├── xtend.lua │ ├── yaml.lua │ └── zig.lua ├── plugins │ ├── complete-filename.lua │ ├── complete-word.lua │ ├── digraph.lua │ ├── filetype.lua │ ├── number-inc-dec.lua │ └── textobject-lexer.lua ├── themes │ ├── base-16.lua │ ├── default.lua │ ├── solarized.lua │ └── zenburn.lua ├── vis-std.lua ├── vis.lua └── visrc.lua ├── main.c ├── man ├── vis-clipboard.1 ├── vis-complete.1 ├── vis-digraph.1 ├── vis-menu.1 ├── vis-open.1 └── vis.1 ├── map.c ├── map.h ├── sam.c ├── sam.h ├── test ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── core │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── array-test.c │ ├── buffer-test.c │ ├── ccan-config.c │ ├── ccan │ │ ├── compiler │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── compiler.h │ │ │ └── test │ │ │ │ ├── compile_fail-printf.c │ │ │ │ └── run-is_compile_constant.c │ │ └── tap │ │ │ ├── _info │ │ │ ├── tap.3 │ │ │ ├── tap.c │ │ │ ├── tap.h │ │ │ └── test │ │ │ └── run.c │ ├── licenses │ │ └── CC0 │ ├── map-test.c │ ├── tap.h │ └── text-test.c ├── fuzz │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── buffer-fuzzer.c │ ├── dictionaries │ │ ├── buffer-fuzzer.dict │ │ ├── text-fuzzer.dict │ │ └── text-libfuzzer.dict │ ├── fuzzer.h │ ├── inputs │ │ ├── buffer-fuzzer │ │ │ └── buffer-fuzzer.in │ │ ├── text-fuzzer │ │ │ └── text-fuzzer.in │ │ └── text-libfuzzer │ │ │ └── text-libfuzzer.in │ └── text-fuzzer.c ├── lua │ ├── Makefile │ ├── README.md │ ├── cursor.in │ ├── cursor.lua │ ├── file-empty.in │ ├── file-empty.lua │ ├── lines.in │ ├── lines.lua │ ├── map-basic.lua │ ├── pipe.in │ ├── pipe.lua │ ├── test.sh │ └── visrc.lua ├── sam │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── addresses │ │ ├── columns.cmd │ │ ├── columns.in │ │ ├── first-last.cmd │ │ ├── first-last.in │ │ ├── lines.cmd │ │ ├── lines.in │ │ ├── second.cmd │ │ └── second.in │ ├── commands │ │ ├── filter-capitalize.cmd │ │ ├── filter-capitalize.in │ │ ├── group.cmd │ │ ├── group.in │ │ ├── long-text.cmd │ │ ├── long-text.in │ │ ├── loop-empty-match1.cmd │ │ ├── loop-empty-match1.in │ │ ├── loop-empty-match2.cmd │ │ ├── loop-empty-match2.in │ │ ├── loop-empty-match3.cmd │ │ ├── loop-empty-match3.in │ │ ├── loop-empty-match4.cmd │ │ ├── loop-empty-match4.in │ │ ├── loop-lines.in │ │ ├── loop-lines1.cmd │ │ ├── loop-lines1.in │ │ ├── loop-lines2.cmd │ │ ├── loop-lines2.in │ │ ├── loop-lines3.cmd │ │ ├── loop-lines3.in │ │ ├── loop-lines4.cmd │ │ ├── loop-lines4.in │ │ ├── loop-lines5.cmd │ │ ├── loop-lines5.in │ │ ├── loop-lines6.cmd │ │ ├── loop-lines6.in │ │ ├── loop-lines7.cmd │ │ ├── loop-lines7.in │ │ ├── loop-lines8.cmd │ │ ├── loop-lines8.in │ │ ├── loop-lines9.cmd │ │ ├── loop-lines9.in │ │ ├── pipe-in.cmd │ │ ├── pipe-in.in │ │ ├── pipe-out.cmd │ │ ├── pipe-out.in │ │ ├── repeated-shell.cmd │ │ ├── repeated-shell.in │ │ ├── unicode-replace.cmd │ │ └── unicode-replace.in │ ├── errors │ │ ├── conflict.cmd │ │ ├── conflict.in │ │ ├── read.cmd │ │ ├── read.in │ │ ├── unbalanced-group.cmd │ │ └── unbalanced-group.in │ ├── examples │ │ ├── comment-functions.cmd │ │ ├── comment-functions.in │ │ ├── delete-empty-lines.cmd │ │ ├── delete-empty-lines.in │ │ ├── swap-words.cmd │ │ └── swap-words.in │ ├── test.sh │ └── visrc.lua ├── util │ ├── .gitignore │ ├── Makefile │ ├── README.md │ └── keys.c ├── vim │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── golf │ │ ├── 4d1a34ccfa85f32065000004 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 4d1ac1800a045132c0000011 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 4d665abd7d73e02a55000009 │ │ │ ├── 1.in │ │ │ ├── 1.keys.broken │ │ │ └── 1.ref │ │ ├── 4ddbd92898957e0001000016 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 4e31627b74ab580001000007 │ │ │ ├── 1.disabled │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 4ef209ef78702b0001000019 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 4fbf8e303be58b0001000024 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 50ad2cb165b8db0002000029 │ │ │ ├── 1.in │ │ │ ├── 1.keys │ │ │ └── 1.ref │ │ ├── 50b1d7239aad89000200002d │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 50c13afab855760002000049 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 50c18a08b855760002000056 │ │ │ ├── 1.in │ │ │ ├── 1.keys.broken │ │ │ └── 1.ref │ │ ├── 50c2c246b0544c000200003f │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 50d0c33daa503f000200000f │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 50ee7504c0e3aa0002000040 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 51103ad8041832000200003f │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 5192f96ad8df110002000002 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 524e1a20b81fe50002000008 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 52c3cb0d9b8634000200000e │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 53369b712a09c1000223fb57 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 536cfa23fcccd100025678bd │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 537a553282aa3e000222048a │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 53d93fc3768e280002124f23 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 54595b13128576000257a3c1 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 5462e3f41198b80002512673 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 54698da795f6da00020d85ed │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 54862fbb3f90ac0002904cf5 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 55771cc4750ef86573003b83 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 559c30948ef59c0eb7000002 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 55b18bbea9c2c30d04000001 │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ ├── 55bcdc3ef4219f456102374f │ │ │ ├── 1.in │ │ │ └── 1.ref │ │ └── 55f9720b4a665c2acf0008c8 │ │ │ ├── 1.in │ │ │ └── 1.ref │ ├── motions │ │ ├── goto.in │ │ └── goto.keys │ ├── operators │ │ ├── change │ │ │ ├── change.in │ │ │ └── change.keys │ │ ├── delete │ │ │ ├── delete.in │ │ │ └── delete.keys │ │ ├── insert │ │ │ ├── append.in │ │ │ ├── append.keys │ │ │ ├── insert.in │ │ │ └── insert.keys │ │ ├── join │ │ │ ├── count.in │ │ │ ├── count.keys │ │ │ ├── empty.in │ │ │ ├── empty.keys │ │ │ ├── visual-line.in │ │ │ ├── visual-line.keys │ │ │ ├── visual.in │ │ │ ├── visual.keys │ │ │ ├── whitespace.in │ │ │ └── whitespace.keys │ │ ├── openline │ │ │ ├── openline.in │ │ │ └── openline.keys │ │ ├── put │ │ │ ├── put.in │ │ │ ├── put.keys │ │ │ ├── visual.in │ │ │ └── visual.keys │ │ ├── replace │ │ │ ├── replace.in │ │ │ └── replace.keys │ │ ├── shift │ │ │ ├── shift.in │ │ │ └── shift.keys │ │ └── yank │ │ │ ├── yank.in │ │ │ └── yank.keys │ ├── registers │ │ ├── black-hole.in │ │ ├── black-hole.keys │ │ ├── command.in │ │ ├── command.keys │ │ ├── named.in │ │ ├── named.keys │ │ ├── search.in │ │ ├── search.keys │ │ ├── zero.in │ │ └── zero.keys │ ├── special-files │ │ ├── combining.in │ │ ├── combining.keys │ │ ├── mmap.in │ │ ├── mmap.keys │ │ ├── search-binary.in │ │ └── search-binary.keys │ ├── test.sh │ ├── text-objects │ │ ├── braces-count-linewise.in │ │ ├── braces-count-linewise.keys │ │ ├── words-count.in │ │ ├── words-count.keys │ │ ├── words-eol.in │ │ ├── words-eol.keys │ │ ├── words-symbols.in │ │ └── words-symbols.keys │ └── visrc.lua └── vis │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── errors │ ├── filter.in │ ├── filter.keys │ ├── filter.ref │ ├── pipe-in.in │ ├── pipe-in.keys │ └── pipe-in.ref │ ├── insert-mode │ ├── autoindent.in │ ├── autoindent.keys │ ├── autoindent.ref │ ├── digraph.in │ ├── digraph.keys │ ├── digraph.ref │ ├── verbatim.in │ ├── verbatim.keys │ └── verbatim.ref │ ├── interop │ ├── pre-save-grows.in │ ├── pre-save-grows.keys │ ├── pre-save-grows.lua │ ├── pre-save-grows.ref │ ├── pre-save-shrinks.in │ ├── pre-save-shrinks.keys │ ├── pre-save-shrinks.lua │ └── pre-save-shrinks.ref │ ├── mappings │ ├── insert-mode.in │ ├── insert-mode.keys │ └── insert-mode.ref │ ├── motions │ ├── line-begin.in │ ├── line-begin.keys │ ├── line-begin.ref │ ├── line-char-first.in │ ├── line-char-first.keys │ ├── line-char-first.ref │ ├── line-char-last.in │ ├── line-char-last.keys │ ├── line-char-last.ref │ ├── line-end.in │ ├── line-end.keys │ ├── line-end.ref │ ├── next-end-of-bigword.in │ ├── next-end-of-bigword.keys │ ├── next-end-of-bigword.ref │ ├── next-end-of-word.in │ ├── next-end-of-word.keys │ ├── next-end-of-word.ref │ ├── next-start-of-bigword.in │ ├── next-start-of-bigword.keys │ ├── next-start-of-bigword.ref │ ├── next-start-of-word.in │ ├── next-start-of-word.keys │ ├── next-start-of-word.ref │ ├── percent.in │ ├── percent.keys │ ├── percent.ref │ ├── prev-end-of-bigword.in │ ├── prev-end-of-bigword.keys │ ├── prev-end-of-bigword.ref │ ├── prev-end-of-word.in │ ├── prev-end-of-word.keys │ ├── prev-end-of-word.ref │ ├── prev-start-of-bigword.in │ ├── prev-start-of-bigword.keys │ ├── prev-start-of-bigword.ref │ ├── prev-start-of-word.in │ ├── prev-start-of-word.keys │ ├── prev-start-of-word.ref │ ├── till-left.in │ ├── till-left.keys │ ├── till-left.ref │ ├── till-right.in │ ├── till-right.keys │ ├── till-right.ref │ ├── to-left.in │ ├── to-left.keys │ ├── to-left.ref │ ├── to-right.in │ ├── to-right.keys │ └── to-right.ref │ ├── prompt │ ├── history.in │ ├── history.keys │ └── history.ref │ ├── selections │ ├── align-indent-columns.in │ ├── align-indent-columns.keys │ ├── align-indent-columns.ref │ ├── align-indent.in │ ├── align-indent.keys │ ├── align-indent.ref │ ├── align.in │ ├── align.keys │ ├── align.ref │ ├── complement-whole.in │ ├── complement-whole.keys │ ├── complement-whole.ref │ ├── complement.in │ ├── complement.keys │ ├── complement.ref │ ├── end-of-file.in │ ├── end-of-file.keys │ ├── end-of-file.ref │ ├── intersect-adjacent.in │ ├── intersect-adjacent.keys │ ├── intersect-adjacent.ref │ ├── intersect-contained.in │ ├── intersect-contained.keys │ ├── intersect-contained.ref │ ├── intersect-empty.in │ ├── intersect-empty.keys │ ├── intersect-empty.ref │ ├── intersect-overlapping.in │ ├── intersect-overlapping.keys │ ├── intersect-overlapping.ref │ ├── intersect-whole.in │ ├── intersect-whole.keys │ ├── intersect-whole.ref │ ├── minus-adjacent.in │ ├── minus-adjacent.keys │ ├── minus-adjacent.ref │ ├── minus-contained.in │ ├── minus-contained.keys │ ├── minus-contained.ref │ ├── minus-empty.in │ ├── minus-empty.keys │ ├── minus-empty.ref │ ├── minus-overlapping.in │ ├── minus-overlapping.keys │ ├── minus-overlapping.ref │ ├── minus-whole.in │ ├── minus-whole.keys │ ├── minus-whole.ref │ ├── new-above-first-below-last.in │ ├── new-above-first-below-last.keys │ ├── new-above-first-below-last.ref │ ├── new-below-above.in │ ├── new-below-above.keys │ ├── new-below-above.ref │ ├── new-end-of-line.in │ ├── new-end-of-line.keys │ ├── new-end-of-line.ref │ ├── new-start-of-line.in │ ├── new-start-of-line.keys │ ├── new-start-of-line.ref │ ├── normal-mode-wq.in │ ├── normal-mode-wq.keys │ ├── normal-mode-wq.ref │ ├── odd-even.in │ ├── odd-even.keys │ ├── odd-even.ref │ ├── out-of-view.in.disabled │ ├── out-of-view.keys │ ├── out-of-view.ref │ ├── remove-column.in │ ├── remove-column.keys │ ├── remove-column.ref │ ├── select-match.in │ ├── select-match.keys │ ├── select-match.ref │ ├── selections-rotate.in │ ├── selections-rotate.keys │ ├── selections-rotate.ref │ ├── selections-trim.in │ ├── selections-trim.keys │ ├── selections-trim.ref │ ├── union-adjacent.in │ ├── union-adjacent.keys │ ├── union-adjacent.ref │ ├── union-contained.in │ ├── union-contained.keys │ ├── union-contained.ref │ ├── union-empty.in │ ├── union-empty.keys │ ├── union-empty.ref │ ├── union-overlapping.in │ ├── union-overlapping.keys │ ├── union-overlapping.ref │ ├── union-whole.in │ ├── union-whole.keys │ └── union-whole.ref │ ├── structural-regex │ └── addresses │ │ ├── marks.in │ │ ├── marks.keys │ │ ├── marks.ref │ │ ├── round-down.in │ │ ├── round-down.keys │ │ ├── round-down.ref │ │ ├── round-up.in │ │ ├── round-up.keys │ │ └── round-up.ref │ ├── test.sh │ ├── text-objects │ ├── indentation.in │ ├── indentation.keys │ ├── indentation.ref │ ├── lexer.in │ ├── lexer.keys │ ├── lexer.ref │ ├── line.in │ ├── line.keys │ ├── line.ref │ ├── search-result.in │ ├── search-result.keys │ └── search-result.ref │ ├── visrc.lua │ └── visual-mode │ ├── orientation.in │ ├── orientation.keys │ └── orientation.ref ├── text-common.c ├── text-internal.h ├── text-io.c ├── text-iterator.c ├── text-motions.c ├── text-motions.h ├── text-objects.c ├── text-objects.h ├── text-regex-tre.c ├── text-regex.c ├── text-regex.h ├── text-util.c ├── text-util.h ├── text.c ├── text.h ├── ui-terminal-curses.c ├── ui-terminal-vt100.c ├── ui-terminal.c ├── ui.h ├── util.h ├── view.c ├── view.h ├── vis-clipboard ├── vis-cmds.c ├── vis-complete ├── vis-core.h ├── vis-digraph.c ├── vis-lua.c ├── vis-lua.h ├── vis-marks.c ├── vis-menu.c ├── vis-modes.c ├── vis-motions.c ├── vis-open ├── vis-operators.c ├── vis-prompt.c ├── vis-registers.c ├── vis-single.c ├── vis-subprocess.c ├── vis-subprocess.h ├── vis-text-objects.c ├── vis.c └── vis.h /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.builds/debian.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/coverity-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/coverity-scan.yml -------------------------------------------------------------------------------- /.github/workflows/luacheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/luacheck.yml -------------------------------------------------------------------------------- /.github/workflows/luadoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/luadoc.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/man.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/man.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml.NOACTIVE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.github/workflows/windows.yml.NOACTIVE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/.luacheckrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/Dockerfile -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/README.md -------------------------------------------------------------------------------- /array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/array.c -------------------------------------------------------------------------------- /array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/array.h -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/buffer.c -------------------------------------------------------------------------------- /buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/buffer.h -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/config.def.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/configure -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/array.rst -------------------------------------------------------------------------------- /doc/buffer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/buffer.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/map.rst: -------------------------------------------------------------------------------- 1 | Map 2 | === 3 | 4 | .. doxygenfile:: map.h 5 | -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | -------------------------------------------------------------------------------- /doc/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/text.rst -------------------------------------------------------------------------------- /doc/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/view.rst -------------------------------------------------------------------------------- /doc/vis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/doc/vis.rst -------------------------------------------------------------------------------- /event-basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/event-basic.c -------------------------------------------------------------------------------- /libutf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/libutf.c -------------------------------------------------------------------------------- /libutf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/libutf.h -------------------------------------------------------------------------------- /lua/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/doc/README.md -------------------------------------------------------------------------------- /lua/doc/config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/doc/config.ld -------------------------------------------------------------------------------- /lua/lexer.lua: -------------------------------------------------------------------------------- 1 | lexers/lexer.lua -------------------------------------------------------------------------------- /lua/lexers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/LICENSE -------------------------------------------------------------------------------- /lua/lexers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/README.md -------------------------------------------------------------------------------- /lua/lexers/actionscript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/actionscript.lua -------------------------------------------------------------------------------- /lua/lexers/ada.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/ada.lua -------------------------------------------------------------------------------- /lua/lexers/antlr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/antlr.lua -------------------------------------------------------------------------------- /lua/lexers/apdl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/apdl.lua -------------------------------------------------------------------------------- /lua/lexers/apl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/apl.lua -------------------------------------------------------------------------------- /lua/lexers/applescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/applescript.lua -------------------------------------------------------------------------------- /lua/lexers/asm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/asm.lua -------------------------------------------------------------------------------- /lua/lexers/asp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/asp.lua -------------------------------------------------------------------------------- /lua/lexers/autohotkey.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/autohotkey.lua -------------------------------------------------------------------------------- /lua/lexers/autoit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/autoit.lua -------------------------------------------------------------------------------- /lua/lexers/awk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/awk.lua -------------------------------------------------------------------------------- /lua/lexers/bash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/bash.lua -------------------------------------------------------------------------------- /lua/lexers/batch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/batch.lua -------------------------------------------------------------------------------- /lua/lexers/bibtex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/bibtex.lua -------------------------------------------------------------------------------- /lua/lexers/boo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/boo.lua -------------------------------------------------------------------------------- /lua/lexers/c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/c.lua -------------------------------------------------------------------------------- /lua/lexers/caml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/caml.lua -------------------------------------------------------------------------------- /lua/lexers/chuck.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/chuck.lua -------------------------------------------------------------------------------- /lua/lexers/clojure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/clojure.lua -------------------------------------------------------------------------------- /lua/lexers/cmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/cmake.lua -------------------------------------------------------------------------------- /lua/lexers/coffeescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/coffeescript.lua -------------------------------------------------------------------------------- /lua/lexers/container.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/container.lua -------------------------------------------------------------------------------- /lua/lexers/context.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/context.lua -------------------------------------------------------------------------------- /lua/lexers/cpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/cpp.lua -------------------------------------------------------------------------------- /lua/lexers/crystal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/crystal.lua -------------------------------------------------------------------------------- /lua/lexers/csharp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/csharp.lua -------------------------------------------------------------------------------- /lua/lexers/css.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/css.lua -------------------------------------------------------------------------------- /lua/lexers/cuda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/cuda.lua -------------------------------------------------------------------------------- /lua/lexers/d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/d.lua -------------------------------------------------------------------------------- /lua/lexers/dart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/dart.lua -------------------------------------------------------------------------------- /lua/lexers/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/desktop.lua -------------------------------------------------------------------------------- /lua/lexers/diff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/diff.lua -------------------------------------------------------------------------------- /lua/lexers/django.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/django.lua -------------------------------------------------------------------------------- /lua/lexers/dockerfile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/dockerfile.lua -------------------------------------------------------------------------------- /lua/lexers/dot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/dot.lua -------------------------------------------------------------------------------- /lua/lexers/dsv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/dsv.lua -------------------------------------------------------------------------------- /lua/lexers/eiffel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/eiffel.lua -------------------------------------------------------------------------------- /lua/lexers/elixir.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/elixir.lua -------------------------------------------------------------------------------- /lua/lexers/elm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/elm.lua -------------------------------------------------------------------------------- /lua/lexers/erlang.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/erlang.lua -------------------------------------------------------------------------------- /lua/lexers/factor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/factor.lua -------------------------------------------------------------------------------- /lua/lexers/fantom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fantom.lua -------------------------------------------------------------------------------- /lua/lexers/faust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/faust.lua -------------------------------------------------------------------------------- /lua/lexers/fennel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fennel.lua -------------------------------------------------------------------------------- /lua/lexers/fish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fish.lua -------------------------------------------------------------------------------- /lua/lexers/forth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/forth.lua -------------------------------------------------------------------------------- /lua/lexers/fortran.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fortran.lua -------------------------------------------------------------------------------- /lua/lexers/fsharp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fsharp.lua -------------------------------------------------------------------------------- /lua/lexers/fstab.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/fstab.lua -------------------------------------------------------------------------------- /lua/lexers/gap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gap.lua -------------------------------------------------------------------------------- /lua/lexers/gemini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gemini.lua -------------------------------------------------------------------------------- /lua/lexers/gettext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gettext.lua -------------------------------------------------------------------------------- /lua/lexers/gherkin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gherkin.lua -------------------------------------------------------------------------------- /lua/lexers/git-rebase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/git-rebase.lua -------------------------------------------------------------------------------- /lua/lexers/gleam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gleam.lua -------------------------------------------------------------------------------- /lua/lexers/glsl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/glsl.lua -------------------------------------------------------------------------------- /lua/lexers/gnuplot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gnuplot.lua -------------------------------------------------------------------------------- /lua/lexers/go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/go.lua -------------------------------------------------------------------------------- /lua/lexers/groovy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/groovy.lua -------------------------------------------------------------------------------- /lua/lexers/gtkrc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/gtkrc.lua -------------------------------------------------------------------------------- /lua/lexers/hare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/hare.lua -------------------------------------------------------------------------------- /lua/lexers/haskell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/haskell.lua -------------------------------------------------------------------------------- /lua/lexers/html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/html.lua -------------------------------------------------------------------------------- /lua/lexers/icon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/icon.lua -------------------------------------------------------------------------------- /lua/lexers/idl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/idl.lua -------------------------------------------------------------------------------- /lua/lexers/inform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/inform.lua -------------------------------------------------------------------------------- /lua/lexers/ini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/ini.lua -------------------------------------------------------------------------------- /lua/lexers/io_lang.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/io_lang.lua -------------------------------------------------------------------------------- /lua/lexers/janet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/janet.lua -------------------------------------------------------------------------------- /lua/lexers/java.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/java.lua -------------------------------------------------------------------------------- /lua/lexers/javascript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/javascript.lua -------------------------------------------------------------------------------- /lua/lexers/jq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/jq.lua -------------------------------------------------------------------------------- /lua/lexers/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/json.lua -------------------------------------------------------------------------------- /lua/lexers/jsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/jsp.lua -------------------------------------------------------------------------------- /lua/lexers/julia.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/julia.lua -------------------------------------------------------------------------------- /lua/lexers/latex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/latex.lua -------------------------------------------------------------------------------- /lua/lexers/ledger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/ledger.lua -------------------------------------------------------------------------------- /lua/lexers/less.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/less.lua -------------------------------------------------------------------------------- /lua/lexers/lexer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/lexer.lua -------------------------------------------------------------------------------- /lua/lexers/lilypond.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/lilypond.lua -------------------------------------------------------------------------------- /lua/lexers/lisp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/lisp.lua -------------------------------------------------------------------------------- /lua/lexers/litcoffee.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/litcoffee.lua -------------------------------------------------------------------------------- /lua/lexers/logtalk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/logtalk.lua -------------------------------------------------------------------------------- /lua/lexers/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/lua.lua -------------------------------------------------------------------------------- /lua/lexers/makefile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/makefile.lua -------------------------------------------------------------------------------- /lua/lexers/man.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/man.lua -------------------------------------------------------------------------------- /lua/lexers/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/markdown.lua -------------------------------------------------------------------------------- /lua/lexers/matlab.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/matlab.lua -------------------------------------------------------------------------------- /lua/lexers/mediawiki.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/mediawiki.lua -------------------------------------------------------------------------------- /lua/lexers/meson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/meson.lua -------------------------------------------------------------------------------- /lua/lexers/moonscript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/moonscript.lua -------------------------------------------------------------------------------- /lua/lexers/myrddin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/myrddin.lua -------------------------------------------------------------------------------- /lua/lexers/nemerle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/nemerle.lua -------------------------------------------------------------------------------- /lua/lexers/networkd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/networkd.lua -------------------------------------------------------------------------------- /lua/lexers/nim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/nim.lua -------------------------------------------------------------------------------- /lua/lexers/nix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/nix.lua -------------------------------------------------------------------------------- /lua/lexers/nsis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/nsis.lua -------------------------------------------------------------------------------- /lua/lexers/null.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/null.lua -------------------------------------------------------------------------------- /lua/lexers/objeck.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/objeck.lua -------------------------------------------------------------------------------- /lua/lexers/objective_c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/objective_c.lua -------------------------------------------------------------------------------- /lua/lexers/org.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/org.lua -------------------------------------------------------------------------------- /lua/lexers/output.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/output.lua -------------------------------------------------------------------------------- /lua/lexers/pascal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pascal.lua -------------------------------------------------------------------------------- /lua/lexers/perl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/perl.lua -------------------------------------------------------------------------------- /lua/lexers/php.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/php.lua -------------------------------------------------------------------------------- /lua/lexers/pico8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pico8.lua -------------------------------------------------------------------------------- /lua/lexers/pike.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pike.lua -------------------------------------------------------------------------------- /lua/lexers/pkgbuild.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pkgbuild.lua -------------------------------------------------------------------------------- /lua/lexers/pony.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pony.lua -------------------------------------------------------------------------------- /lua/lexers/powershell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/powershell.lua -------------------------------------------------------------------------------- /lua/lexers/prolog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/prolog.lua -------------------------------------------------------------------------------- /lua/lexers/props.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/props.lua -------------------------------------------------------------------------------- /lua/lexers/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/protobuf.lua -------------------------------------------------------------------------------- /lua/lexers/ps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/ps.lua -------------------------------------------------------------------------------- /lua/lexers/pure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/pure.lua -------------------------------------------------------------------------------- /lua/lexers/python.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/python.lua -------------------------------------------------------------------------------- /lua/lexers/r.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/r.lua -------------------------------------------------------------------------------- /lua/lexers/rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rails.lua -------------------------------------------------------------------------------- /lua/lexers/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rc.lua -------------------------------------------------------------------------------- /lua/lexers/reason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/reason.lua -------------------------------------------------------------------------------- /lua/lexers/rebol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rebol.lua -------------------------------------------------------------------------------- /lua/lexers/rest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rest.lua -------------------------------------------------------------------------------- /lua/lexers/rexx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rexx.lua -------------------------------------------------------------------------------- /lua/lexers/rhtml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rhtml.lua -------------------------------------------------------------------------------- /lua/lexers/routeros.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/routeros.lua -------------------------------------------------------------------------------- /lua/lexers/rpmspec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rpmspec.lua -------------------------------------------------------------------------------- /lua/lexers/ruby.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/ruby.lua -------------------------------------------------------------------------------- /lua/lexers/rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/rust.lua -------------------------------------------------------------------------------- /lua/lexers/sass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/sass.lua -------------------------------------------------------------------------------- /lua/lexers/scala.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/scala.lua -------------------------------------------------------------------------------- /lua/lexers/scheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/scheme.lua -------------------------------------------------------------------------------- /lua/lexers/smalltalk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/smalltalk.lua -------------------------------------------------------------------------------- /lua/lexers/sml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/sml.lua -------------------------------------------------------------------------------- /lua/lexers/snobol4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/snobol4.lua -------------------------------------------------------------------------------- /lua/lexers/spin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/spin.lua -------------------------------------------------------------------------------- /lua/lexers/sql.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/sql.lua -------------------------------------------------------------------------------- /lua/lexers/strace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/strace.lua -------------------------------------------------------------------------------- /lua/lexers/systemd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/systemd.lua -------------------------------------------------------------------------------- /lua/lexers/taskpaper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/taskpaper.lua -------------------------------------------------------------------------------- /lua/lexers/tcl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/tcl.lua -------------------------------------------------------------------------------- /lua/lexers/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/template.txt -------------------------------------------------------------------------------- /lua/lexers/tex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/tex.lua -------------------------------------------------------------------------------- /lua/lexers/texinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/texinfo.lua -------------------------------------------------------------------------------- /lua/lexers/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/text.lua -------------------------------------------------------------------------------- /lua/lexers/todotxt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/todotxt.lua -------------------------------------------------------------------------------- /lua/lexers/toml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/toml.lua -------------------------------------------------------------------------------- /lua/lexers/troff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/troff.lua -------------------------------------------------------------------------------- /lua/lexers/txt2tags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/txt2tags.lua -------------------------------------------------------------------------------- /lua/lexers/typescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/typescript.lua -------------------------------------------------------------------------------- /lua/lexers/vala.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/vala.lua -------------------------------------------------------------------------------- /lua/lexers/vb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/vb.lua -------------------------------------------------------------------------------- /lua/lexers/vcard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/vcard.lua -------------------------------------------------------------------------------- /lua/lexers/verilog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/verilog.lua -------------------------------------------------------------------------------- /lua/lexers/vhdl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/vhdl.lua -------------------------------------------------------------------------------- /lua/lexers/wsf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/wsf.lua -------------------------------------------------------------------------------- /lua/lexers/xml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/xml.lua -------------------------------------------------------------------------------- /lua/lexers/xs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/xs.lua -------------------------------------------------------------------------------- /lua/lexers/xtend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/xtend.lua -------------------------------------------------------------------------------- /lua/lexers/yaml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/yaml.lua -------------------------------------------------------------------------------- /lua/lexers/zig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/lexers/zig.lua -------------------------------------------------------------------------------- /lua/plugins/complete-filename.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/complete-filename.lua -------------------------------------------------------------------------------- /lua/plugins/complete-word.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/complete-word.lua -------------------------------------------------------------------------------- /lua/plugins/digraph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/digraph.lua -------------------------------------------------------------------------------- /lua/plugins/filetype.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/filetype.lua -------------------------------------------------------------------------------- /lua/plugins/number-inc-dec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/number-inc-dec.lua -------------------------------------------------------------------------------- /lua/plugins/textobject-lexer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/plugins/textobject-lexer.lua -------------------------------------------------------------------------------- /lua/themes/base-16.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/themes/base-16.lua -------------------------------------------------------------------------------- /lua/themes/default.lua: -------------------------------------------------------------------------------- 1 | base-16.lua -------------------------------------------------------------------------------- /lua/themes/solarized.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/themes/solarized.lua -------------------------------------------------------------------------------- /lua/themes/zenburn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/themes/zenburn.lua -------------------------------------------------------------------------------- /lua/vis-std.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/vis-std.lua -------------------------------------------------------------------------------- /lua/vis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/vis.lua -------------------------------------------------------------------------------- /lua/visrc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/lua/visrc.lua -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/main.c -------------------------------------------------------------------------------- /man/vis-clipboard.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis-clipboard.1 -------------------------------------------------------------------------------- /man/vis-complete.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis-complete.1 -------------------------------------------------------------------------------- /man/vis-digraph.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis-digraph.1 -------------------------------------------------------------------------------- /man/vis-menu.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis-menu.1 -------------------------------------------------------------------------------- /man/vis-open.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis-open.1 -------------------------------------------------------------------------------- /man/vis.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/man/vis.1 -------------------------------------------------------------------------------- /map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/map.c -------------------------------------------------------------------------------- /map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/map.h -------------------------------------------------------------------------------- /sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/sam.c -------------------------------------------------------------------------------- /sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/sam.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.err 3 | *.status 4 | -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/README.md -------------------------------------------------------------------------------- /test/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/.gitignore -------------------------------------------------------------------------------- /test/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/Makefile -------------------------------------------------------------------------------- /test/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/README.md -------------------------------------------------------------------------------- /test/core/array-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/array-test.c -------------------------------------------------------------------------------- /test/core/buffer-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/buffer-test.c -------------------------------------------------------------------------------- /test/core/ccan-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan-config.c -------------------------------------------------------------------------------- /test/core/ccan/compiler/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /test/core/ccan/compiler/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/compiler/_info -------------------------------------------------------------------------------- /test/core/ccan/compiler/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/compiler/compiler.h -------------------------------------------------------------------------------- /test/core/ccan/compiler/test/compile_fail-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/compiler/test/compile_fail-printf.c -------------------------------------------------------------------------------- /test/core/ccan/compiler/test/run-is_compile_constant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/compiler/test/run-is_compile_constant.c -------------------------------------------------------------------------------- /test/core/ccan/tap/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/tap/_info -------------------------------------------------------------------------------- /test/core/ccan/tap/tap.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/tap/tap.3 -------------------------------------------------------------------------------- /test/core/ccan/tap/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/tap/tap.c -------------------------------------------------------------------------------- /test/core/ccan/tap/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/tap/tap.h -------------------------------------------------------------------------------- /test/core/ccan/tap/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/ccan/tap/test/run.c -------------------------------------------------------------------------------- /test/core/licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/licenses/CC0 -------------------------------------------------------------------------------- /test/core/map-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/map-test.c -------------------------------------------------------------------------------- /test/core/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/tap.h -------------------------------------------------------------------------------- /test/core/text-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/core/text-test.c -------------------------------------------------------------------------------- /test/fuzz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/.gitignore -------------------------------------------------------------------------------- /test/fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/Makefile -------------------------------------------------------------------------------- /test/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/README.md -------------------------------------------------------------------------------- /test/fuzz/buffer-fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/buffer-fuzzer.c -------------------------------------------------------------------------------- /test/fuzz/dictionaries/buffer-fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/dictionaries/buffer-fuzzer.dict -------------------------------------------------------------------------------- /test/fuzz/dictionaries/text-fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/dictionaries/text-fuzzer.dict -------------------------------------------------------------------------------- /test/fuzz/dictionaries/text-libfuzzer.dict: -------------------------------------------------------------------------------- 1 | text-fuzzer.dict -------------------------------------------------------------------------------- /test/fuzz/fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/fuzzer.h -------------------------------------------------------------------------------- /test/fuzz/inputs/buffer-fuzzer/buffer-fuzzer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/inputs/buffer-fuzzer/buffer-fuzzer.in -------------------------------------------------------------------------------- /test/fuzz/inputs/text-fuzzer/text-fuzzer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/inputs/text-fuzzer/text-fuzzer.in -------------------------------------------------------------------------------- /test/fuzz/inputs/text-libfuzzer/text-libfuzzer.in: -------------------------------------------------------------------------------- 1 | ../text-fuzzer/text-fuzzer.in -------------------------------------------------------------------------------- /test/fuzz/text-fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/fuzz/text-fuzzer.c -------------------------------------------------------------------------------- /test/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/Makefile -------------------------------------------------------------------------------- /test/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/README.md -------------------------------------------------------------------------------- /test/lua/cursor.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/cursor.in -------------------------------------------------------------------------------- /test/lua/cursor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/cursor.lua -------------------------------------------------------------------------------- /test/lua/file-empty.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/lua/file-empty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/file-empty.lua -------------------------------------------------------------------------------- /test/lua/lines.in: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 3 4 | 5 | 5 6 | -------------------------------------------------------------------------------- /test/lua/lines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/lines.lua -------------------------------------------------------------------------------- /test/lua/map-basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/map-basic.lua -------------------------------------------------------------------------------- /test/lua/pipe.in: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /test/lua/pipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/pipe.lua -------------------------------------------------------------------------------- /test/lua/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/test.sh -------------------------------------------------------------------------------- /test/lua/visrc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/lua/visrc.lua -------------------------------------------------------------------------------- /test/sam/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.err 3 | *.disabled -------------------------------------------------------------------------------- /test/sam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/Makefile -------------------------------------------------------------------------------- /test/sam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/README.md -------------------------------------------------------------------------------- /test/sam/addresses/columns.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/addresses/columns.cmd -------------------------------------------------------------------------------- /test/sam/addresses/columns.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/addresses/columns.in -------------------------------------------------------------------------------- /test/sam/addresses/first-last.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/addresses/first-last.cmd -------------------------------------------------------------------------------- /test/sam/addresses/first-last.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/addresses/first-last.in -------------------------------------------------------------------------------- /test/sam/addresses/lines.cmd: -------------------------------------------------------------------------------- 1 | 10,10 c/--\n/ 2 | 16,17 { 3 | i// 5 | } 6 | 20d 7 | -------------------------------------------------------------------------------- /test/sam/addresses/lines.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/sam/addresses/lines.in -------------------------------------------------------------------------------- /test/sam/addresses/second.cmd: -------------------------------------------------------------------------------- 1 | 0/Emacs/+// { 2 | i/>>/ 3 | a/</ 3 | { 4 | a/ 2 | int main(void){puts("Hello world!");return 0;} 3 | -------------------------------------------------------------------------------- /test/vim/golf/4d1ac1800a045132c0000011/1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4d1ac1800a045132c0000011/1.keys -------------------------------------------------------------------------------- /test/vim/golf/4d1ac1800a045132c0000011/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4d1ac1800a045132c0000011/1.ref -------------------------------------------------------------------------------- /test/vim/golf/4d665abd7d73e02a55000009/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4d665abd7d73e02a55000009/1.in -------------------------------------------------------------------------------- /test/vim/golf/4d665abd7d73e02a55000009/1.keys.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4d665abd7d73e02a55000009/1.keys.broken -------------------------------------------------------------------------------- /test/vim/golf/4d665abd7d73e02a55000009/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4d665abd7d73e02a55000009/1.ref -------------------------------------------------------------------------------- /test/vim/golf/4ddbd92898957e0001000016/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ddbd92898957e0001000016/1.in -------------------------------------------------------------------------------- /test/vim/golf/4ddbd92898957e0001000016/1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ddbd92898957e0001000016/1.keys -------------------------------------------------------------------------------- /test/vim/golf/4ddbd92898957e0001000016/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ddbd92898957e0001000016/1.ref -------------------------------------------------------------------------------- /test/vim/golf/4e31627b74ab580001000007/1.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4e31627b74ab580001000007/1.disabled -------------------------------------------------------------------------------- /test/vim/golf/4e31627b74ab580001000007/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4e31627b74ab580001000007/1.in -------------------------------------------------------------------------------- /test/vim/golf/4e31627b74ab580001000007/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4e31627b74ab580001000007/1.ref -------------------------------------------------------------------------------- /test/vim/golf/4ef209ef78702b0001000019/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ef209ef78702b0001000019/1.in -------------------------------------------------------------------------------- /test/vim/golf/4ef209ef78702b0001000019/1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ef209ef78702b0001000019/1.keys -------------------------------------------------------------------------------- /test/vim/golf/4ef209ef78702b0001000019/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4ef209ef78702b0001000019/1.ref -------------------------------------------------------------------------------- /test/vim/golf/4fbf8e303be58b0001000024/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4fbf8e303be58b0001000024/1.in -------------------------------------------------------------------------------- /test/vim/golf/4fbf8e303be58b0001000024/1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4fbf8e303be58b0001000024/1.keys -------------------------------------------------------------------------------- /test/vim/golf/4fbf8e303be58b0001000024/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/4fbf8e303be58b0001000024/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50ad2cb165b8db0002000029/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50ad2cb165b8db0002000029/1.in -------------------------------------------------------------------------------- /test/vim/golf/50ad2cb165b8db0002000029/1.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50ad2cb165b8db0002000029/1.keys -------------------------------------------------------------------------------- /test/vim/golf/50ad2cb165b8db0002000029/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50ad2cb165b8db0002000029/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50b1d7239aad89000200002d/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50b1d7239aad89000200002d/1.in -------------------------------------------------------------------------------- /test/vim/golf/50b1d7239aad89000200002d/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50b1d7239aad89000200002d/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50c13afab855760002000049/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c13afab855760002000049/1.in -------------------------------------------------------------------------------- /test/vim/golf/50c13afab855760002000049/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c13afab855760002000049/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50c18a08b855760002000056/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c18a08b855760002000056/1.in -------------------------------------------------------------------------------- /test/vim/golf/50c18a08b855760002000056/1.keys.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c18a08b855760002000056/1.keys.broken -------------------------------------------------------------------------------- /test/vim/golf/50c18a08b855760002000056/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c18a08b855760002000056/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50c2c246b0544c000200003f/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c2c246b0544c000200003f/1.in -------------------------------------------------------------------------------- /test/vim/golf/50c2c246b0544c000200003f/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50c2c246b0544c000200003f/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50d0c33daa503f000200000f/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50d0c33daa503f000200000f/1.in -------------------------------------------------------------------------------- /test/vim/golf/50d0c33daa503f000200000f/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50d0c33daa503f000200000f/1.ref -------------------------------------------------------------------------------- /test/vim/golf/50ee7504c0e3aa0002000040/1.in: -------------------------------------------------------------------------------- 1 | vimchallenge 2 | -------------------------------------------------------------------------------- /test/vim/golf/50ee7504c0e3aa0002000040/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/50ee7504c0e3aa0002000040/1.ref -------------------------------------------------------------------------------- /test/vim/golf/51103ad8041832000200003f/1.in: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /test/vim/golf/51103ad8041832000200003f/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/51103ad8041832000200003f/1.ref -------------------------------------------------------------------------------- /test/vim/golf/5192f96ad8df110002000002/1.in: -------------------------------------------------------------------------------- 1 | one two 2 | three 3 | -------------------------------------------------------------------------------- /test/vim/golf/5192f96ad8df110002000002/1.ref: -------------------------------------------------------------------------------- 1 | (one) (two) 2 | (three) 3 | -------------------------------------------------------------------------------- /test/vim/golf/524e1a20b81fe50002000008/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/524e1a20b81fe50002000008/1.in -------------------------------------------------------------------------------- /test/vim/golf/524e1a20b81fe50002000008/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/524e1a20b81fe50002000008/1.ref -------------------------------------------------------------------------------- /test/vim/golf/52c3cb0d9b8634000200000e/1.in: -------------------------------------------------------------------------------- 1 | A HAPPY END WITH YEAR 2013 ! 2 | -------------------------------------------------------------------------------- /test/vim/golf/52c3cb0d9b8634000200000e/1.ref: -------------------------------------------------------------------------------- 1 | A HAPPY NEW YEAR 2014 ! 2 | -------------------------------------------------------------------------------- /test/vim/golf/53369b712a09c1000223fb57/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/53369b712a09c1000223fb57/1.in -------------------------------------------------------------------------------- /test/vim/golf/53369b712a09c1000223fb57/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/53369b712a09c1000223fb57/1.ref -------------------------------------------------------------------------------- /test/vim/golf/536cfa23fcccd100025678bd/1.in: -------------------------------------------------------------------------------- 1 | attr("y",function(v){return v}) 2 | -------------------------------------------------------------------------------- /test/vim/golf/536cfa23fcccd100025678bd/1.ref: -------------------------------------------------------------------------------- 1 | f=function(v){return v}; 2 | attr("y",f) 3 | -------------------------------------------------------------------------------- /test/vim/golf/537a553282aa3e000222048a/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/537a553282aa3e000222048a/1.in -------------------------------------------------------------------------------- /test/vim/golf/537a553282aa3e000222048a/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/537a553282aa3e000222048a/1.ref -------------------------------------------------------------------------------- /test/vim/golf/53d93fc3768e280002124f23/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/53d93fc3768e280002124f23/1.in -------------------------------------------------------------------------------- /test/vim/golf/53d93fc3768e280002124f23/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/53d93fc3768e280002124f23/1.ref -------------------------------------------------------------------------------- /test/vim/golf/54595b13128576000257a3c1/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54595b13128576000257a3c1/1.in -------------------------------------------------------------------------------- /test/vim/golf/54595b13128576000257a3c1/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54595b13128576000257a3c1/1.ref -------------------------------------------------------------------------------- /test/vim/golf/5462e3f41198b80002512673/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/5462e3f41198b80002512673/1.in -------------------------------------------------------------------------------- /test/vim/golf/5462e3f41198b80002512673/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/5462e3f41198b80002512673/1.ref -------------------------------------------------------------------------------- /test/vim/golf/54698da795f6da00020d85ed/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54698da795f6da00020d85ed/1.in -------------------------------------------------------------------------------- /test/vim/golf/54698da795f6da00020d85ed/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54698da795f6da00020d85ed/1.ref -------------------------------------------------------------------------------- /test/vim/golf/54862fbb3f90ac0002904cf5/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54862fbb3f90ac0002904cf5/1.in -------------------------------------------------------------------------------- /test/vim/golf/54862fbb3f90ac0002904cf5/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/54862fbb3f90ac0002904cf5/1.ref -------------------------------------------------------------------------------- /test/vim/golf/55771cc4750ef86573003b83/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/55771cc4750ef86573003b83/1.in -------------------------------------------------------------------------------- /test/vim/golf/55771cc4750ef86573003b83/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/55771cc4750ef86573003b83/1.ref -------------------------------------------------------------------------------- /test/vim/golf/559c30948ef59c0eb7000002/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/559c30948ef59c0eb7000002/1.in -------------------------------------------------------------------------------- /test/vim/golf/559c30948ef59c0eb7000002/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/559c30948ef59c0eb7000002/1.ref -------------------------------------------------------------------------------- /test/vim/golf/55b18bbea9c2c30d04000001/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/55b18bbea9c2c30d04000001/1.in -------------------------------------------------------------------------------- /test/vim/golf/55b18bbea9c2c30d04000001/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/55b18bbea9c2c30d04000001/1.ref -------------------------------------------------------------------------------- /test/vim/golf/55bcdc3ef4219f456102374f/1.in: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /test/vim/golf/55bcdc3ef4219f456102374f/1.ref: -------------------------------------------------------------------------------- 1 | The quick lazy dog jumps over the brown fox. 2 | -------------------------------------------------------------------------------- /test/vim/golf/55f9720b4a665c2acf0008c8/1.in: -------------------------------------------------------------------------------- 1 | Lôrem Ipsum 2 | Dolor.eros 3 | Auctor: eros (elémentum) 4 | Tincïdunt, âc 5 | -------------------------------------------------------------------------------- /test/vim/golf/55f9720b4a665c2acf0008c8/1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/golf/55f9720b4a665c2acf0008c8/1.ref -------------------------------------------------------------------------------- /test/vim/motions/goto.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/vim/motions/goto.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/motions/goto.keys -------------------------------------------------------------------------------- /test/vim/operators/change/change.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/change/change.in -------------------------------------------------------------------------------- /test/vim/operators/change/change.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/change/change.keys -------------------------------------------------------------------------------- /test/vim/operators/delete/delete.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/delete/delete.in -------------------------------------------------------------------------------- /test/vim/operators/delete/delete.keys: -------------------------------------------------------------------------------- 1 | /two 2 | djd2j 3 | -------------------------------------------------------------------------------- /test/vim/operators/insert/append.in: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /test/vim/operators/insert/append.keys: -------------------------------------------------------------------------------- 1 | 4a# 2 | f9 3 | 2. 4 | -------------------------------------------------------------------------------- /test/vim/operators/insert/insert.in: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /test/vim/operators/insert/insert.keys: -------------------------------------------------------------------------------- 1 | 4i# 2 | f9 3 | 2. 4 | -------------------------------------------------------------------------------- /test/vim/operators/join/count.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /test/vim/operators/join/count.keys: -------------------------------------------------------------------------------- 1 | 3J 2 | -------------------------------------------------------------------------------- /test/vim/operators/join/empty.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/empty.in -------------------------------------------------------------------------------- /test/vim/operators/join/empty.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/empty.keys -------------------------------------------------------------------------------- /test/vim/operators/join/visual-line.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 9 9 | 10 10 | -------------------------------------------------------------------------------- /test/vim/operators/join/visual-line.keys: -------------------------------------------------------------------------------- 1 | jV2jJ 2 | /6 3 | VJ -------------------------------------------------------------------------------- /test/vim/operators/join/visual.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/visual.in -------------------------------------------------------------------------------- /test/vim/operators/join/visual.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/visual.keys -------------------------------------------------------------------------------- /test/vim/operators/join/whitespace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/whitespace.in -------------------------------------------------------------------------------- /test/vim/operators/join/whitespace.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/join/whitespace.keys -------------------------------------------------------------------------------- /test/vim/operators/openline/openline.in: -------------------------------------------------------------------------------- 1 | === 2 | --- 3 | === 4 | -------------------------------------------------------------------------------- /test/vim/operators/openline/openline.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/openline/openline.keys -------------------------------------------------------------------------------- /test/vim/operators/put/put.in: -------------------------------------------------------------------------------- 1 | one two 2 | -------------------------------------------------------------------------------- /test/vim/operators/put/put.keys: -------------------------------------------------------------------------------- 1 | ywPw3Pw. 2 | -------------------------------------------------------------------------------- /test/vim/operators/put/visual.in: -------------------------------------------------------------------------------- 1 | longword 2 | short 3 | -------------------------------------------------------------------------------- /test/vim/operators/put/visual.keys: -------------------------------------------------------------------------------- 1 | yejvep 2 | anewline 3 | 4 | -------------------------------------------------------------------------------- /test/vim/operators/replace/replace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/replace/replace.in -------------------------------------------------------------------------------- /test/vim/operators/replace/replace.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/replace/replace.keys -------------------------------------------------------------------------------- /test/vim/operators/shift/shift.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/operators/shift/shift.in -------------------------------------------------------------------------------- /test/vim/operators/shift/shift.keys: -------------------------------------------------------------------------------- 1 | >>j<< 2 | -------------------------------------------------------------------------------- /test/vim/operators/yank/yank.in: -------------------------------------------------------------------------------- 1 | one two 2 | -------------------------------------------------------------------------------- /test/vim/operators/yank/yank.keys: -------------------------------------------------------------------------------- 1 | y$P0yyp.. 2 | -------------------------------------------------------------------------------- /test/vim/registers/black-hole.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/black-hole.in -------------------------------------------------------------------------------- /test/vim/registers/black-hole.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/black-hole.keys -------------------------------------------------------------------------------- /test/vim/registers/command.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/command.in -------------------------------------------------------------------------------- /test/vim/registers/command.keys: -------------------------------------------------------------------------------- 1 | :+-d 2 | O: 3 | j 4 | @: 5 | -------------------------------------------------------------------------------- /test/vim/registers/named.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/named.in -------------------------------------------------------------------------------- /test/vim/registers/named.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/named.keys -------------------------------------------------------------------------------- /test/vim/registers/search.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/search.in -------------------------------------------------------------------------------- /test/vim/registers/search.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/search.keys -------------------------------------------------------------------------------- /test/vim/registers/zero.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/zero.in -------------------------------------------------------------------------------- /test/vim/registers/zero.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/registers/zero.keys -------------------------------------------------------------------------------- /test/vim/special-files/combining.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/special-files/combining.in -------------------------------------------------------------------------------- /test/vim/special-files/combining.keys: -------------------------------------------------------------------------------- 1 | ga 2 | g8 3 | dl 4 | $ 5 | a+ 6 | p 7 | -------------------------------------------------------------------------------- /test/vim/special-files/mmap.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/special-files/mmap.in -------------------------------------------------------------------------------- /test/vim/special-files/mmap.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/special-files/mmap.keys -------------------------------------------------------------------------------- /test/vim/special-files/search-binary.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/special-files/search-binary.in -------------------------------------------------------------------------------- /test/vim/special-files/search-binary.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/special-files/search-binary.keys -------------------------------------------------------------------------------- /test/vim/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/test.sh -------------------------------------------------------------------------------- /test/vim/text-objects/braces-count-linewise.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/text-objects/braces-count-linewise.in -------------------------------------------------------------------------------- /test/vim/text-objects/braces-count-linewise.keys: -------------------------------------------------------------------------------- 1 | /foo 2 | v2a}Vd 3 | -------------------------------------------------------------------------------- /test/vim/text-objects/words-count.in: -------------------------------------------------------------------------------- 1 | The brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /test/vim/text-objects/words-count.keys: -------------------------------------------------------------------------------- 1 | 3ciwchanged 2 | /fox 3 | 5. 4 | -------------------------------------------------------------------------------- /test/vim/text-objects/words-eol.in: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | -------------------------------------------------------------------------------- /test/vim/text-objects/words-eol.keys: -------------------------------------------------------------------------------- 1 | viwc- -------------------------------------------------------------------------------- /test/vim/text-objects/words-symbols.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/text-objects/words-symbols.in -------------------------------------------------------------------------------- /test/vim/text-objects/words-symbols.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vim/text-objects/words-symbols.keys -------------------------------------------------------------------------------- /test/vim/visrc.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vis/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.err 3 | *.disabled -------------------------------------------------------------------------------- /test/vis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/Makefile -------------------------------------------------------------------------------- /test/vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/README.md -------------------------------------------------------------------------------- /test/vis/errors/filter.in: -------------------------------------------------------------------------------- 1 | Filter command failed 2 | -------------------------------------------------------------------------------- /test/vis/errors/filter.keys: -------------------------------------------------------------------------------- 1 | :1 | tr a-z A-Z && false 2 | -------------------------------------------------------------------------------- /test/vis/errors/filter.ref: -------------------------------------------------------------------------------- 1 | Filter command failed 2 | -------------------------------------------------------------------------------- /test/vis/errors/pipe-in.in: -------------------------------------------------------------------------------- 1 | Pipe in command failed 2 | -------------------------------------------------------------------------------- /test/vis/errors/pipe-in.keys: -------------------------------------------------------------------------------- 1 | :1 < echo FAILED && false 2 | -------------------------------------------------------------------------------- /test/vis/errors/pipe-in.ref: -------------------------------------------------------------------------------- 1 | Pipe in command failed 2 | -------------------------------------------------------------------------------- /test/vis/insert-mode/autoindent.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/autoindent.in -------------------------------------------------------------------------------- /test/vis/insert-mode/autoindent.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/autoindent.keys -------------------------------------------------------------------------------- /test/vis/insert-mode/autoindent.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/autoindent.ref -------------------------------------------------------------------------------- /test/vis/insert-mode/digraph.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/digraph.in -------------------------------------------------------------------------------- /test/vis/insert-mode/digraph.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/digraph.keys -------------------------------------------------------------------------------- /test/vis/insert-mode/digraph.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/digraph.ref -------------------------------------------------------------------------------- /test/vis/insert-mode/verbatim.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/verbatim.in -------------------------------------------------------------------------------- /test/vis/insert-mode/verbatim.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/verbatim.keys -------------------------------------------------------------------------------- /test/vis/insert-mode/verbatim.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/insert-mode/verbatim.ref -------------------------------------------------------------------------------- /test/vis/interop/pre-save-grows.in: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | -------------------------------------------------------------------------------- /test/vis/interop/pre-save-grows.keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vis/interop/pre-save-grows.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/interop/pre-save-grows.lua -------------------------------------------------------------------------------- /test/vis/interop/pre-save-grows.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/interop/pre-save-grows.ref -------------------------------------------------------------------------------- /test/vis/interop/pre-save-shrinks.in: -------------------------------------------------------------------------------- 1 | halfhalf 2 | -------------------------------------------------------------------------------- /test/vis/interop/pre-save-shrinks.keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vis/interop/pre-save-shrinks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/interop/pre-save-shrinks.lua -------------------------------------------------------------------------------- /test/vis/interop/pre-save-shrinks.ref: -------------------------------------------------------------------------------- 1 | half 2 | -------------------------------------------------------------------------------- /test/vis/mappings/insert-mode.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/vis/mappings/insert-mode.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/mappings/insert-mode.keys -------------------------------------------------------------------------------- /test/vis/mappings/insert-mode.ref: -------------------------------------------------------------------------------- 1 | >< 2 | ><>x> 3 | j -------------------------------------------------------------------------------- /test/vis/motions/line-begin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-begin.in -------------------------------------------------------------------------------- /test/vis/motions/line-begin.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-begin.keys -------------------------------------------------------------------------------- /test/vis/motions/line-begin.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-begin.ref -------------------------------------------------------------------------------- /test/vis/motions/line-char-first.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-first.in -------------------------------------------------------------------------------- /test/vis/motions/line-char-first.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-first.keys -------------------------------------------------------------------------------- /test/vis/motions/line-char-first.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-first.ref -------------------------------------------------------------------------------- /test/vis/motions/line-char-last.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-last.in -------------------------------------------------------------------------------- /test/vis/motions/line-char-last.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-last.keys -------------------------------------------------------------------------------- /test/vis/motions/line-char-last.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-char-last.ref -------------------------------------------------------------------------------- /test/vis/motions/line-end.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-end.in -------------------------------------------------------------------------------- /test/vis/motions/line-end.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-end.keys -------------------------------------------------------------------------------- /test/vis/motions/line-end.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/line-end.ref -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-bigword.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-bigword.in -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-bigword.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-bigword.keys -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-bigword.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-bigword.ref -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-word.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-word.in -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-word.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-word.keys -------------------------------------------------------------------------------- /test/vis/motions/next-end-of-word.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-end-of-word.ref -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-bigword.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-bigword.in -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-bigword.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-bigword.keys -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-bigword.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-bigword.ref -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-word.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-word.in -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-word.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-word.keys -------------------------------------------------------------------------------- /test/vis/motions/next-start-of-word.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/next-start-of-word.ref -------------------------------------------------------------------------------- /test/vis/motions/percent.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /test/vis/motions/percent.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/percent.keys -------------------------------------------------------------------------------- /test/vis/motions/percent.ref: -------------------------------------------------------------------------------- 1 | |1 2 | 2 3 | 3= 4 | 4 5 | 5 6 | | -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-bigword.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-bigword.in -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-bigword.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-bigword.keys -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-bigword.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-bigword.ref -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-word.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-word.in -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-word.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-word.keys -------------------------------------------------------------------------------- /test/vis/motions/prev-end-of-word.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-end-of-word.ref -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-bigword.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-bigword.in -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-bigword.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-bigword.keys -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-bigword.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-bigword.ref -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-word.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-word.in -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-word.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-word.keys -------------------------------------------------------------------------------- /test/vis/motions/prev-start-of-word.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/prev-start-of-word.ref -------------------------------------------------------------------------------- /test/vis/motions/till-left.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-left.in -------------------------------------------------------------------------------- /test/vis/motions/till-left.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-left.keys -------------------------------------------------------------------------------- /test/vis/motions/till-left.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-left.ref -------------------------------------------------------------------------------- /test/vis/motions/till-right.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-right.in -------------------------------------------------------------------------------- /test/vis/motions/till-right.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-right.keys -------------------------------------------------------------------------------- /test/vis/motions/till-right.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/till-right.ref -------------------------------------------------------------------------------- /test/vis/motions/to-left.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-left.in -------------------------------------------------------------------------------- /test/vis/motions/to-left.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-left.keys -------------------------------------------------------------------------------- /test/vis/motions/to-left.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-left.ref -------------------------------------------------------------------------------- /test/vis/motions/to-right.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-right.in -------------------------------------------------------------------------------- /test/vis/motions/to-right.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-right.keys -------------------------------------------------------------------------------- /test/vis/motions/to-right.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/motions/to-right.ref -------------------------------------------------------------------------------- /test/vis/prompt/history.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/prompt/history.in -------------------------------------------------------------------------------- /test/vis/prompt/history.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/prompt/history.keys -------------------------------------------------------------------------------- /test/vis/prompt/history.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/prompt/history.ref -------------------------------------------------------------------------------- /test/vis/selections/align-indent-columns.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align-indent-columns.in -------------------------------------------------------------------------------- /test/vis/selections/align-indent-columns.keys: -------------------------------------------------------------------------------- 1 | :x/[0-9]+ 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/vis/selections/align-indent-columns.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align-indent-columns.ref -------------------------------------------------------------------------------- /test/vis/selections/align-indent.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align-indent.in -------------------------------------------------------------------------------- /test/vis/selections/align-indent.keys: -------------------------------------------------------------------------------- 1 | vGI 2 | i| 3 | -------------------------------------------------------------------------------- /test/vis/selections/align-indent.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align-indent.ref -------------------------------------------------------------------------------- /test/vis/selections/align.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align.in -------------------------------------------------------------------------------- /test/vis/selections/align.keys: -------------------------------------------------------------------------------- 1 | vGI 2 | 3 | i| 4 | -------------------------------------------------------------------------------- /test/vis/selections/align.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/align.ref -------------------------------------------------------------------------------- /test/vis/selections/complement-whole.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/complement-whole.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/complement-whole.keys -------------------------------------------------------------------------------- /test/vis/selections/complement-whole.ref: -------------------------------------------------------------------------------- 1 | 1| 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/complement.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/complement.in -------------------------------------------------------------------------------- /test/vis/selections/complement.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/complement.keys -------------------------------------------------------------------------------- /test/vis/selections/complement.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/complement.ref -------------------------------------------------------------------------------- /test/vis/selections/end-of-file.in: -------------------------------------------------------------------------------- 1 | 01 2 | 3 | 12 4 | 5 | 23 6 | 7 | 34 8 | 9 | 4 10 | -------------------------------------------------------------------------------- /test/vis/selections/end-of-file.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/end-of-file.keys -------------------------------------------------------------------------------- /test/vis/selections/end-of-file.ref: -------------------------------------------------------------------------------- 1 | 01 2 | 3 | 12 4 | 5 | 23 6 | 7 | 34 8 | 9 | 45 10 | 11 | 5 12 | 13 | -------------------------------------------------------------------------------- /test/vis/selections/intersect-adjacent.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/intersect-adjacent.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-adjacent.keys -------------------------------------------------------------------------------- /test/vis/selections/intersect-adjacent.ref: -------------------------------------------------------------------------------- 1 | 1| 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/intersect-contained.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-contained.in -------------------------------------------------------------------------------- /test/vis/selections/intersect-contained.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-contained.keys -------------------------------------------------------------------------------- /test/vis/selections/intersect-contained.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-contained.ref -------------------------------------------------------------------------------- /test/vis/selections/intersect-empty.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-empty.in -------------------------------------------------------------------------------- /test/vis/selections/intersect-empty.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-empty.keys -------------------------------------------------------------------------------- /test/vis/selections/intersect-empty.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-empty.ref -------------------------------------------------------------------------------- /test/vis/selections/intersect-overlapping.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-overlapping.in -------------------------------------------------------------------------------- /test/vis/selections/intersect-overlapping.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-overlapping.keys -------------------------------------------------------------------------------- /test/vis/selections/intersect-overlapping.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-overlapping.ref -------------------------------------------------------------------------------- /test/vis/selections/intersect-whole.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-whole.in -------------------------------------------------------------------------------- /test/vis/selections/intersect-whole.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-whole.keys -------------------------------------------------------------------------------- /test/vis/selections/intersect-whole.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/intersect-whole.ref -------------------------------------------------------------------------------- /test/vis/selections/minus-adjacent.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/minus-adjacent.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-adjacent.keys -------------------------------------------------------------------------------- /test/vis/selections/minus-adjacent.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-adjacent.ref -------------------------------------------------------------------------------- /test/vis/selections/minus-contained.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-contained.in -------------------------------------------------------------------------------- /test/vis/selections/minus-contained.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-contained.keys -------------------------------------------------------------------------------- /test/vis/selections/minus-contained.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-contained.ref -------------------------------------------------------------------------------- /test/vis/selections/minus-empty.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-empty.in -------------------------------------------------------------------------------- /test/vis/selections/minus-empty.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-empty.keys -------------------------------------------------------------------------------- /test/vis/selections/minus-empty.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-empty.ref -------------------------------------------------------------------------------- /test/vis/selections/minus-overlapping.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-overlapping.in -------------------------------------------------------------------------------- /test/vis/selections/minus-overlapping.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-overlapping.keys -------------------------------------------------------------------------------- /test/vis/selections/minus-overlapping.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-overlapping.ref -------------------------------------------------------------------------------- /test/vis/selections/minus-whole.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-whole.in -------------------------------------------------------------------------------- /test/vis/selections/minus-whole.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-whole.keys -------------------------------------------------------------------------------- /test/vis/selections/minus-whole.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/minus-whole.ref -------------------------------------------------------------------------------- /test/vis/selections/new-above-first-below-last.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /test/vis/selections/new-above-first-below-last.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-above-first-below-last.keys -------------------------------------------------------------------------------- /test/vis/selections/new-above-first-below-last.ref: -------------------------------------------------------------------------------- 1 | >1 2 | >2 3 | >3 4 | >4 5 | >5 6 | -------------------------------------------------------------------------------- /test/vis/selections/new-below-above.in: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 2 4 | 5 | 3 6 | -------------------------------------------------------------------------------- /test/vis/selections/new-below-above.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-below-above.keys -------------------------------------------------------------------------------- /test/vis/selections/new-below-above.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-below-above.ref -------------------------------------------------------------------------------- /test/vis/selections/new-end-of-line.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-end-of-line.in -------------------------------------------------------------------------------- /test/vis/selections/new-end-of-line.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-end-of-line.keys -------------------------------------------------------------------------------- /test/vis/selections/new-end-of-line.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-end-of-line.ref -------------------------------------------------------------------------------- /test/vis/selections/new-start-of-line.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-start-of-line.in -------------------------------------------------------------------------------- /test/vis/selections/new-start-of-line.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-start-of-line.keys -------------------------------------------------------------------------------- /test/vis/selections/new-start-of-line.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/new-start-of-line.ref -------------------------------------------------------------------------------- /test/vis/selections/normal-mode-wq.in: -------------------------------------------------------------------------------- 1 | make 2 | sure 3 | :wq 4 | works 5 | when 6 | multiple 7 | cursors 8 | exist 9 | -------------------------------------------------------------------------------- /test/vis/selections/normal-mode-wq.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/normal-mode-wq.keys -------------------------------------------------------------------------------- /test/vis/selections/normal-mode-wq.ref: -------------------------------------------------------------------------------- 1 | make 2 | sure 3 | :wq 4 | works 5 | when 6 | multiple 7 | cursors 8 | exist 9 | -------------------------------------------------------------------------------- /test/vis/selections/odd-even.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/odd-even.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/odd-even.keys -------------------------------------------------------------------------------- /test/vis/selections/odd-even.ref: -------------------------------------------------------------------------------- 1 | -1 2 | +2 3 | -3 4 | +4 5 | -5 6 | +6 7 | -7 8 | +8 9 | -9 10 | +10 11 | -------------------------------------------------------------------------------- /test/vis/selections/out-of-view.in.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/out-of-view.in.disabled -------------------------------------------------------------------------------- /test/vis/selections/out-of-view.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/out-of-view.keys -------------------------------------------------------------------------------- /test/vis/selections/out-of-view.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/out-of-view.ref -------------------------------------------------------------------------------- /test/vis/selections/remove-column.in: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | 4 5 6 3 | 7 8 9 4 | -------------------------------------------------------------------------------- /test/vis/selections/remove-column.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/remove-column.keys -------------------------------------------------------------------------------- /test/vis/selections/remove-column.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/remove-column.ref -------------------------------------------------------------------------------- /test/vis/selections/select-match.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/select-match.in -------------------------------------------------------------------------------- /test/vis/selections/select-match.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/select-match.keys -------------------------------------------------------------------------------- /test/vis/selections/select-match.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/select-match.ref -------------------------------------------------------------------------------- /test/vis/selections/selections-rotate.in: -------------------------------------------------------------------------------- 1 | 1 2 3 2 | 4 5 6 3 | 7 8 9 4 | -------------------------------------------------------------------------------- /test/vis/selections/selections-rotate.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/selections-rotate.keys -------------------------------------------------------------------------------- /test/vis/selections/selections-rotate.ref: -------------------------------------------------------------------------------- 1 | 2 3 1 2 | 5 6 4 3 | 8 9 7 4 | -------------------------------------------------------------------------------- /test/vis/selections/selections-trim.in: -------------------------------------------------------------------------------- 1 | 1, 2, 3 2 | 4, 5, 6 3 | 7, 8, 9 4 | -------------------------------------------------------------------------------- /test/vis/selections/selections-trim.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/selections-trim.keys -------------------------------------------------------------------------------- /test/vis/selections/selections-trim.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/selections-trim.ref -------------------------------------------------------------------------------- /test/vis/selections/union-adjacent.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 11 | -------------------------------------------------------------------------------- /test/vis/selections/union-adjacent.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-adjacent.keys -------------------------------------------------------------------------------- /test/vis/selections/union-adjacent.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-adjacent.ref -------------------------------------------------------------------------------- /test/vis/selections/union-contained.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-contained.in -------------------------------------------------------------------------------- /test/vis/selections/union-contained.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-contained.keys -------------------------------------------------------------------------------- /test/vis/selections/union-contained.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-contained.ref -------------------------------------------------------------------------------- /test/vis/selections/union-empty.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-empty.in -------------------------------------------------------------------------------- /test/vis/selections/union-empty.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-empty.keys -------------------------------------------------------------------------------- /test/vis/selections/union-empty.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-empty.ref -------------------------------------------------------------------------------- /test/vis/selections/union-overlapping.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-overlapping.in -------------------------------------------------------------------------------- /test/vis/selections/union-overlapping.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-overlapping.keys -------------------------------------------------------------------------------- /test/vis/selections/union-overlapping.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-overlapping.ref -------------------------------------------------------------------------------- /test/vis/selections/union-whole.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-whole.in -------------------------------------------------------------------------------- /test/vis/selections/union-whole.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-whole.keys -------------------------------------------------------------------------------- /test/vis/selections/union-whole.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/selections/union-whole.ref -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/marks.in: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/marks.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/marks.keys -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/marks.ref: -------------------------------------------------------------------------------- 1 | The >quick< brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-down.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-down.in -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-down.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-down.keys -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-down.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-down.ref -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-up.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-up.in -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-up.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-up.keys -------------------------------------------------------------------------------- /test/vis/structural-regex/addresses/round-up.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/structural-regex/addresses/round-up.ref -------------------------------------------------------------------------------- /test/vis/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/test.sh -------------------------------------------------------------------------------- /test/vis/text-objects/indentation.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/indentation.in -------------------------------------------------------------------------------- /test/vis/text-objects/indentation.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/indentation.keys -------------------------------------------------------------------------------- /test/vis/text-objects/indentation.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/indentation.ref -------------------------------------------------------------------------------- /test/vis/text-objects/lexer.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/lexer.in -------------------------------------------------------------------------------- /test/vis/text-objects/lexer.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/lexer.keys -------------------------------------------------------------------------------- /test/vis/text-objects/lexer.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/lexer.ref -------------------------------------------------------------------------------- /test/vis/text-objects/line.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/line.in -------------------------------------------------------------------------------- /test/vis/text-objects/line.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/line.keys -------------------------------------------------------------------------------- /test/vis/text-objects/line.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/line.ref -------------------------------------------------------------------------------- /test/vis/text-objects/search-result.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/search-result.in -------------------------------------------------------------------------------- /test/vis/text-objects/search-result.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/search-result.keys -------------------------------------------------------------------------------- /test/vis/text-objects/search-result.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/text-objects/search-result.ref -------------------------------------------------------------------------------- /test/vis/visrc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/visrc.lua -------------------------------------------------------------------------------- /test/vis/visual-mode/orientation.in: -------------------------------------------------------------------------------- 1 | { { = } } 2 | -------------------------------------------------------------------------------- /test/vis/visual-mode/orientation.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/test/vis/visual-mode/orientation.keys -------------------------------------------------------------------------------- /test/vis/visual-mode/orientation.ref: -------------------------------------------------------------------------------- 1 | { > { = } < } 2 | -------------------------------------------------------------------------------- /text-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-common.c -------------------------------------------------------------------------------- /text-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-internal.h -------------------------------------------------------------------------------- /text-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-io.c -------------------------------------------------------------------------------- /text-iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-iterator.c -------------------------------------------------------------------------------- /text-motions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-motions.c -------------------------------------------------------------------------------- /text-motions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-motions.h -------------------------------------------------------------------------------- /text-objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-objects.c -------------------------------------------------------------------------------- /text-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-objects.h -------------------------------------------------------------------------------- /text-regex-tre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-regex-tre.c -------------------------------------------------------------------------------- /text-regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-regex.c -------------------------------------------------------------------------------- /text-regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-regex.h -------------------------------------------------------------------------------- /text-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-util.c -------------------------------------------------------------------------------- /text-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text-util.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/text.h -------------------------------------------------------------------------------- /ui-terminal-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/ui-terminal-curses.c -------------------------------------------------------------------------------- /ui-terminal-vt100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/ui-terminal-vt100.c -------------------------------------------------------------------------------- /ui-terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/ui-terminal.c -------------------------------------------------------------------------------- /ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/ui.h -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/util.h -------------------------------------------------------------------------------- /view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/view.c -------------------------------------------------------------------------------- /view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/view.h -------------------------------------------------------------------------------- /vis-clipboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-clipboard -------------------------------------------------------------------------------- /vis-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-cmds.c -------------------------------------------------------------------------------- /vis-complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-complete -------------------------------------------------------------------------------- /vis-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-core.h -------------------------------------------------------------------------------- /vis-digraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-digraph.c -------------------------------------------------------------------------------- /vis-lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-lua.c -------------------------------------------------------------------------------- /vis-lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-lua.h -------------------------------------------------------------------------------- /vis-marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-marks.c -------------------------------------------------------------------------------- /vis-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-menu.c -------------------------------------------------------------------------------- /vis-modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-modes.c -------------------------------------------------------------------------------- /vis-motions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-motions.c -------------------------------------------------------------------------------- /vis-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-open -------------------------------------------------------------------------------- /vis-operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-operators.c -------------------------------------------------------------------------------- /vis-prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-prompt.c -------------------------------------------------------------------------------- /vis-registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-registers.c -------------------------------------------------------------------------------- /vis-single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-single.c -------------------------------------------------------------------------------- /vis-subprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-subprocess.c -------------------------------------------------------------------------------- /vis-subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-subprocess.h -------------------------------------------------------------------------------- /vis-text-objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis-text-objects.c -------------------------------------------------------------------------------- /vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis.c -------------------------------------------------------------------------------- /vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martanne/vis/HEAD/vis.h --------------------------------------------------------------------------------