├── .appveyor.yml ├── .cirrus.yml ├── .clang-format ├── .codecov.yml ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md ├── MAINTAINERS ├── SECURITY.md ├── actions │ ├── test_artifacts │ │ └── action.yml │ ├── test_macvim_artifacts │ │ └── action.yml │ └── universal-package │ │ └── action.yml ├── dependabot.yml ├── labeler.yml ├── release.yml └── workflows │ ├── ci-macvim.yaml │ ├── codeql-analysis.yml │ ├── coverity.yml │ ├── label.yml │ ├── link-check.yml │ ├── macvim-buildtest.yaml │ └── macvim-issues.yaml ├── .gitignore ├── .hgignore ├── CONTRIBUTING.md ├── Filelist ├── LICENSE ├── Makefile ├── README.md ├── README.txt ├── README_VIM9.md ├── README_vim.md ├── READMEdir ├── Contents ├── Contents.info ├── README.txt.info ├── README_ami.txt ├── README_ami.txt.info ├── README_amibin.txt ├── README_amibin.txt.info ├── README_amisrc.txt ├── README_amisrc.txt.info ├── README_bindos.txt ├── README_dos.txt ├── README_extra.txt ├── README_haiku.txt ├── README_mac.txt ├── README_ole.txt ├── README_os2.txt ├── README_os390.txt ├── README_src.txt ├── README_srcdos.txt ├── README_unix.txt ├── README_vimlogo.txt ├── README_vms.txt ├── README_w32s.txt ├── Vim.info ├── Xxd.info ├── runtime.info ├── src.info └── vimdir.info ├── SECURITY.md ├── ci ├── appveyor.bat ├── config.mk.clang-12.sed ├── config.mk.clang.sed ├── config.mk.gcc.sed ├── config.mk.optimized.sed ├── config.mk.sed ├── config.mk.xcode.sed ├── ddebs.list ├── hlgroups.ignore ├── hlgroups.make ├── if_feat_check.vim ├── if_ver-1.vim ├── if_ver-2.vim ├── if_ver-cmd.vim ├── lychee.toml ├── pinned-pkgs ├── remove_snap.sh ├── setup-xvfb.sh └── unlisted.make ├── configure ├── lang ├── LICENSE.it.txt ├── LICENSE.pt_br.txt ├── LICENSE.ru.txt ├── README.it.txt ├── README.pt_br.txt └── README.ru.txt ├── nsis ├── Make_mvc.mak ├── Makefile ├── README.txt ├── auxiliary.nsh ├── gvim.nsi ├── icons.zip └── lang │ ├── README.txt │ ├── danish.nsi │ ├── dutch.nsi │ ├── english.nsi │ ├── german.nsi │ ├── greek.nsi │ ├── italian.nsi │ ├── japanese.nsi │ ├── portuguesebr.nsi │ ├── russian.nsi │ ├── serbian.nsi │ ├── simpchinese.nsi │ ├── tradchinese.nsi │ └── turkish.nsi ├── pixmaps ├── alert.xpm ├── error.xpm ├── gen-inline-pixbufs.sh ├── generic.xpm ├── info.xpm ├── quest.xpm ├── stock_icons.h ├── stock_vim_build_tags.png ├── stock_vim_find_help.png ├── stock_vim_save_all.png ├── stock_vim_session_load.png ├── stock_vim_session_new.png ├── stock_vim_session_save.png ├── stock_vim_shell.png ├── stock_vim_window_maximize.png ├── stock_vim_window_maximize_width.png ├── stock_vim_window_minimize.png ├── stock_vim_window_minimize_width.png ├── stock_vim_window_split.png ├── stock_vim_window_split_vertical.png ├── tb_blank.xpm ├── tb_close.xpm ├── tb_copy.xpm ├── tb_ctags.xpm ├── tb_cut.xpm ├── tb_exit.xpm ├── tb_find.xpm ├── tb_find_help.xpm ├── tb_find_next.xpm ├── tb_find_prev.xpm ├── tb_help.xpm ├── tb_jump.xpm ├── tb_load_session.xpm ├── tb_macro.xpm ├── tb_make.xpm ├── tb_maximize.xpm ├── tb_maxwidth.xpm ├── tb_minimize.xpm ├── tb_minwidth.xpm ├── tb_new.xpm ├── tb_new_session.xpm ├── tb_open.xpm ├── tb_paste.xpm ├── tb_print.xpm ├── tb_redo.xpm ├── tb_replace.xpm ├── tb_save.xpm ├── tb_save_all.xpm ├── tb_save_session.xpm ├── tb_shell.xpm ├── tb_split.xpm ├── tb_undo.xpm └── tb_vsplit.xpm ├── runtime ├── autoload │ ├── README.txt │ ├── RstFold.vim │ ├── ada.vim │ ├── adacomplete.vim │ ├── bitbake.vim │ ├── cargo.vim │ ├── cargo │ │ └── quickfix.vim │ ├── ccomplete.vim │ ├── clojurecomplete.vim │ ├── context.vim │ ├── contextcomplete.vim │ ├── csscomplete.vim │ ├── decada.vim │ ├── dist │ │ ├── ft.vim │ │ ├── json.vim │ │ ├── man.vim │ │ ├── script.vim │ │ ├── vim.vim │ │ ├── vim9.vim │ │ └── vimindent.vim │ ├── freebasic.vim │ ├── getscript.vim │ ├── gnat.vim │ ├── gzip.vim │ ├── hare.vim │ ├── haskellcomplete.vim │ ├── hcl.vim │ ├── htmlcomplete.vim │ ├── htmlfold.vim │ ├── javaformat.vim │ ├── javascriptcomplete.vim │ ├── macvim.vim │ ├── modula2.vim │ ├── paste.vim │ ├── phpcomplete.vim │ ├── python.vim │ ├── python3complete.vim │ ├── pythoncomplete.vim │ ├── racket.vim │ ├── rubycomplete.vim │ ├── rust.vim │ ├── rust │ │ └── debugging.vim │ ├── rustfmt.vim │ ├── spellfile.vim │ ├── spotbugs.vim │ ├── sqlcomplete.vim │ ├── syntaxcomplete.vim │ ├── tar.vim │ ├── tohtml.vim │ ├── tutor.vim │ ├── typeset.vim │ ├── typst.vim │ ├── vimball.vim │ ├── vimcomplete.vim │ ├── vimgoto.vim │ ├── xml │ │ ├── html32.vim │ │ ├── html401f.vim │ │ ├── html401s.vim │ │ ├── html401t.vim │ │ ├── html40f.vim │ │ ├── html40s.vim │ │ ├── html40t.vim │ │ ├── xhtml10f.vim │ │ ├── xhtml10s.vim │ │ ├── xhtml10t.vim │ │ ├── xhtml11.vim │ │ ├── xsd.vim │ │ └── xsl.vim │ ├── xmlcomplete.vim │ ├── xmlformat.vim │ └── zip.vim ├── bitmaps │ └── vim.ico ├── bugreport.vim ├── colors │ ├── README.txt │ ├── blue.vim │ ├── darkblue.vim │ ├── default.vim │ ├── delek.vim │ ├── desert.vim │ ├── elflord.vim │ ├── evening.vim │ ├── habamax.vim │ ├── industry.vim │ ├── koehler.vim │ ├── lists │ │ ├── csscolors.vim │ │ └── default.vim │ ├── lunaperche.vim │ ├── macvim.vim │ ├── morning.vim │ ├── murphy.vim │ ├── pablo.vim │ ├── peachpuff.vim │ ├── quiet.vim │ ├── retrobox.vim │ ├── ron.vim │ ├── shine.vim │ ├── slate.vim │ ├── sorbet.vim │ ├── tools │ │ └── check_colors.vim │ ├── torte.vim │ ├── unokai.vim │ ├── wildcharm.vim │ ├── zaibatsu.vim │ └── zellner.vim ├── compiler │ ├── README.txt │ ├── ant.vim │ ├── bash.vim │ ├── bcc.vim │ ├── bdf.vim │ ├── biome.vim │ ├── cargo.vim │ ├── checkstyle.vim │ ├── cm3.vim │ ├── context.vim │ ├── cppcheck.vim │ ├── cs.vim │ ├── csslint.vim │ ├── cucumber.vim │ ├── dart.vim │ ├── dart2js.vim │ ├── dart2native.vim │ ├── dartanalyser.vim │ ├── dartdevc.vim │ ├── dartdoc.vim │ ├── dartfmt.vim │ ├── decada.vim │ ├── dot.vim │ ├── dotnet.vim │ ├── erlang.vim │ ├── eruby.vim │ ├── eslint.vim │ ├── fbc.vim │ ├── fortran_F.vim │ ├── fortran_cv.vim │ ├── fortran_elf90.vim │ ├── fortran_g77.vim │ ├── fortran_lf95.vim │ ├── fpc.vim │ ├── g95.vim │ ├── gawk.vim │ ├── gcc.vim │ ├── gfortran.vim │ ├── ghc.vim │ ├── gjs.vim │ ├── gleam_build.vim │ ├── gm2.vim │ ├── gnat.vim │ ├── go.vim │ ├── groff.vim │ ├── haml.vim │ ├── hare.vim │ ├── hp_acc.vim │ ├── icc.vim │ ├── icon.vim │ ├── ifort.vim │ ├── intel.vim │ ├── irix5_c.vim │ ├── irix5_cpp.vim │ ├── javac.vim │ ├── jest.vim │ ├── jikes.vim │ ├── jjs.vim │ ├── jq.vim │ ├── jshint.vim │ ├── jsonlint.vim │ ├── make.vim │ ├── maven.vim │ ├── mcs.vim │ ├── mips_c.vim │ ├── mipspro_c89.vim │ ├── mipspro_cpp.vim │ ├── modelsim_vcom.vim │ ├── msbuild.vim │ ├── msvc.vim │ ├── mypy.vim │ ├── neato.vim │ ├── ocaml.vim │ ├── onsgmls.vim │ ├── pandoc.vim │ ├── pbx.vim │ ├── perl.vim │ ├── perlcritic.vim │ ├── php.vim │ ├── phpstan.vim │ ├── pip_compile.vim │ ├── podchecker.vim │ ├── powershell.vim │ ├── pylint.vim │ ├── pytest.vim │ ├── pyunit.vim │ ├── raco.vim │ ├── racomake.vim │ ├── racosetup.vim │ ├── racotest.vim │ ├── rake.vim │ ├── rhino.vim │ ├── rime_deployer.vim │ ├── rspec.vim │ ├── rst.vim │ ├── rubocop.vim │ ├── ruby.vim │ ├── rubyunit.vim │ ├── ruff.vim │ ├── rustc.vim │ ├── sass.vim │ ├── scdoc.vim │ ├── se.vim │ ├── shellcheck.vim │ ├── sml.vim │ ├── spectral.vim │ ├── splint.vim │ ├── spotbugs.vim │ ├── stack.vim │ ├── standard.vim │ ├── stylelint.vim │ ├── svelte-check.vim │ ├── tcl.vim │ ├── tex.vim │ ├── tidy.vim │ ├── tombi.vim │ ├── ts-node.vim │ ├── tsc.vim │ ├── typedoc.vim │ ├── typst.vim │ ├── vimdoc.vim │ ├── xbuild.vim │ ├── xmllint.vim │ ├── xmlwf.vim │ ├── xo.vim │ ├── yamllint.vim │ ├── zig.vim │ ├── zig_build.vim │ ├── zig_build_exe.vim │ ├── zig_test.vim │ └── zsh.vim ├── defaults.vim ├── delmenu.vim ├── doc.info ├── doc │ ├── Make_all.mak │ ├── Make_mvc.mak │ ├── Makefile │ ├── arabic.txt │ ├── autocmd.txt │ ├── builtin.txt │ ├── change.txt │ ├── channel.txt │ ├── cmdline.txt │ ├── debug.txt │ ├── debugger.txt │ ├── develop.txt │ ├── diff.txt │ ├── digraph.txt │ ├── doctags.c │ ├── doctags.vim │ ├── editing.txt │ ├── eval.txt │ ├── evim-fr.1 │ ├── evim-fr.UTF-8.1 │ ├── evim-it.1 │ ├── evim-it.UTF-8.1 │ ├── evim-ja.UTF-8.1 │ ├── evim-pl.1 │ ├── evim-pl.UTF-8.1 │ ├── evim-ru.1 │ ├── evim-ru.UTF-8.1 │ ├── evim-tr.1 │ ├── evim-tr.UTF-8.1 │ ├── evim.1 │ ├── evim.man │ ├── farsi.txt │ ├── filetype.txt │ ├── fold.txt │ ├── ft_ada.txt │ ├── ft_context.txt │ ├── ft_hare.txt │ ├── ft_mp.txt │ ├── ft_ps1.txt │ ├── ft_raku.txt │ ├── ft_rust.txt │ ├── ft_sql.txt │ ├── gui.txt │ ├── gui_mac.txt │ ├── gui_w32.txt │ ├── gui_x11.txt │ ├── hangulin.txt │ ├── hebrew.txt │ ├── help.txt │ ├── help.txt.info │ ├── helphelp.txt │ ├── howto.txt │ ├── if_cscop.txt │ ├── if_lua.txt │ ├── if_mzsch.txt │ ├── if_ole.txt │ ├── if_perl.txt │ ├── if_pyth.txt │ ├── if_ruby.txt │ ├── if_sniff.txt │ ├── if_tcl.txt │ ├── indent.txt │ ├── index.txt │ ├── insert.txt │ ├── intro.txt │ ├── makehtml.awk │ ├── maketags.awk │ ├── map.txt │ ├── mbyte.txt │ ├── message.txt │ ├── mlang.txt │ ├── motion.txt │ ├── netbeans.txt │ ├── options.txt │ ├── os_390.txt │ ├── os_amiga.txt │ ├── os_beos.txt │ ├── os_dos.txt │ ├── os_haiku.txt │ ├── os_mac.txt │ ├── os_mint.txt │ ├── os_msdos.txt │ ├── os_os2.txt │ ├── os_qnx.txt │ ├── os_risc.txt │ ├── os_unix.txt │ ├── os_vms.txt │ ├── os_win32.txt │ ├── pattern.txt │ ├── pi_getscript.txt │ ├── pi_gzip.txt │ ├── pi_logipat.txt │ ├── pi_netrw.txt │ ├── pi_paren.txt │ ├── pi_spec.txt │ ├── pi_tar.txt │ ├── pi_tutor.txt │ ├── pi_vimball.txt │ ├── pi_zip.txt │ ├── popup.txt │ ├── print.txt │ ├── quickfix.txt │ ├── quickref.txt │ ├── quotes.txt │ ├── recover.txt │ ├── remote.txt │ ├── repeat.txt │ ├── rileft.txt │ ├── russian.txt │ ├── scroll.txt │ ├── sign.txt │ ├── spell.txt │ ├── sponsor.txt │ ├── starting.txt │ ├── syntax.txt │ ├── tabpage.txt │ ├── tags │ ├── tagsrch.txt │ ├── term.txt │ ├── terminal.txt │ ├── test_urls.vim │ ├── testing.txt │ ├── textprop.txt │ ├── tips.txt │ ├── todo.txt │ ├── uganda.txt │ ├── undo.txt │ ├── userfunc.txt │ ├── usr_01.txt │ ├── usr_02.txt │ ├── usr_03.txt │ ├── usr_04.txt │ ├── usr_05.txt │ ├── usr_06.txt │ ├── usr_07.txt │ ├── usr_08.txt │ ├── usr_09.txt │ ├── usr_10.txt │ ├── usr_11.txt │ ├── usr_12.txt │ ├── usr_20.txt │ ├── usr_21.txt │ ├── usr_22.txt │ ├── usr_23.txt │ ├── usr_24.txt │ ├── usr_25.txt │ ├── usr_26.txt │ ├── usr_27.txt │ ├── usr_28.txt │ ├── usr_29.txt │ ├── usr_30.txt │ ├── usr_31.txt │ ├── usr_32.txt │ ├── usr_40.txt │ ├── usr_41.txt │ ├── usr_42.txt │ ├── usr_43.txt │ ├── usr_44.txt │ ├── usr_45.txt │ ├── usr_50.txt │ ├── usr_51.txt │ ├── usr_52.txt │ ├── usr_90.txt │ ├── usr_toc.txt │ ├── various.txt │ ├── version4.txt │ ├── version5.txt │ ├── version6.txt │ ├── version7.txt │ ├── version8.txt │ ├── version9.txt │ ├── vi_diff.txt │ ├── vietnamese.txt │ ├── vim-da.1 │ ├── vim-da.UTF-8.1 │ ├── vim-de.1 │ ├── vim-de.UTF-8.1 │ ├── vim-fr.1 │ ├── vim-fr.UTF-8.1 │ ├── vim-it.1 │ ├── vim-it.UTF-8.1 │ ├── vim-ja.UTF-8.1 │ ├── vim-pl.1 │ ├── vim-pl.UTF-8.1 │ ├── vim-ru.1 │ ├── vim-ru.UTF-8.1 │ ├── vim-tr.1 │ ├── vim-tr.UTF-8.1 │ ├── vim.1 │ ├── vim.man │ ├── vim.man.info │ ├── vim2html.pl │ ├── vim9.txt │ ├── vim9class.txt │ ├── vimdiff-da.1 │ ├── vimdiff-da.UTF-8.1 │ ├── vimdiff-fr.1 │ ├── vimdiff-fr.UTF-8.1 │ ├── vimdiff-it.1 │ ├── vimdiff-it.UTF-8.1 │ ├── vimdiff-ja.UTF-8.1 │ ├── vimdiff-pl.1 │ ├── vimdiff-pl.UTF-8.1 │ ├── vimdiff-ru.1 │ ├── vimdiff-ru.UTF-8.1 │ ├── vimdiff-tr.1 │ ├── vimdiff-tr.UTF-8.1 │ ├── vimdiff.1 │ ├── vimdiff.man │ ├── vimtutor-da.1 │ ├── vimtutor-da.UTF-8.1 │ ├── vimtutor-fr.1 │ ├── vimtutor-fr.UTF-8.1 │ ├── vimtutor-it.1 │ ├── vimtutor-it.UTF-8.1 │ ├── vimtutor-ja.UTF-8.1 │ ├── vimtutor-pl.1 │ ├── vimtutor-pl.UTF-8.1 │ ├── vimtutor-ru.1 │ ├── vimtutor-ru.UTF-8.1 │ ├── vimtutor-tr.1 │ ├── vimtutor-tr.UTF-8.1 │ ├── vimtutor.1 │ ├── vimtutor.man │ ├── visual.txt │ ├── wayland.txt │ ├── windows.txt │ ├── workshop.txt │ ├── xxd-fr.1 │ ├── xxd-fr.UTF-8.1 │ ├── xxd-it.1 │ ├── xxd-it.UTF-8.1 │ ├── xxd-ja.UTF-8.1 │ ├── xxd-pl.1 │ ├── xxd-pl.UTF-8.1 │ ├── xxd-ru.1 │ ├── xxd-ru.UTF-8.1 │ ├── xxd.1 │ └── xxd.man ├── evim.vim ├── filetype.vim ├── ftoff.vim ├── ftplugin.vim ├── ftplugin │ ├── 8th.vim │ ├── README.txt │ ├── a2ps.vim │ ├── aap.vim │ ├── abap.vim │ ├── abaqus.vim │ ├── abnf.vim │ ├── ada.vim │ ├── alsaconf.vim │ ├── ant.vim │ ├── antlr4.vim │ ├── apache.vim │ ├── arch.vim │ ├── arduino.vim │ ├── art.vim │ ├── asciidoc.vim │ ├── asm.vim │ ├── aspvbs.vim │ ├── astro.vim │ ├── asy.vim │ ├── autohotkey.vim │ ├── automake.vim │ ├── autopkgtest.vim │ ├── awk.vim │ ├── bash.vim │ ├── basic.vim │ ├── bdf.vim │ ├── bindzone.vim │ ├── bitbake.vim │ ├── bp.vim │ ├── brighterscript.vim │ ├── brightscript.vim │ ├── bst.vim │ ├── btm.vim │ ├── bzl.vim │ ├── c.vim │ ├── c3.vim │ ├── cabal.vim │ ├── calendar.vim │ ├── cdrdaoconf.vim │ ├── cedar.vim │ ├── cfg.vim │ ├── cgdbrc.vim │ ├── ch.vim │ ├── changelog.vim │ ├── chatito.vim │ ├── chicken.vim │ ├── clojure.vim │ ├── cmake.vim │ ├── cmakecache.vim │ ├── cobol.vim │ ├── codeowners.vim │ ├── conf.vim │ ├── config.vim │ ├── confini.vim │ ├── context.vim │ ├── cook.vim │ ├── corn.vim │ ├── cpp.vim │ ├── crm.vim │ ├── crontab.vim │ ├── cs.vim │ ├── csc.vim │ ├── csh.vim │ ├── css.vim │ ├── csv.vim │ ├── cucumber.vim │ ├── cuda.vim │ ├── cvsrc.vim │ ├── dart.vim │ ├── dax.vim │ ├── deb822sources.vim │ ├── debchangelog.vim │ ├── debcontrol.vim │ ├── debsources.vim │ ├── denyhosts.vim │ ├── desktop.vim │ ├── dictconf.vim │ ├── dictdconf.vim │ ├── diff.vim │ ├── dircolors.vim │ ├── dnsmasq.vim │ ├── docbk.vim │ ├── dockerfile.vim │ ├── dosbatch.vim │ ├── dosini.vim │ ├── dtd.vim │ ├── dtrace.vim │ ├── dts.vim │ ├── dune.vim │ ├── editorconfig.vim │ ├── eiffel.vim │ ├── elinks.vim │ ├── elixir.vim │ ├── elm.vim │ ├── erlang.vim │ ├── eruby.vim │ ├── eterm.vim │ ├── expect.vim │ ├── exports.vim │ ├── falcon.vim │ ├── fennel.vim │ ├── fetchmail.vim │ ├── fga.vim │ ├── fish.vim │ ├── flexwiki.vim │ ├── forth.vim │ ├── fortran.vim │ ├── fpcmake.vim │ ├── framescript.vim │ ├── freebasic.vim │ ├── fstab.vim │ ├── fvwm.vim │ ├── gdb.vim │ ├── gdscript.vim │ ├── gdshader.vim │ ├── gel.vim │ ├── git.vim │ ├── gitattributes.vim │ ├── gitcommit.vim │ ├── gitconfig.vim │ ├── gitignore.vim │ ├── gitrebase.vim │ ├── gitsendemail.vim │ ├── gleam.vim │ ├── go.vim │ ├── goaccess.vim │ ├── gomod.vim │ ├── gpg.vim │ ├── gprof.vim │ ├── graphql.vim │ ├── groff.vim │ ├── groovy.vim │ ├── group.vim │ ├── grub.vim │ ├── gyp.vim │ ├── haml.vim │ ├── hamster.vim │ ├── hare.vim │ ├── haredoc.vim │ ├── haskell.vim │ ├── hcl.vim │ ├── heex.vim │ ├── help.vim │ ├── hgcommit.vim │ ├── hlsplaylist.vim │ ├── hog.vim │ ├── hostconf.vim │ ├── hostsaccess.vim │ ├── html.vim │ ├── htmlangular.vim │ ├── htmldjango.vim │ ├── http.vim │ ├── hurl.vim │ ├── hyprlang.vim │ ├── i3config.vim │ ├── icon.vim │ ├── idris2.vim │ ├── indent.vim │ ├── initex.vim │ ├── ipkg.vim │ ├── ishd.vim │ ├── j.vim │ ├── java.vim │ ├── javacc.vim │ ├── javascript.vim │ ├── javascriptreact.vim │ ├── jjdescription.vim │ ├── jproperties.vim │ ├── jq.vim │ ├── json.vim │ ├── json5.vim │ ├── jsonc.vim │ ├── jsonnet.vim │ ├── jsp.vim │ ├── julia.vim │ ├── just.vim │ ├── karel.vim │ ├── kconfig.vim │ ├── kdl.vim │ ├── kerml.vim │ ├── kivy.vim │ ├── kotlin.vim │ ├── kwt.vim │ ├── lc.vim │ ├── ld.vim │ ├── ldapconf.vim │ ├── leo.vim │ ├── less.vim │ ├── lex.vim │ ├── lf.vim │ ├── lftp.vim │ ├── libao.vim │ ├── limits.vim │ ├── liquid.vim │ ├── lisp.vim │ ├── livebook.vim │ ├── llvm.vim │ ├── lnk.vim │ ├── lnkmap.vim │ ├── logcheck.vim │ ├── loginaccess.vim │ ├── logindefs.vim │ ├── logtalk.dict │ ├── logtalk.vim │ ├── lprolog.vim │ ├── lua.vim │ ├── luau.vim │ ├── lynx.vim │ ├── m17ndb.vim │ ├── m3build.vim │ ├── m3quake.vim │ ├── m4.vim │ ├── mail.vim │ ├── mailaliases.vim │ ├── mailcap.vim │ ├── make.vim │ ├── man.vim │ ├── manconf.vim │ ├── markdown.vim │ ├── masm.vim │ ├── matlab.vim │ ├── mbsync.vim │ ├── mediawiki.vim │ ├── mermaid.vim │ ├── meson.vim │ ├── mf.vim │ ├── mlir.vim │ ├── mma.vim │ ├── modconf.vim │ ├── modula2.vim │ ├── modula3.vim │ ├── mojo.vim │ ├── mp.vim │ ├── mplayerconf.vim │ ├── mrxvtrc.vim │ ├── msmessages.vim │ ├── mss.vim │ ├── muttrc.vim │ ├── mysql.vim │ ├── nanorc.vim │ ├── neomuttrc.vim │ ├── netrc.vim │ ├── nginx.vim │ ├── nim.vim │ ├── nix.vim │ ├── nroff.vim │ ├── nsis.vim │ ├── nu.vim │ ├── objc.vim │ ├── objcpp.vim │ ├── objdump.vim │ ├── obse.vim │ ├── ocaml.vim │ ├── occam.vim │ ├── octave.vim │ ├── odin.vim │ ├── ondir.vim │ ├── opencl.vim │ ├── openscad.vim │ ├── openvpn.vim │ ├── org.vim │ ├── pamconf.vim │ ├── pascal.vim │ ├── passwd.vim │ ├── pbtxt.vim │ ├── pdf.vim │ ├── perl.vim │ ├── php.vim │ ├── pinfo.vim │ ├── pkl.vim │ ├── plaintex.vim │ ├── plsql.vim │ ├── pod.vim │ ├── poefilter.vim │ ├── poke.vim │ ├── postscr.vim │ ├── pq.vim │ ├── prisma.vim │ ├── procmail.vim │ ├── prolog.vim │ ├── proto.vim │ ├── protocols.vim │ ├── ps1.vim │ ├── ps1xml.vim │ ├── ptx.vim │ ├── purescript.vim │ ├── pymanifest.vim │ ├── pyrex.vim │ ├── python.vim │ ├── qb64.vim │ ├── qf.vim │ ├── qml.vim │ ├── quake.vim │ ├── quarto.vim │ ├── r.vim │ ├── racc.vim │ ├── racket.vim │ ├── raku.vim │ ├── rasi.vim │ ├── readline.vim │ ├── registry.vim │ ├── remind.vim │ ├── requirements.vim │ ├── rescript.vim │ ├── reva.vim │ ├── rhelp.vim │ ├── rmd.vim │ ├── rnc.vim │ ├── rnoweb.vim │ ├── roc.vim │ ├── routeros.vim │ ├── rpl.vim │ ├── rrst.vim │ ├── rst.vim │ ├── ruby.vim │ ├── rust.vim │ ├── samba.vim │ ├── sass.vim │ ├── sbt.vim │ ├── scala.vim │ ├── scdoc.vim │ ├── scheme.vim │ ├── screen.vim │ ├── scss.vim │ ├── sed.vim │ ├── sensors.vim │ ├── services.vim │ ├── setserial.vim │ ├── sexplib.vim │ ├── sgml.vim │ ├── sh.vim │ ├── shaderslang.vim │ ├── sieve.vim │ ├── slint.vim │ ├── slpconf.vim │ ├── slpreg.vim │ ├── slpspi.vim │ ├── sml.vim │ ├── snakemake.vim │ ├── solidity.vim │ ├── solution.vim │ ├── soy.vim │ ├── spajson.vim │ ├── spec.vim │ ├── sql.vim │ ├── squirrel.vim │ ├── ssa.vim │ ├── sshconfig.vim │ ├── sshdconfig.vim │ ├── stylus.vim │ ├── sudoers.vim │ ├── svelte.vim │ ├── svg.vim │ ├── sway.vim │ ├── swayconfig.vim │ ├── swift.vim │ ├── swiftgyb.vim │ ├── swig.vim │ ├── sysctl.vim │ ├── sysml.vim │ ├── systemd.vim │ ├── systemverilog.vim │ ├── tap.vim │ ├── tcl.vim │ ├── tcsh.vim │ ├── tera.vim │ ├── terminfo.vim │ ├── terraform.vim │ ├── tex.vim │ ├── text.vim │ ├── tf.vim │ ├── thrift.vim │ ├── tiasm.vim │ ├── tidy.vim │ ├── tmux.vim │ ├── toml.vim │ ├── treetop.vim │ ├── tt2html.vim │ ├── tutor.vim │ ├── twig.vim │ ├── typescript.vim │ ├── typescriptreact.vim │ ├── typst.vim │ ├── uc.vim │ ├── uci.vim │ ├── udevconf.vim │ ├── udevperm.vim │ ├── udevrules.vim │ ├── unison.vim │ ├── updatedb.vim │ ├── urlshortcut.vim │ ├── usd.vim │ ├── v.vim │ ├── vb.vim │ ├── vdf.vim │ ├── verilog.vim │ ├── vhdl.vim │ ├── vim.vim │ ├── vroom.vim │ ├── vue.vim │ ├── wat.vim │ ├── wget.vim │ ├── wget2.vim │ ├── xcompose.vim │ ├── xdefaults.vim │ ├── xf86conf.vim │ ├── xhtml.vim │ ├── xinetd.vim │ ├── xml.vim │ ├── xmodmap.vim │ ├── xs.vim │ ├── xsd.vim │ ├── xslt.vim │ ├── yacc.vim │ ├── yaml.vim │ ├── zathurarc.vim │ ├── zig.vim │ ├── zimbu.vim │ └── zsh.vim ├── ftplugof.vim ├── gvim.desktop ├── gvimrc_example.vim ├── hi16-action-make.png ├── hi22-action-make.png ├── icons.info ├── icons │ ├── README.txt │ ├── README.txt.info │ ├── Vim_32Colors.info │ ├── Vim_4ColorsLace.info │ ├── Vim_8Colors.info │ └── Vim_8ColorsLace.info ├── import │ └── dist │ │ ├── vimhelp.vim │ │ └── vimhighlight.vim ├── indent.vim ├── indent │ ├── Make_mvc.mak │ ├── Makefile │ ├── README.txt │ ├── aap.vim │ ├── ada.vim │ ├── ant.vim │ ├── arduino.vim │ ├── astro.vim │ ├── automake.vim │ ├── awk.vim │ ├── bash.vim │ ├── basic.vim │ ├── bib.vim │ ├── bitbake.vim │ ├── bst.vim │ ├── bzl.vim │ ├── c.vim │ ├── cdl.vim │ ├── ch.vim │ ├── chaiscript.vim │ ├── changelog.vim │ ├── chatito.vim │ ├── clojure.vim │ ├── cmake.vim │ ├── cobol.vim │ ├── config.vim │ ├── context.vim │ ├── cpp.vim │ ├── cs.vim │ ├── css.vim │ ├── cucumber.vim │ ├── cuda.vim │ ├── d.vim │ ├── dictconf.vim │ ├── dictdconf.vim │ ├── docbk.vim │ ├── dosbatch.vim │ ├── dtd.vim │ ├── dtrace.vim │ ├── dts.vim │ ├── dune.vim │ ├── dylan.vim │ ├── eiffel.vim │ ├── elm.vim │ ├── erlang.vim │ ├── eruby.vim │ ├── eterm.vim │ ├── expect.vim │ ├── falcon.vim │ ├── fennel.vim │ ├── fish.vim │ ├── fortran.vim │ ├── framescript.vim │ ├── freebasic.vim │ ├── gdscript.vim │ ├── gitconfig.vim │ ├── gitolite.vim │ ├── glsl.vim │ ├── go.vim │ ├── graphql.vim │ ├── gyp.vim │ ├── haml.vim │ ├── hamster.vim │ ├── hare.vim │ ├── hcl.vim │ ├── hog.vim │ ├── html.vim │ ├── htmldjango.vim │ ├── idlang.vim │ ├── idris2.vim │ ├── ishd.vim │ ├── j.vim │ ├── java.vim │ ├── javascript.vim │ ├── javascriptreact.vim │ ├── json.vim │ ├── json5.vim │ ├── jsonc.vim │ ├── jsp.vim │ ├── julia.vim │ ├── just.vim │ ├── kdl.vim │ ├── kotlin.vim │ ├── krl.vim │ ├── ld.vim │ ├── less.vim │ ├── lifelines.vim │ ├── liquid.vim │ ├── lisp.vim │ ├── livebook.vim │ ├── logtalk.vim │ ├── lua.vim │ ├── luau.vim │ ├── m17ndb.vim │ ├── mail.vim │ ├── make.vim │ ├── matlab.vim │ ├── meson.vim │ ├── mf.vim │ ├── mma.vim │ ├── mojo.vim │ ├── mp.vim │ ├── nginx.vim │ ├── nsis.vim │ ├── nu.vim │ ├── objc.vim │ ├── obse.vim │ ├── ocaml.vim │ ├── occam.vim │ ├── odin.vim │ ├── pascal.vim │ ├── perl.vim │ ├── php.vim │ ├── postscr.vim │ ├── pov.vim │ ├── prolog.vim │ ├── proto.vim │ ├── ps1.vim │ ├── pyrex.vim │ ├── python.vim │ ├── qb64.vim │ ├── qml.vim │ ├── quarto.vim │ ├── r.vim │ ├── racket.vim │ ├── raku.vim │ ├── raml.vim │ ├── rapid.vim │ ├── readline.vim │ ├── rhelp.vim │ ├── rmd.vim │ ├── rnoweb.vim │ ├── rpl.vim │ ├── rrst.vim │ ├── rst.vim │ ├── ruby.vim │ ├── rust.vim │ ├── sas.vim │ ├── sass.vim │ ├── scala.vim │ ├── scheme.vim │ ├── scss.vim │ ├── sdl.vim │ ├── sh.vim │ ├── sml.vim │ ├── solidity.vim │ ├── spajson.vim │ ├── sql.vim │ ├── sqlanywhere.vim │ ├── sshconfig.vim │ ├── stylus.vim │ ├── systemverilog.vim │ ├── tcl.vim │ ├── tcsh.vim │ ├── teraterm.vim │ ├── terraform.vim │ ├── testdir │ │ ├── README.txt │ │ ├── bash.in │ │ ├── bash.ok │ │ ├── bitbake.in │ │ ├── bitbake.ok │ │ ├── dts.in │ │ ├── dts.ok │ │ ├── html.in │ │ ├── html.ok │ │ ├── krl.in │ │ ├── krl.ok │ │ ├── lua.in │ │ ├── lua.ok │ │ ├── make.in │ │ ├── make.ok │ │ ├── matlab.in │ │ ├── matlab.ok │ │ ├── python.in │ │ ├── python.ok │ │ ├── rapid.in │ │ ├── rapid.ok │ │ ├── runtest.vim │ │ ├── sshconfig.in │ │ ├── sshconfig.ok │ │ ├── tcl.in │ │ ├── tcl.ok │ │ ├── thrift.in │ │ ├── thrift.ok │ │ ├── tools │ │ │ └── tracer.vim │ │ ├── vb.in │ │ ├── vb.ok │ │ ├── vim.in │ │ ├── vim.ok │ │ ├── vim9.in │ │ ├── vim9.ok │ │ ├── xml.in │ │ ├── xml.ok │ │ ├── yaml.in │ │ └── yaml.ok │ ├── tex.vim │ ├── tf.vim │ ├── thrift.vim │ ├── tilde.vim │ ├── treetop.vim │ ├── typescript.vim │ ├── typescriptreact.vim │ ├── typst.vim │ ├── vb.vim │ ├── verilog.vim │ ├── vhdl.vim │ ├── vim.vim │ ├── vroom.vim │ ├── vue.vim │ ├── wat.vim │ ├── xf86conf.vim │ ├── xhtml.vim │ ├── xinetd.vim │ ├── xml.vim │ ├── xsd.vim │ ├── xslt.vim │ ├── yacc.vim │ ├── yaml.vim │ ├── zig.vim │ ├── zimbu.vim │ └── zsh.vim ├── indoff.vim ├── keymap │ ├── README.txt │ ├── accents.vim │ ├── arabic.vim │ ├── arabic_buckwalter.vim │ ├── arabic_utf-8.vim │ ├── armenian-eastern_utf-8.vim │ ├── armenian-western_utf-8.vim │ ├── azerbaijani.vim │ ├── belarusian-jcuken.vim │ ├── brazilian_portuguese-abnt.vim │ ├── brazilian_portuguese-compact.vim │ ├── bulgarian-bds.vim │ ├── bulgarian-phonetic.vim │ ├── canfr-win.vim │ ├── croatian.vim │ ├── croatian_cp1250.vim │ ├── croatian_iso-8859-2.vim │ ├── croatian_utf-8.vim │ ├── czech.vim │ ├── czech_utf-8.vim │ ├── dvorak.vim │ ├── esperanto.vim │ ├── esperanto_utf-8.vim │ ├── french-azerty.vim │ ├── georgian-qwerty.vim │ ├── german-qwertz.vim │ ├── greek.vim │ ├── greek_cp1253.vim │ ├── greek_cp737.vim │ ├── greek_iso-8859-7.vim │ ├── greek_utf-8.vim │ ├── hebrew.vim │ ├── hebrew_cp1255.vim │ ├── hebrew_iso-8859-8.vim │ ├── hebrew_utf-8.vim │ ├── hebrewp.vim │ ├── hebrewp_cp1255.vim │ ├── hebrewp_iso-8859-8.vim │ ├── hebrewp_utf-8.vim │ ├── kana.vim │ ├── kazakh-jcuken.vim │ ├── korean-dubeolsik_utf-8.vim │ ├── korean.vim │ ├── lithuanian-baltic.vim │ ├── magyar_utf-8.vim │ ├── mongolian_utf-8.vim │ ├── oldturkic-orkhon_utf-8.vim │ ├── oldturkic-yenisei_utf-8.vim │ ├── persian-iranian_utf-8.vim │ ├── persian.vim │ ├── pinyin.vim │ ├── polish-slash.vim │ ├── polish-slash_cp1250.vim │ ├── polish-slash_cp852.vim │ ├── polish-slash_iso-8859-2.vim │ ├── polish-slash_utf-8.vim │ ├── russian-dvorak.vim │ ├── russian-jcuken.vim │ ├── russian-jcukenmac.vim │ ├── russian-jcukenwin.vim │ ├── russian-jcukenwintype.vim │ ├── russian-typograph.vim │ ├── russian-yawerty.vim │ ├── serbian-latin.vim │ ├── serbian-latin_utf-8.vim │ ├── serbian.vim │ ├── serbian_cp1250.vim │ ├── serbian_cp1251.vim │ ├── serbian_iso-8859-2.vim │ ├── serbian_iso-8859-5.vim │ ├── serbian_utf-8.vim │ ├── sinhala-phonetic_utf-8.vim │ ├── sinhala.vim │ ├── slovak.vim │ ├── slovak_cp1250.vim │ ├── slovak_iso-8859-2.vim │ ├── slovak_utf-8.vim │ ├── tamil_tscii.vim │ ├── thaana-phonetic_utf-8.vim │ ├── thaana.vim │ ├── turkish-f.vim │ ├── turkish-q.vim │ ├── ukrainian-dvorak.vim │ ├── ukrainian-enhanced.vim │ ├── ukrainian-jcuken.vim │ ├── vietnamese-telex_utf-8.vim │ ├── vietnamese-viqr_utf-8.vim │ └── vietnamese-vni_utf-8.vim ├── lang │ ├── Make_all.mak │ ├── Make_mvc.mak │ ├── Makefile │ ├── README.txt │ ├── macvim_menu │ │ ├── README.md │ │ ├── menu_ca_es.latin1.apple.vim │ │ ├── menu_ca_es.latin1.custom.vim │ │ ├── menu_cs_cz.utf-8.apple.vim │ │ ├── menu_cs_cz.utf-8.custom.vim │ │ ├── menu_da.utf-8.apple.vim │ │ ├── menu_da.utf-8.custom.vim │ │ ├── menu_de_de.latin1.apple.vim │ │ ├── menu_de_de.latin1.custom.vim │ │ ├── menu_es_es.latin1.apple.vim │ │ ├── menu_es_es.latin1.custom.vim │ │ ├── menu_fi_fi.latin1.apple.vim │ │ ├── menu_fi_fi.latin1.custom.vim │ │ ├── menu_fr_fr.latin1.apple.vim │ │ ├── menu_fr_fr.latin1.custom.vim │ │ ├── menu_hu_hu.utf-8.apple.vim │ │ ├── menu_hu_hu.utf-8.custom.vim │ │ ├── menu_it_it.latin1.apple.vim │ │ ├── menu_it_it.latin1.custom.vim │ │ ├── menu_ja_jp.utf-8.apple.vim │ │ ├── menu_ja_jp.utf-8.custom.vim │ │ ├── menu_ko_kr.utf-8.apple.vim │ │ ├── menu_ko_kr.utf-8.custom.vim │ │ ├── menu_nl_nl.latin1.apple.vim │ │ ├── menu_nl_nl.latin1.custom.vim │ │ ├── menu_no_no.latin1.apple.vim │ │ ├── menu_no_no.latin1.custom.vim │ │ ├── menu_pl_pl.utf-8.apple.vim │ │ ├── menu_pl_pl.utf-8.custom.vim │ │ ├── menu_pt_br.apple.vim │ │ ├── menu_pt_br.custom.vim │ │ ├── menu_pt_pt.apple.vim │ │ ├── menu_pt_pt.custom.vim │ │ ├── menu_ru_ru.apple.vim │ │ ├── menu_ru_ru.custom.vim │ │ ├── menu_sv_se.latin1.apple.vim │ │ ├── menu_sv_se.latin1.custom.vim │ │ ├── menu_tr_tr.utf-8.apple.vim │ │ ├── menu_tr_tr.utf-8.custom.vim │ │ ├── menu_zh_cn.utf-8.apple.vim │ │ ├── menu_zh_cn.utf-8.custom.vim │ │ ├── menu_zh_tw.utf-8.apple.vim │ │ └── menu_zh_tw.utf-8.custom.vim │ ├── menu_af.latin1.vim │ ├── menu_af.utf-8.vim │ ├── menu_af_af.latin1.vim │ ├── menu_af_af.utf-8.vim │ ├── menu_ca.latin1.vim │ ├── menu_ca.utf-8.vim │ ├── menu_ca_es.latin1.vim │ ├── menu_ca_es.utf-8.vim │ ├── menu_chinese(gb)_gb.936.vim │ ├── menu_chinese(taiwan)_taiwan.950.vim │ ├── menu_chinese_gb.936.vim │ ├── menu_chinese_taiwan.950.vim │ ├── menu_cs.cp1250.vim │ ├── menu_cs.latin1.vim │ ├── menu_cs_cz.cp1250.vim │ ├── menu_cs_cz.iso_8859-2.vim │ ├── menu_cs_cz.latin1.vim │ ├── menu_cs_cz.utf-8.vim │ ├── menu_czech_czech_republic.1250.vim │ ├── menu_czech_czech_republic.1252.vim │ ├── menu_czech_czech_republic.ascii.vim │ ├── menu_da.latin1.vim │ ├── menu_da.utf-8.vim │ ├── menu_de.latin1.vim │ ├── menu_de.utf-8.vim │ ├── menu_de_de.latin1.vim │ ├── menu_de_de.utf-8.vim │ ├── menu_en_gb.latin1.vim │ ├── menu_en_gb.utf-8.vim │ ├── menu_english_united_kingdom.1252.vim │ ├── menu_english_united_kingdom.ascii.vim │ ├── menu_eo.utf-8.vim │ ├── menu_eo_eo.utf-8.vim │ ├── menu_eo_xx.utf-8.vim │ ├── menu_es.latin1.vim │ ├── menu_es.utf-8.vim │ ├── menu_es_es.latin1.vim │ ├── menu_es_es.utf-8.vim │ ├── menu_fi.latin1.vim │ ├── menu_fi.utf-8.vim │ ├── menu_fi_fi.latin1.vim │ ├── menu_fi_fi.utf-8.vim │ ├── menu_finnish_finland.1252.vim │ ├── menu_fr.latin1.vim │ ├── menu_fr.utf-8.vim │ ├── menu_fr_fr.latin1.vim │ ├── menu_fr_fr.utf-8.vim │ ├── menu_french_france.1252.vim │ ├── menu_german_germany.1252.vim │ ├── menu_hu.iso_8859-2.vim │ ├── menu_hu.utf-8.vim │ ├── menu_hu_hu.iso_8859-2.vim │ ├── menu_hu_hu.utf-8.vim │ ├── menu_is.latin1.vim │ ├── menu_is.utf-8.vim │ ├── menu_is_is.latin1.vim │ ├── menu_is_is.utf-8.vim │ ├── menu_it.latin1.vim │ ├── menu_it.utf-8.vim │ ├── menu_it_it.latin1.vim │ ├── menu_it_it.utf-8.vim │ ├── menu_italian_italy.1252.vim │ ├── menu_ja.cp932.vim │ ├── menu_ja.euc-jp.vim │ ├── menu_ja.eucjp.vim │ ├── menu_ja.ujis.vim │ ├── menu_ja.utf-8.vim │ ├── menu_ja_jp.cp932.vim │ ├── menu_ja_jp.euc-jp.vim │ ├── menu_ja_jp.eucjp.vim │ ├── menu_ja_jp.ujis.vim │ ├── menu_ja_jp.utf-8.vim │ ├── menu_japanese_japan.932.vim │ ├── menu_ko.utf-8.vim │ ├── menu_ko_kr.euckr.vim │ ├── menu_ko_kr.utf-8.vim │ ├── menu_ko_kr.vim │ ├── menu_nl.latin1.vim │ ├── menu_nl.utf-8.vim │ ├── menu_nl_nl.latin1.vim │ ├── menu_nl_nl.utf-8.vim │ ├── menu_no.latin1.vim │ ├── menu_no.utf-8.vim │ ├── menu_no_no.latin1.vim │ ├── menu_no_no.utf-8.vim │ ├── menu_pl.cp1250.vim │ ├── menu_pl_pl.cp1250.vim │ ├── menu_pl_pl.iso_8859-2.vim │ ├── menu_pl_pl.utf-8.vim │ ├── menu_polish_poland.1250.vim │ ├── menu_pt_br.latin1.vim │ ├── menu_pt_br.utf-8.vim │ ├── menu_pt_br.vim │ ├── menu_pt_pt.latin1.vim │ ├── menu_pt_pt.utf-8.vim │ ├── menu_pt_pt.vim │ ├── menu_ru.cp1251.vim │ ├── menu_ru.koi8-r.vim │ ├── menu_ru.utf-8.vim │ ├── menu_ru.vim │ ├── menu_ru_ru.cp1251.vim │ ├── menu_ru_ru.koi8-r.vim │ ├── menu_ru_ru.utf-8.vim │ ├── menu_ru_ru.vim │ ├── menu_sk.cp1250.vim │ ├── menu_sk_sk.1250.vim │ ├── menu_sk_sk.cp1250.vim │ ├── menu_sk_sk.iso_8859-2.vim │ ├── menu_sk_sk.vim │ ├── menu_sl_si.cp1250.vim │ ├── menu_sl_si.latin2.vim │ ├── menu_sl_si.utf-8.vim │ ├── menu_slovak_slovak_republic.1250.vim │ ├── menu_spanish_spain.850.vim │ ├── menu_sr.utf-8.vim │ ├── menu_sr_rs.ascii.vim │ ├── menu_sr_rs.iso_8859-2.vim │ ├── menu_sr_rs.iso_8859-5.vim │ ├── menu_sr_rs.utf-8.vim │ ├── menu_sr_yu.ascii.vim │ ├── menu_sr_yu.iso_8859-2.vim │ ├── menu_sr_yu.iso_8859-5.vim │ ├── menu_sr_yu.utf-8.vim │ ├── menu_sv.latin1.vim │ ├── menu_sv.utf-8.vim │ ├── menu_sv_se.latin1.vim │ ├── menu_sv_se.utf-8.vim │ ├── menu_tr.cp1254.vim │ ├── menu_tr.iso_8859-9.vim │ ├── menu_tr.utf-8.vim │ ├── menu_tr_tr.cp1254.vim │ ├── menu_tr_tr.iso_8859-9.vim │ ├── menu_tr_tr.utf-8.vim │ ├── menu_uk_ua.cp1251.vim │ ├── menu_uk_ua.koi8-u.vim │ ├── menu_uk_ua.utf-8.vim │ ├── menu_vi_vn.vim │ ├── menu_zh.big5.vim │ ├── menu_zh.cp936.vim │ ├── menu_zh.cp950.vim │ ├── menu_zh.gb2312.vim │ ├── menu_zh_cn.18030.vim │ ├── menu_zh_cn.cp936.vim │ ├── menu_zh_cn.gb2312.vim │ ├── menu_zh_cn.gbk.vim │ ├── menu_zh_cn.utf-8.vim │ ├── menu_zh_tw.big5.vim │ ├── menu_zh_tw.cp950.vim │ └── menu_zh_tw.utf-8.vim ├── macmap.vim ├── macros.info ├── macros │ ├── README.txt │ ├── README.txt.info │ ├── editexisting.vim │ ├── hanoi.info │ ├── hanoi │ │ ├── click.me │ │ ├── click.me.info │ │ ├── hanoi.vim │ │ ├── poster │ │ └── poster.info │ ├── justify.vim │ ├── less.bat │ ├── less.sh │ ├── less.vim │ ├── life │ │ ├── click.me │ │ ├── click.me.info │ │ └── life.vim │ ├── matchit.vim │ ├── maze.info │ ├── maze │ │ ├── Makefile │ │ ├── README.txt │ │ ├── README.txt.info │ │ ├── maze.c │ │ ├── maze_5.78 │ │ ├── maze_5.78.info │ │ ├── maze_mac │ │ ├── mazeansi.c │ │ ├── mazeclean.c │ │ ├── poster │ │ └── poster.info │ ├── shellmenu.vim │ ├── swapmous.vim │ ├── urm.info │ └── urm │ │ ├── README.txt │ │ ├── README.txt.info │ │ ├── examples │ │ ├── urm │ │ └── urm.vim ├── makemenu.vim ├── menu.vim ├── mswin.vim ├── optwin.vim ├── pack │ └── dist │ │ └── opt │ │ ├── cfilter │ │ └── plugin │ │ │ └── cfilter.vim │ │ ├── comment │ │ ├── autoload │ │ │ └── comment.vim │ │ ├── doc │ │ │ ├── comment.txt │ │ │ └── tags │ │ └── plugin │ │ │ └── comment.vim │ │ ├── dvorak │ │ ├── dvorak │ │ │ ├── disable.vim │ │ │ └── enable.vim │ │ └── plugin │ │ │ └── dvorak.vim │ │ ├── editexisting │ │ └── plugin │ │ │ └── editexisting.vim │ │ ├── editorconfig │ │ ├── .editorconfig │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── LICENSE.PSF │ │ ├── README.md │ │ ├── autoload │ │ │ ├── editorconfig.vim │ │ │ ├── editorconfig_core.vim │ │ │ └── editorconfig_core │ │ │ │ ├── fnmatch.vim │ │ │ │ ├── handler.vim │ │ │ │ ├── ini.vim │ │ │ │ └── util.vim │ │ ├── doc │ │ │ ├── editorconfig.txt │ │ │ └── tags │ │ ├── ftdetect │ │ │ └── editorconfig.vim │ │ └── plugin │ │ │ └── editorconfig.vim │ │ ├── helptoc │ │ ├── autoload │ │ │ └── helptoc.vim │ │ ├── doc │ │ │ ├── helptoc.txt │ │ │ └── tags │ │ └── plugin │ │ │ └── helptoc.vim │ │ ├── hlyank │ │ └── plugin │ │ │ └── hlyank.vim │ │ ├── justify │ │ └── plugin │ │ │ └── justify.vim │ │ ├── matchit │ │ ├── autoload │ │ │ └── matchit.vim │ │ ├── doc │ │ │ ├── matchit.txt │ │ │ └── tags │ │ └── plugin │ │ │ └── matchit.vim │ │ ├── netrw │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── autoload │ │ │ ├── netrw.vim │ │ │ ├── netrw │ │ │ │ ├── fs.vim │ │ │ │ ├── msg.vim │ │ │ │ └── os.vim │ │ │ └── netrw_gitignore.vim │ │ ├── doc │ │ │ └── netrw.txt │ │ ├── plugin │ │ │ └── netrwPlugin.vim │ │ └── syntax │ │ │ └── netrw.vim │ │ ├── nohlsearch │ │ └── plugin │ │ │ └── nohlsearch.vim │ │ ├── shellmenu │ │ └── plugin │ │ │ └── shellmenu.vim │ │ ├── swapmouse │ │ └── plugin │ │ │ └── swapmouse.vim │ │ └── termdebug │ │ └── plugin │ │ └── termdebug.vim ├── plugin │ ├── README.txt │ ├── getscriptPlugin.vim │ ├── gzip.vim │ ├── logiPat.vim │ ├── manpager.vim │ ├── matchparen.vim │ ├── netrwPlugin.vim │ ├── openPlugin.vim │ ├── rrhelper.vim │ ├── spellfile.vim │ ├── tarPlugin.vim │ ├── tohtml.vim │ ├── tutor.vim │ ├── vimballPlugin.vim │ └── zipPlugin.vim ├── print │ ├── ascii.ps │ ├── cidfont.ps │ ├── cns_roman.ps │ ├── cp1250.ps │ ├── cp1251.ps │ ├── cp1252.ps │ ├── cp1253.ps │ ├── cp1254.ps │ ├── cp1255.ps │ ├── cp1257.ps │ ├── dec-mcs.ps │ ├── ebcdic-uk.ps │ ├── gb_roman.ps │ ├── hp-roman8.ps │ ├── iso-8859-10.ps │ ├── iso-8859-11.ps │ ├── iso-8859-13.ps │ ├── iso-8859-14.ps │ ├── iso-8859-15.ps │ ├── iso-8859-2.ps │ ├── iso-8859-3.ps │ ├── iso-8859-4.ps │ ├── iso-8859-5.ps │ ├── iso-8859-7.ps │ ├── iso-8859-8.ps │ ├── iso-8859-9.ps │ ├── jis_roman.ps │ ├── koi8-r.ps │ ├── koi8-u.ps │ ├── ks_roman.ps │ ├── latin1.ps │ ├── mac-roman.ps │ └── prolog.ps ├── scripts.vim ├── spell │ ├── README.txt │ ├── README_en.txt │ ├── af │ │ ├── af_ZA.diff │ │ └── main.aap │ ├── am │ │ ├── am_ET.diff │ │ └── main.aap │ ├── bg │ │ ├── bg_BG.diff │ │ └── main.aap │ ├── br │ │ ├── br_FR.diff │ │ └── main.aap │ ├── ca │ │ ├── ca_ES.diff │ │ └── main.aap │ ├── check │ │ ├── check_aa.aff │ │ ├── check_aa.dic │ │ ├── check_bb.aff │ │ ├── check_bb.dic │ │ └── main.aap │ ├── check_locales.vim │ ├── cleanadd.vim │ ├── cs │ │ ├── cs_CZ.diff │ │ └── main.aap │ ├── cy │ │ ├── cy_GB.diff │ │ └── main.aap │ ├── da │ │ ├── da_DK.diff │ │ └── main.aap │ ├── de │ │ ├── de_19.diff │ │ └── main.aap │ ├── el │ │ ├── el_GR.diff │ │ └── main.aap │ ├── en.ascii.spl │ ├── en.ascii.sug │ ├── en.latin1.spl │ ├── en.latin1.sug │ ├── en.utf-8.spl │ ├── en.utf-8.sug │ ├── en │ │ ├── en_AU.diff │ │ ├── en_CA.diff │ │ ├── en_GB.diff │ │ ├── en_NZ.diff │ │ ├── en_US.diff │ │ └── main.aap │ ├── eo │ │ ├── eo_l3.diff │ │ └── main.aap │ ├── es │ │ ├── es_ES.diff │ │ ├── es_MX.diff │ │ └── main.aap │ ├── eu │ │ └── main.aap │ ├── fixdup.vim │ ├── fo │ │ ├── fo_FO.diff │ │ └── main.aap │ ├── fr │ │ ├── fr_FR.diff │ │ └── main.aap │ ├── ga │ │ ├── ga_IE.diff │ │ └── main.aap │ ├── gd │ │ ├── gd_GB.diff │ │ └── main.aap │ ├── gl │ │ ├── gl_ES.diff │ │ └── main.aap │ ├── he.vim │ ├── he │ │ ├── he_IL.diff │ │ └── main.aap │ ├── hr │ │ ├── hr_HR.diff │ │ └── main.aap │ ├── hu │ │ ├── hu_HU.diff │ │ └── main.aap │ ├── id │ │ ├── id_ID.diff │ │ └── main.aap │ ├── it │ │ ├── it_IT.diff │ │ └── main.aap │ ├── ku │ │ ├── ku_TR.diff │ │ └── main.aap │ ├── la │ │ ├── la.diff │ │ └── main.aap │ ├── lt │ │ ├── lt_LT.diff │ │ └── main.aap │ ├── lv │ │ ├── lv_LV.diff │ │ └── main.aap │ ├── main.aap │ ├── mg │ │ ├── main.aap │ │ └── mg_MG.diff │ ├── mi │ │ ├── main.aap │ │ └── mi_NZ.diff │ ├── ms │ │ ├── main.aap │ │ └── ms_MY.diff │ ├── nb │ │ ├── main.aap │ │ └── nb_NO.diff │ ├── nl │ │ ├── main.aap │ │ └── nl_NL.diff │ ├── nn │ │ ├── main.aap │ │ └── nn_NO.diff │ ├── ny │ │ ├── main.aap │ │ └── ny_MW.diff │ ├── pl │ │ ├── main.aap │ │ └── pl_PL.diff │ ├── pt │ │ ├── main.aap │ │ ├── pt_BR.diff │ │ └── pt_PT.diff │ ├── ro │ │ ├── main.aap │ │ └── ro_RO.diff │ ├── ru │ │ ├── main.aap │ │ ├── ru_RU.diff │ │ └── ru_YO.diff │ ├── rw │ │ ├── main.aap │ │ └── rw_RW.diff │ ├── sk │ │ ├── main.aap │ │ └── sk_SK.diff │ ├── sl │ │ ├── main.aap │ │ └── sl_SI.diff │ ├── spell.vim │ ├── sr │ │ ├── README_sr.txt │ │ ├── convert.vim │ │ └── main.aap │ ├── sv │ │ ├── main.aap │ │ └── sv_SE.diff │ ├── sw │ │ ├── main.aap │ │ └── sw_KE.diff │ ├── tet │ │ ├── main.aap │ │ └── tet_ID.diff │ ├── th │ │ ├── main.aap │ │ └── th.diff │ ├── tl │ │ ├── main.aap │ │ └── tl_PH.diff │ ├── tn │ │ ├── main.aap │ │ └── tn_ZA.diff │ ├── tr │ │ └── main.aap │ ├── uk │ │ ├── main.aap │ │ └── uk_UA.diff │ ├── yi.vim │ ├── yi │ │ ├── README.txt │ │ ├── main.aap │ │ ├── yi.diff │ │ └── yi_tr.diff │ └── zu │ │ ├── main.aap │ │ └── zu_ZA.diff ├── synmenu.vim ├── syntax │ ├── 2html.vim │ ├── 8th.vim │ ├── Makefile │ ├── README.txt │ ├── a2ps.vim │ ├── a65.vim │ ├── aap.vim │ ├── abap.vim │ ├── abaqus.vim │ ├── abc.vim │ ├── abel.vim │ ├── abnf.vim │ ├── acedb.vim │ ├── ada.vim │ ├── aflex.vim │ ├── ahdl.vim │ ├── aidl.vim │ ├── alsaconf.vim │ ├── amiga.vim │ ├── aml.vim │ ├── ampl.vim │ ├── ant.vim │ ├── antlr.vim │ ├── antlr4.vim │ ├── apache.vim │ ├── apachestyle.vim │ ├── apkbuild.vim │ ├── aptconf.vim │ ├── arch.vim │ ├── arduino.vim │ ├── art.vim │ ├── asciidoc.vim │ ├── asm.vim │ ├── asm68k.vim │ ├── asmh8300.vim │ ├── asn.vim │ ├── aspperl.vim │ ├── aspvbs.vim │ ├── asterisk.vim │ ├── asteriskvm.vim │ ├── astro.vim │ ├── asy.vim │ ├── atlas.vim │ ├── autodoc.vim │ ├── autohotkey.vim │ ├── autoit.vim │ ├── automake.vim │ ├── autopkgtest.vim │ ├── ave.vim │ ├── avra.vim │ ├── awk.vim │ ├── ayacc.vim │ ├── b.vim │ ├── baan.vim │ ├── bash.vim │ ├── basic.vim │ ├── bc.vim │ ├── bdf.vim │ ├── bib.vim │ ├── bindzone.vim │ ├── bitbake.vim │ ├── blank.vim │ ├── bsdl.vim │ ├── bst.vim │ ├── btm.vim │ ├── bzl.vim │ ├── bzr.vim │ ├── c.vim │ ├── cabal.vim │ ├── cabalconfig.vim │ ├── cabalproject.vim │ ├── calendar.vim │ ├── cangjie.vim │ ├── catalog.vim │ ├── cdl.vim │ ├── cdrdaoconf.vim │ ├── cdrtoc.vim │ ├── cf.vim │ ├── cfg.vim │ ├── cgdbrc.vim │ ├── ch.vim │ ├── chaiscript.vim │ ├── change.vim │ ├── changelog.vim │ ├── chaskell.vim │ ├── chatito.vim │ ├── cheetah.vim │ ├── chicken.vim │ ├── chill.vim │ ├── chordpro.vim │ ├── chuck.vim │ ├── cl.vim │ ├── clean.vim │ ├── clipper.vim │ ├── clojure.vim │ ├── cmacro.vim │ ├── cmake.vim │ ├── cmakecache.vim │ ├── cmod.vim │ ├── cmusrc.vim │ ├── cobol.vim │ ├── coco.vim │ ├── codeowners.vim │ ├── colortest.vim │ ├── conaryrecipe.vim │ ├── conf.vim │ ├── config.vim │ ├── confini.vim │ ├── context.vim │ ├── cpp.vim │ ├── crm.vim │ ├── crontab.vim │ ├── cs.vim │ ├── csc.vim │ ├── csdl.vim │ ├── csh.vim │ ├── csp.vim │ ├── css.vim │ ├── csv.vim │ ├── cterm.vim │ ├── ctrlh.vim │ ├── cucumber.vim │ ├── cuda.vim │ ├── cupl.vim │ ├── cuplsim.vim │ ├── cvs.vim │ ├── cvsrc.vim │ ├── cweb.vim │ ├── cynlib.vim │ ├── cynpp.vim │ ├── d.vim │ ├── dart.vim │ ├── datascript.vim │ ├── dax.vim │ ├── dcd.vim │ ├── dcl.vim │ ├── deb822sources.vim │ ├── debchangelog.vim │ ├── debcontrol.vim │ ├── debcopyright.vim │ ├── debsources.vim │ ├── def.vim │ ├── denyhosts.vim │ ├── dep3patch.vim │ ├── desc.vim │ ├── desktop.vim │ ├── dictconf.vim │ ├── dictdconf.vim │ ├── diff.vim │ ├── dircolors.vim │ ├── dirpager.vim │ ├── diva.vim │ ├── django.vim │ ├── dns.vim │ ├── dnsmasq.vim │ ├── docbk.vim │ ├── docbksgml.vim │ ├── docbkxml.vim │ ├── dockerfile.vim │ ├── dosbatch.vim │ ├── dosini.vim │ ├── dot.vim │ ├── doxygen.vim │ ├── dracula.vim │ ├── dsl.vim │ ├── dtd.vim │ ├── dtml.vim │ ├── dtrace.vim │ ├── dts.vim │ ├── dune.vim │ ├── dylan.vim │ ├── dylanintr.vim │ ├── dylanlid.vim │ ├── ecd.vim │ ├── edif.vim │ ├── editorconfig.vim │ ├── eiffel.vim │ ├── elf.vim │ ├── elinks.vim │ ├── elm.vim │ ├── elmfilt.vim │ ├── erlang.vim │ ├── eruby.vim │ ├── esmtprc.vim │ ├── esqlc.vim │ ├── esterel.vim │ ├── eterm.vim │ ├── euphoria3.vim │ ├── euphoria4.vim │ ├── eviews.vim │ ├── exim.vim │ ├── expect.vim │ ├── exports.vim │ ├── falcon.vim │ ├── fan.vim │ ├── fasm.vim │ ├── fdcc.vim │ ├── fetchmail.vim │ ├── fgl.vim │ ├── fish.vim │ ├── flexwiki.vim │ ├── focexec.vim │ ├── form.vim │ ├── forth.vim │ ├── fortran.vim │ ├── foxpro.vim │ ├── fpcmake.vim │ ├── framescript.vim │ ├── freebasic.vim │ ├── fstab.vim │ ├── fvwm.vim │ ├── fvwm2m4.vim │ ├── gdb.vim │ ├── gdmo.vim │ ├── gdresource.vim │ ├── gdscript.vim │ ├── gdshader.vim │ ├── gedcom.vim │ ├── gel.vim │ ├── gemtext.vim │ ├── generator │ │ ├── Makefile │ │ ├── README.md │ │ ├── gen_syntax_vim.vim │ │ ├── update_date.vim │ │ └── vim.vim.base │ ├── gift.vim │ ├── git.vim │ ├── gitattributes.vim │ ├── gitcommit.vim │ ├── gitconfig.vim │ ├── gitignore.vim │ ├── gitolite.vim │ ├── gitrebase.vim │ ├── gitsendemail.vim │ ├── gkrellmrc.vim │ ├── gleam.vim │ ├── glsl.vim │ ├── gnash.vim │ ├── gnuplot.vim │ ├── go.vim │ ├── goaccess.vim │ ├── godoc.vim │ ├── gp.vim │ ├── gpg.vim │ ├── gprof.vim │ ├── grads.vim │ ├── graphql.vim │ ├── gretl.vim │ ├── groff.vim │ ├── groovy.vim │ ├── group.vim │ ├── grub.vim │ ├── gsp.vim │ ├── gtkrc.vim │ ├── gvpr.vim │ ├── gyp.vim │ ├── haml.vim │ ├── hamster.vim │ ├── hare.vim │ ├── haredoc.vim │ ├── haskell.vim │ ├── haste.vim │ ├── hastepreproc.vim │ ├── hb.vim │ ├── hcl.vim │ ├── help.vim │ ├── help_it.vim │ ├── help_ru.vim │ ├── hercules.vim │ ├── hex.vim │ ├── hgcommit.vim │ ├── hitest.vim │ ├── hlsplaylist.vim │ ├── hog.vim │ ├── hollywood.vim │ ├── hostconf.vim │ ├── hostsaccess.vim │ ├── html.vim │ ├── htmlangular.vim │ ├── htmlcheetah.vim │ ├── htmldjango.vim │ ├── htmlm4.vim │ ├── htmlos.vim │ ├── hyprlang.vim │ ├── i3config.vim │ ├── ia64.vim │ ├── ibasic.vim │ ├── icemenu.vim │ ├── icon.vim │ ├── idl.vim │ ├── idlang.vim │ ├── idris2.vim │ ├── indent.vim │ ├── inform.vim │ ├── initex.vim │ ├── initng.vim │ ├── inittab.vim │ ├── ipfilter.vim │ ├── ipkg.vim │ ├── ishd.vim │ ├── iss.vim │ ├── ist.vim │ ├── j.vim │ ├── jal.vim │ ├── jam.vim │ ├── jargon.vim │ ├── java.vim │ ├── javacc.vim │ ├── javascript.vim │ ├── javascriptreact.vim │ ├── jess.vim │ ├── jgraph.vim │ ├── jinja.vim │ ├── jjdescription.vim │ ├── jovial.vim │ ├── jproperties.vim │ ├── jq.vim │ ├── json.vim │ ├── json5.vim │ ├── jsonc.vim │ ├── jsp.vim │ ├── julia.vim │ ├── just.vim │ ├── karel.vim │ ├── kconfig.vim │ ├── kdl.vim │ ├── kitty.vim │ ├── kivy.vim │ ├── kix.vim │ ├── kotlin.vim │ ├── krl.vim │ ├── kscript.vim │ ├── kwt.vim │ ├── lace.vim │ ├── latte.vim │ ├── lc.vim │ ├── ld.vim │ ├── ldapconf.vim │ ├── ldif.vim │ ├── less.vim │ ├── lex.vim │ ├── lf.vim │ ├── lftp.vim │ ├── lhaskell.vim │ ├── libao.vim │ ├── lidris2.vim │ ├── lifelines.vim │ ├── lilo.vim │ ├── limits.vim │ ├── liquid.vim │ ├── lisp.vim │ ├── lite.vim │ ├── litestep.vim │ ├── livebook.vim │ ├── lnk.vim │ ├── lnkmap.vim │ ├── log.vim │ ├── loginaccess.vim │ ├── logindefs.vim │ ├── logtalk.vim │ ├── lotos.vim │ ├── lout.vim │ ├── lpc.vim │ ├── lprolog.vim │ ├── lscript.vim │ ├── lsl.vim │ ├── lss.vim │ ├── lua.vim │ ├── luau.vim │ ├── lynx.vim │ ├── lyrics.vim │ ├── m17ndb.vim │ ├── m3build.vim │ ├── m3quake.vim │ ├── m4.vim │ ├── mail.vim │ ├── mailaliases.vim │ ├── mailcap.vim │ ├── make.vim │ ├── mallard.vim │ ├── man.vim │ ├── manconf.vim │ ├── manual.vim │ ├── maple.vim │ ├── markdown.vim │ ├── masm.vim │ ├── mason.vim │ ├── master.vim │ ├── matlab.vim │ ├── maxima.vim │ ├── mbsync.vim │ ├── mediawiki.vim │ ├── mel.vim │ ├── mermaid.vim │ ├── meson.vim │ ├── messages.vim │ ├── mf.vim │ ├── mgl.vim │ ├── mgp.vim │ ├── mib.vim │ ├── mix.vim │ ├── mma.vim │ ├── mmix.vim │ ├── mmp.vim │ ├── modconf.vim │ ├── model.vim │ ├── modsim3.vim │ ├── modula2.vim │ ├── modula2 │ │ └── opt │ │ │ ├── iso.vim │ │ │ ├── pim.vim │ │ │ └── r10.vim │ ├── modula3.vim │ ├── mojo.vim │ ├── monk.vim │ ├── moo.vim │ ├── mp.vim │ ├── mplayerconf.vim │ ├── mrxvtrc.vim │ ├── msidl.vim │ ├── msmessages.vim │ ├── msql.vim │ ├── mss.vim │ ├── mupad.vim │ ├── murphi.vim │ ├── mush.vim │ ├── muttrc.vim │ ├── mysql.vim │ ├── n1ql.vim │ ├── named.vim │ ├── nanorc.vim │ ├── nasm.vim │ ├── nastran.vim │ ├── natural.vim │ ├── ncf.vim │ ├── neomuttlog.vim │ ├── neomuttrc.vim │ ├── netrc.vim │ ├── nginx.vim │ ├── ninja.vim │ ├── nix.vim │ ├── nosyntax.vim │ ├── nqc.vim │ ├── nroff.vim │ ├── nsis.vim │ ├── nu.vim │ ├── obj.vim │ ├── objc.vim │ ├── objcpp.vim │ ├── obse.vim │ ├── ocaml.vim │ ├── occam.vim │ ├── odin.vim │ ├── omnimark.vim │ ├── ondir.vim │ ├── opam.vim │ ├── opencl.vim │ ├── openroad.vim │ ├── openscad.vim │ ├── openvpn.vim │ ├── opl.vim │ ├── ora.vim │ ├── org.vim │ ├── pacmanlog.vim │ ├── pamconf.vim │ ├── pamenv.vim │ ├── pandoc.vim │ ├── papp.vim │ ├── pascal.vim │ ├── passwd.vim │ ├── pbtxt.vim │ ├── pcap.vim │ ├── pccts.vim │ ├── pdf.vim │ ├── perl.vim │ ├── pf.vim │ ├── pfmain.vim │ ├── php.vim │ ├── phtml.vim │ ├── pic.vim │ ├── pike.vim │ ├── pilrc.vim │ ├── pine.vim │ ├── pinfo.vim │ ├── pkl.vim │ ├── plaintex.vim │ ├── pli.vim │ ├── plm.vim │ ├── plp.vim │ ├── plsql.vim │ ├── po.vim │ ├── pod.vim │ ├── poefilter.vim │ ├── poke.vim │ ├── postscr.vim │ ├── pov.vim │ ├── povini.vim │ ├── ppd.vim │ ├── ppwiz.vim │ ├── pq.vim │ ├── prescribe.vim │ ├── privoxy.vim │ ├── procmail.vim │ ├── progress.vim │ ├── prolog.vim │ ├── promela.vim │ ├── proto.vim │ ├── protocols.vim │ ├── prql.vim │ ├── ps1.vim │ ├── ps1xml.vim │ ├── psf.vim │ ├── psl.vim │ ├── ptcap.vim │ ├── ptx.vim │ ├── purifylog.vim │ ├── pymanifest.vim │ ├── pyrex.vim │ ├── python.vim │ ├── python2.vim │ ├── qb64.vim │ ├── qf.vim │ ├── qml.vim │ ├── quake.vim │ ├── quarto.vim │ ├── r.vim │ ├── racc.vim │ ├── racket.vim │ ├── radiance.vim │ ├── raku.vim │ ├── raml.vim │ ├── rapid.vim │ ├── rasi.vim │ ├── ratpoison.vim │ ├── rc.vim │ ├── rcs.vim │ ├── rcslog.vim │ ├── readline.vim │ ├── rebol.vim │ ├── redif.vim │ ├── registry.vim │ ├── rego.vim │ ├── remind.vim │ ├── requirements.vim │ ├── resolv.vim │ ├── reva.vim │ ├── rexx.vim │ ├── rhelp.vim │ ├── rib.vim │ ├── rmd.vim │ ├── rnc.vim │ ├── rng.vim │ ├── rnoweb.vim │ ├── robots.vim │ ├── routeros.vim │ ├── rpcgen.vim │ ├── rpl.vim │ ├── rrst.vim │ ├── rst.vim │ ├── rtf.vim │ ├── ruby.vim │ ├── rust.vim │ ├── salt.vim │ ├── samba.vim │ ├── sas.vim │ ├── sass.vim │ ├── sather.vim │ ├── sbt.vim │ ├── scala.vim │ ├── scdoc.vim │ ├── scheme.vim │ ├── scilab.vim │ ├── screen.vim │ ├── scss.vim │ ├── sd.vim │ ├── sdc.vim │ ├── sdl.vim │ ├── sed.vim │ ├── sendpr.vim │ ├── sensors.vim │ ├── services.vim │ ├── setserial.vim │ ├── sexplib.vim │ ├── sgml.vim │ ├── sgmldecl.vim │ ├── sgmllnx.vim │ ├── sh.vim │ ├── shaderslang.vim │ ├── shared │ │ ├── README.txt │ │ ├── context-data-context.vim │ │ ├── context-data-interfaces.vim │ │ ├── context-data-metafun.vim │ │ ├── context-data-tex.vim │ │ ├── debarchitectures.vim │ │ ├── debversions.vim │ │ ├── hgcommitDiff.vim │ │ └── typescriptcommon.vim │ ├── sicad.vim │ ├── sieve.vim │ ├── sil.vim │ ├── simula.vim │ ├── sinda.vim │ ├── sindacmp.vim │ ├── sindaout.vim │ ├── sisu.vim │ ├── skill.vim │ ├── sl.vim │ ├── slang.vim │ ├── slice.vim │ ├── slpconf.vim │ ├── slpreg.vim │ ├── slpspi.vim │ ├── slrnrc.vim │ ├── slrnsc.vim │ ├── sm.vim │ ├── smarty.vim │ ├── smcl.vim │ ├── smil.vim │ ├── smith.vim │ ├── sml.vim │ ├── snnsnet.vim │ ├── snnspat.vim │ ├── snnsres.vim │ ├── snobol4.vim │ ├── solidity.vim │ ├── spajson.vim │ ├── spec.vim │ ├── specman.vim │ ├── spice.vim │ ├── splint.vim │ ├── spup.vim │ ├── spyce.vim │ ├── sql.vim │ ├── sqlanywhere.vim │ ├── sqlforms.vim │ ├── sqlhana.vim │ ├── sqlinformix.vim │ ├── sqlj.vim │ ├── sqloracle.vim │ ├── sqr.vim │ ├── squid.vim │ ├── squirrel.vim │ ├── srec.vim │ ├── srt.vim │ ├── ssa.vim │ ├── sshconfig.vim │ ├── sshdconfig.vim │ ├── st.vim │ ├── stata.vim │ ├── stp.vim │ ├── strace.vim │ ├── structurizr.vim │ ├── stylus.vim │ ├── sudoers.vim │ ├── svg.vim │ ├── svn.vim │ ├── swayconfig.vim │ ├── swift.vim │ ├── swiftgyb.vim │ ├── swig.vim │ ├── syncolor.vim │ ├── synload.vim │ ├── syntax.vim │ ├── sysctl.vim │ ├── systemd.vim │ ├── systemverilog.vim │ ├── tads.vim │ ├── tags.vim │ ├── tak.vim │ ├── takcmp.vim │ ├── takout.vim │ ├── tap.vim │ ├── tar.vim │ ├── taskdata.vim │ ├── taskedit.vim │ ├── tasm.vim │ ├── tcl.vim │ ├── tcsh.vim │ ├── template.vim │ ├── tera.vim │ ├── teraterm.vim │ ├── terminfo.vim │ ├── terraform.vim │ ├── testdir │ │ ├── README.txt │ │ ├── dumps │ │ │ ├── awk_00.dump │ │ │ ├── c_00.dump │ │ │ ├── c_01.dump │ │ │ ├── c_02.dump │ │ │ ├── c_03.dump │ │ │ ├── c_04.dump │ │ │ ├── c_05.dump │ │ │ ├── c_06.dump │ │ │ ├── c_07.dump │ │ │ ├── c_bool_constant_00.dump │ │ │ ├── c_character_constant_00.dump │ │ │ ├── c_character_constant_01.dump │ │ │ ├── c_character_constant_02.dump │ │ │ ├── c_integer_constant_00.dump │ │ │ ├── c_integer_constant_01.dump │ │ │ ├── c_integer_constant_02.dump │ │ │ ├── c_keywords_00.dump │ │ │ ├── c_keywords_01.dump │ │ │ ├── c_keywords_02.dump │ │ │ ├── c_keywords_03.dump │ │ │ ├── c_preprocessor_conditional_00.dump │ │ │ ├── c_preprocessor_conditional_01.dump │ │ │ ├── c_preprocessor_conditional_02.dump │ │ │ ├── c_preprocessor_embed_00.dump │ │ │ ├── c_preprocessor_embed_01.dump │ │ │ ├── c_preprocessor_error_00.dump │ │ │ ├── c_string_literal_00.dump │ │ │ ├── c_string_literal_01.dump │ │ │ ├── c_string_literal_02.dump │ │ │ ├── c_string_literal_03.dump │ │ │ ├── codeowners_00.dump │ │ │ ├── css_1_00.dump │ │ │ ├── dots_01_00.dump │ │ │ ├── dots_01_01.dump │ │ │ ├── dots_01_02.dump │ │ │ ├── dots_01_03.dump │ │ │ ├── dots_02_00.dump │ │ │ ├── dots_02_01.dump │ │ │ ├── dots_02_02.dump │ │ │ ├── dots_02_03.dump │ │ │ ├── dots_03_00.dump │ │ │ ├── dots_03_01.dump │ │ │ ├── dots_03_02.dump │ │ │ ├── dots_03_03.dump │ │ │ ├── dots_04_00.dump │ │ │ ├── dots_04_01.dump │ │ │ ├── dots_04_02.dump │ │ │ ├── dots_04_03.dump │ │ │ ├── dots_04_04.dump │ │ │ ├── dots_05_00.dump │ │ │ ├── dots_05_01.dump │ │ │ ├── dots_05_02.dump │ │ │ ├── dots_05_03.dump │ │ │ ├── dots_05_04.dump │ │ │ ├── dots_06_00.dump │ │ │ ├── dots_06_01.dump │ │ │ ├── dots_06_02.dump │ │ │ ├── dots_06_03.dump │ │ │ ├── dots_07_00.dump │ │ │ ├── dots_07_01.dump │ │ │ ├── dots_07_02.dump │ │ │ ├── dots_07_03.dump │ │ │ ├── dots_07_04.dump │ │ │ ├── dots_08_00.dump │ │ │ ├── dots_08_01.dump │ │ │ ├── dots_08_02.dump │ │ │ ├── dots_08_03.dump │ │ │ ├── dots_08_04.dump │ │ │ ├── dots_09_00.dump │ │ │ ├── dots_09_01.dump │ │ │ ├── dots_09_02.dump │ │ │ ├── dots_09_03.dump │ │ │ ├── dots_10_00.dump │ │ │ ├── dots_10_01.dump │ │ │ ├── dots_10_02.dump │ │ │ ├── dots_10_03.dump │ │ │ ├── dots_10_04.dump │ │ │ ├── dots_10_05.dump │ │ │ ├── dots_11_00.dump │ │ │ ├── dots_11_01.dump │ │ │ ├── dots_11_02.dump │ │ │ ├── dots_11_03.dump │ │ │ ├── dots_11_04.dump │ │ │ ├── dots_11_05.dump │ │ │ ├── dots_12_00.dump │ │ │ ├── dots_12_01.dump │ │ │ ├── dots_12_02.dump │ │ │ ├── dots_12_03.dump │ │ │ ├── dots_12_04.dump │ │ │ ├── dots_13_00.dump │ │ │ ├── dots_13_01.dump │ │ │ ├── dots_13_02.dump │ │ │ ├── dots_13_03.dump │ │ │ ├── dots_13_04.dump │ │ │ ├── dots_14_00.dump │ │ │ ├── dots_14_01.dump │ │ │ ├── dots_14_02.dump │ │ │ ├── dots_14_03.dump │ │ │ ├── dots_14_04.dump │ │ │ ├── dots_15_00.dump │ │ │ ├── dots_15_01.dump │ │ │ ├── dots_15_02.dump │ │ │ ├── dots_15_03.dump │ │ │ ├── dots_16_00.dump │ │ │ ├── dots_16_01.dump │ │ │ ├── dots_16_02.dump │ │ │ ├── dots_16_03.dump │ │ │ ├── dots_17_00.dump │ │ │ ├── dots_17_01.dump │ │ │ ├── dots_17_02.dump │ │ │ ├── dots_17_03.dump │ │ │ ├── dots_18_00.dump │ │ │ ├── dots_18_01.dump │ │ │ ├── dots_18_02.dump │ │ │ ├── dots_18_03.dump │ │ │ ├── dots_19_00.dump │ │ │ ├── dots_19_01.dump │ │ │ ├── dots_19_02.dump │ │ │ ├── dots_19_03.dump │ │ │ ├── dots_20_00.dump │ │ │ ├── dots_20_01.dump │ │ │ ├── dts_zephyr_00.dump │ │ │ ├── dts_zmk_00.dump │ │ │ ├── dts_zmk_01.dump │ │ │ ├── haskell_00.dump │ │ │ ├── help_00.dump │ │ │ ├── help_01.dump │ │ │ ├── help_02.dump │ │ │ ├── help_03.dump │ │ │ ├── help_digraph_table_00.dump │ │ │ ├── help_digraph_table_01.dump │ │ │ ├── help_digraph_table_02.dump │ │ │ ├── help_ex_version_00.dump │ │ │ ├── help_ex_version_01.dump │ │ │ ├── help_ex_version_02.dump │ │ │ ├── help_ex_version_03.dump │ │ │ ├── help_ex_version_04.dump │ │ │ ├── help_ex_version_05.dump │ │ │ ├── help_ex_version_06.dump │ │ │ ├── help_ex_version_07.dump │ │ │ ├── help_ex_version_08.dump │ │ │ ├── help_ex_version_09.dump │ │ │ ├── help_ex_version_10.dump │ │ │ ├── help_ex_version_11.dump │ │ │ ├── help_ex_version_12.dump │ │ │ ├── help_ex_version_13.dump │ │ │ ├── help_ex_version_14.dump │ │ │ ├── help_ex_version_15.dump │ │ │ ├── html_00.dump │ │ │ ├── html_01.dump │ │ │ ├── html_02.dump │ │ │ ├── html_03.dump │ │ │ ├── html_04.dump │ │ │ ├── html_05.dump │ │ │ ├── html_06.dump │ │ │ ├── html_07.dump │ │ │ ├── html_08.dump │ │ │ ├── html_fold_expr_00.dump │ │ │ ├── html_fold_expr_01.dump │ │ │ ├── html_fold_expr_02.dump │ │ │ ├── html_fold_expr_03.dump │ │ │ ├── html_fold_expr_04.dump │ │ │ ├── html_fold_expr_05.dump │ │ │ ├── html_fold_expr_06.dump │ │ │ ├── html_fold_syntax_00.dump │ │ │ ├── html_fold_syntax_01.dump │ │ │ ├── html_fold_syntax_02.dump │ │ │ ├── html_fold_syntax_03.dump │ │ │ ├── html_fold_syntax_04.dump │ │ │ ├── html_fold_syntax_05.dump │ │ │ ├── html_fold_syntax_06.dump │ │ │ ├── java_annotations_00.dump │ │ │ ├── java_annotations_01.dump │ │ │ ├── java_annotations_02.dump │ │ │ ├── java_annotations_03.dump │ │ │ ├── java_annotations_04.dump │ │ │ ├── java_annotations_signature_00.dump │ │ │ ├── java_annotations_signature_01.dump │ │ │ ├── java_annotations_signature_02.dump │ │ │ ├── java_annotations_signature_03.dump │ │ │ ├── java_annotations_signature_04.dump │ │ │ ├── java_comments_html_00.dump │ │ │ ├── java_comments_html_01.dump │ │ │ ├── java_comments_html_02.dump │ │ │ ├── java_comments_html_03.dump │ │ │ ├── java_comments_html_04.dump │ │ │ ├── java_comments_html_05.dump │ │ │ ├── java_comments_html_06.dump │ │ │ ├── java_comments_html_07.dump │ │ │ ├── java_comments_markdown_00.dump │ │ │ ├── java_comments_markdown_01.dump │ │ │ ├── java_comments_markdown_02.dump │ │ │ ├── java_comments_markdown_03.dump │ │ │ ├── java_comments_markdown_04.dump │ │ │ ├── java_comments_markdown_05.dump │ │ │ ├── java_comments_markdown_06.dump │ │ │ ├── java_comments_markdown_07.dump │ │ │ ├── java_comments_markdown_08.dump │ │ │ ├── java_contextual_keywords_00.dump │ │ │ ├── java_contextual_keywords_01.dump │ │ │ ├── java_contextual_keywords_02.dump │ │ │ ├── java_contextual_keywords_03.dump │ │ │ ├── java_enfoldment_00.dump │ │ │ ├── java_enfoldment_01.dump │ │ │ ├── java_enfoldment_02.dump │ │ │ ├── java_enfoldment_03.dump │ │ │ ├── java_enfoldment_04.dump │ │ │ ├── java_enfoldment_05.dump │ │ │ ├── java_enfoldment_06.dump │ │ │ ├── java_enfoldment_07.dump │ │ │ ├── java_enfoldment_08.dump │ │ │ ├── java_escapes_00.dump │ │ │ ├── java_escapes_01.dump │ │ │ ├── java_escapes_02.dump │ │ │ ├── java_escapes_03.dump │ │ │ ├── java_escapes_04.dump │ │ │ ├── java_escapes_05.dump │ │ │ ├── java_escapes_06.dump │ │ │ ├── java_escapes_07.dump │ │ │ ├── java_generics_00.dump │ │ │ ├── java_generics_01.dump │ │ │ ├── java_generics_02.dump │ │ │ ├── java_generics_03.dump │ │ │ ├── java_generics_04.dump │ │ │ ├── java_generics_05.dump │ │ │ ├── java_generics_06.dump │ │ │ ├── java_generics_07.dump │ │ │ ├── java_generics_08.dump │ │ │ ├── java_generics_09.dump │ │ │ ├── java_generics_signature_00.dump │ │ │ ├── java_generics_signature_01.dump │ │ │ ├── java_generics_signature_02.dump │ │ │ ├── java_generics_signature_03.dump │ │ │ ├── java_generics_signature_04.dump │ │ │ ├── java_generics_signature_05.dump │ │ │ ├── java_generics_signature_06.dump │ │ │ ├── java_generics_signature_07.dump │ │ │ ├── java_generics_signature_08.dump │ │ │ ├── java_generics_signature_09.dump │ │ │ ├── java_lambda_expressions_00.dump │ │ │ ├── java_lambda_expressions_01.dump │ │ │ ├── java_lambda_expressions_02.dump │ │ │ ├── java_lambda_expressions_03.dump │ │ │ ├── java_lambda_expressions_04.dump │ │ │ ├── java_lambda_expressions_05.dump │ │ │ ├── java_lambda_expressions_06.dump │ │ │ ├── java_lambda_expressions_07.dump │ │ │ ├── java_lambda_expressions_08.dump │ │ │ ├── java_lambda_expressions_signature_00.dump │ │ │ ├── java_lambda_expressions_signature_01.dump │ │ │ ├── java_lambda_expressions_signature_02.dump │ │ │ ├── java_lambda_expressions_signature_03.dump │ │ │ ├── java_lambda_expressions_signature_04.dump │ │ │ ├── java_lambda_expressions_signature_05.dump │ │ │ ├── java_lambda_expressions_signature_06.dump │ │ │ ├── java_lambda_expressions_signature_07.dump │ │ │ ├── java_lambda_expressions_signature_08.dump │ │ │ ├── java_method_references_00.dump │ │ │ ├── java_method_references_01.dump │ │ │ ├── java_method_references_02.dump │ │ │ ├── java_method_references_03.dump │ │ │ ├── java_method_references_04.dump │ │ │ ├── java_method_references_05.dump │ │ │ ├── java_method_references_06.dump │ │ │ ├── java_method_references_07.dump │ │ │ ├── java_method_references_08.dump │ │ │ ├── java_method_references_09.dump │ │ │ ├── java_method_references_10.dump │ │ │ ├── java_method_references_signature_00.dump │ │ │ ├── java_method_references_signature_01.dump │ │ │ ├── java_method_references_signature_02.dump │ │ │ ├── java_method_references_signature_03.dump │ │ │ ├── java_method_references_signature_04.dump │ │ │ ├── java_method_references_signature_05.dump │ │ │ ├── java_method_references_signature_06.dump │ │ │ ├── java_method_references_signature_07.dump │ │ │ ├── java_method_references_signature_08.dump │ │ │ ├── java_method_references_signature_09.dump │ │ │ ├── java_method_references_signature_10.dump │ │ │ ├── java_methods_indent2_00.dump │ │ │ ├── java_methods_indent2_01.dump │ │ │ ├── java_methods_indent2_02.dump │ │ │ ├── java_methods_indent2_03.dump │ │ │ ├── java_methods_indent2_04.dump │ │ │ ├── java_methods_indent2_05.dump │ │ │ ├── java_methods_indent2_06.dump │ │ │ ├── java_methods_indent2_signature_00.dump │ │ │ ├── java_methods_indent2_signature_01.dump │ │ │ ├── java_methods_indent2_signature_02.dump │ │ │ ├── java_methods_indent2_signature_03.dump │ │ │ ├── java_methods_indent2_signature_04.dump │ │ │ ├── java_methods_indent2_signature_05.dump │ │ │ ├── java_methods_indent4_00.dump │ │ │ ├── java_methods_indent4_01.dump │ │ │ ├── java_methods_indent4_02.dump │ │ │ ├── java_methods_indent4_03.dump │ │ │ ├── java_methods_indent4_04.dump │ │ │ ├── java_methods_indent4_05.dump │ │ │ ├── java_methods_indent4_06.dump │ │ │ ├── java_methods_indent4_signature_00.dump │ │ │ ├── java_methods_indent4_signature_01.dump │ │ │ ├── java_methods_indent4_signature_02.dump │ │ │ ├── java_methods_indent4_signature_03.dump │ │ │ ├── java_methods_indent4_signature_04.dump │ │ │ ├── java_methods_indent4_signature_05.dump │ │ │ ├── java_methods_indent4_signature_06.dump │ │ │ ├── java_methods_indent8_00.dump │ │ │ ├── java_methods_indent8_01.dump │ │ │ ├── java_methods_indent8_02.dump │ │ │ ├── java_methods_indent8_03.dump │ │ │ ├── java_methods_indent8_04.dump │ │ │ ├── java_methods_indent8_05.dump │ │ │ ├── java_methods_indent8_06.dump │ │ │ ├── java_methods_indent8_signature_00.dump │ │ │ ├── java_methods_indent8_signature_01.dump │ │ │ ├── java_methods_indent8_signature_02.dump │ │ │ ├── java_methods_indent8_signature_03.dump │ │ │ ├── java_methods_indent8_signature_04.dump │ │ │ ├── java_methods_indent8_signature_05.dump │ │ │ ├── java_methods_indent8_signature_06.dump │ │ │ ├── java_methods_style_00.dump │ │ │ ├── java_methods_style_01.dump │ │ │ ├── java_methods_style_02.dump │ │ │ ├── java_methods_style_03.dump │ │ │ ├── java_methods_style_04.dump │ │ │ ├── java_methods_style_05.dump │ │ │ ├── java_methods_style_signature_00.dump │ │ │ ├── java_methods_style_signature_01.dump │ │ │ ├── java_methods_style_signature_02.dump │ │ │ ├── java_methods_style_signature_03.dump │ │ │ ├── java_methods_style_signature_04.dump │ │ │ ├── java_module_info_00.dump │ │ │ ├── java_module_info_01.dump │ │ │ ├── java_module_info_02.dump │ │ │ ├── java_numbers_00.dump │ │ │ ├── java_numbers_01.dump │ │ │ ├── java_numbers_02.dump │ │ │ ├── java_numbers_03.dump │ │ │ ├── java_numbers_04.dump │ │ │ ├── java_numbers_05.dump │ │ │ ├── java_previews_430_00.dump │ │ │ ├── java_previews_430_01.dump │ │ │ ├── java_previews_430_02.dump │ │ │ ├── java_previews_430_03.dump │ │ │ ├── java_previews_455_00.dump │ │ │ ├── java_previews_455_01.dump │ │ │ ├── java_previews_455_02.dump │ │ │ ├── java_previews_455_03.dump │ │ │ ├── java_string_00.dump │ │ │ ├── java_string_01.dump │ │ │ ├── java_string_02.dump │ │ │ ├── java_switch_00.dump │ │ │ ├── java_switch_01.dump │ │ │ ├── java_switch_02.dump │ │ │ ├── java_switch_03.dump │ │ │ ├── java_switch_04.dump │ │ │ ├── java_switch_05.dump │ │ │ ├── java_switch_06.dump │ │ │ ├── java_switch_07.dump │ │ │ ├── java_unfoldment_00.dump │ │ │ ├── java_unfoldment_01.dump │ │ │ ├── java_unfoldment_02.dump │ │ │ ├── java_unfoldment_03.dump │ │ │ ├── java_unfoldment_04.dump │ │ │ ├── java_unfoldment_05.dump │ │ │ ├── java_unfoldment_06.dump │ │ │ ├── java_unfoldment_07.dump │ │ │ ├── java_unfoldment_08.dump │ │ │ ├── markdown_circularity_00.dump │ │ │ ├── markdown_circularity_01.dump │ │ │ ├── markdown_circularity_02.dump │ │ │ ├── markdown_circularity_03.dump │ │ │ ├── markdown_conceal_00.dump │ │ │ ├── modula2_iso_00.dump │ │ │ ├── modula2_iso_01.dump │ │ │ ├── modula2_iso_02.dump │ │ │ ├── modula2_iso_03.dump │ │ │ ├── modula2_iso_04.dump │ │ │ ├── modula2_iso_05.dump │ │ │ ├── modula2_iso_06.dump │ │ │ ├── modula2_pim_00.dump │ │ │ ├── modula2_pim_01.dump │ │ │ ├── modula2_pim_02.dump │ │ │ ├── modula2_pim_03.dump │ │ │ ├── modula2_pim_04.dump │ │ │ ├── modula2_pim_05.dump │ │ │ ├── modula2_pim_06.dump │ │ │ ├── modula2_r10_00.dump │ │ │ ├── modula2_r10_01.dump │ │ │ ├── modula2_r10_02.dump │ │ │ ├── modula2_r10_03.dump │ │ │ ├── modula2_r10_04.dump │ │ │ ├── modula2_r10_05.dump │ │ │ ├── modula2_r10_06.dump │ │ │ ├── modula2_r10_07.dump │ │ │ ├── modula2_r10_08.dump │ │ │ ├── progress_comments_00.dump │ │ │ ├── progress_comments_01.dump │ │ │ ├── progress_comments_02.dump │ │ │ ├── python2_strings_00.dump │ │ │ ├── python2_strings_01.dump │ │ │ ├── python2_strings_02.dump │ │ │ ├── python2_strings_03.dump │ │ │ ├── python2_strings_04.dump │ │ │ ├── python2_strings_05.dump │ │ │ ├── python_ellipsis_00.dump │ │ │ ├── python_ellipsis_01.dump │ │ │ ├── python_ellipsis_02.dump │ │ │ ├── python_strings_bytes_00.dump │ │ │ ├── python_strings_bytes_01.dump │ │ │ ├── python_strings_bytes_02.dump │ │ │ ├── python_strings_bytes_03.dump │ │ │ ├── python_strings_bytes_04.dump │ │ │ ├── python_strings_bytes_05.dump │ │ │ ├── python_strings_bytes_06.dump │ │ │ ├── python_strings_bytes_07.dump │ │ │ ├── python_strings_bytes_08.dump │ │ │ ├── python_strings_bytes_09.dump │ │ │ ├── python_strings_bytes_10.dump │ │ │ ├── python_strings_bytes_11.dump │ │ │ ├── python_strings_bytes_12.dump │ │ │ ├── python_type_00.dump │ │ │ ├── sh_01_00.dump │ │ │ ├── sh_02_00.dump │ │ │ ├── sh_02_01.dump │ │ │ ├── sh_03_00.dump │ │ │ ├── sh_03_01.dump │ │ │ ├── sh_03_02.dump │ │ │ ├── sh_04_00.dump │ │ │ ├── sh_04_01.dump │ │ │ ├── sh_05_00.dump │ │ │ ├── sh_05_01.dump │ │ │ ├── sh_05_02.dump │ │ │ ├── sh_05_03.dump │ │ │ ├── sh_05_04.dump │ │ │ ├── sh_05_05.dump │ │ │ ├── sh_05_06.dump │ │ │ ├── sh_05_07.dump │ │ │ ├── sh_05_08.dump │ │ │ ├── sh_05_09.dump │ │ │ ├── sh_05_10.dump │ │ │ ├── sh_05_11.dump │ │ │ ├── sh_05_12.dump │ │ │ ├── sh_05_13.dump │ │ │ ├── sh_05_14.dump │ │ │ ├── sh_05_15.dump │ │ │ ├── sh_05_16.dump │ │ │ ├── sh_05_17.dump │ │ │ ├── sh_05_18.dump │ │ │ ├── sh_05_19.dump │ │ │ ├── sh_05_20.dump │ │ │ ├── sh_05_21.dump │ │ │ ├── sh_06_00.dump │ │ │ ├── sh_06_01.dump │ │ │ ├── sh_06_02.dump │ │ │ ├── sh_06_03.dump │ │ │ ├── sh_06_04.dump │ │ │ ├── sh_07_00.dump │ │ │ ├── sh_07_01.dump │ │ │ ├── sh_07_02.dump │ │ │ ├── sh_07_03.dump │ │ │ ├── sh_07_04.dump │ │ │ ├── sh_07_05.dump │ │ │ ├── sh_08_00.dump │ │ │ ├── sh_08_01.dump │ │ │ ├── sh_08_02.dump │ │ │ ├── sh_08_03.dump │ │ │ ├── sh_08_04.dump │ │ │ ├── sh_09_00.dump │ │ │ ├── sh_09_01.dump │ │ │ ├── sh_11_00.dump │ │ │ ├── sh_11_01.dump │ │ │ ├── sh_12_00.dump │ │ │ ├── sh_12_01.dump │ │ │ ├── sh_12_02.dump │ │ │ ├── sh_12_03.dump │ │ │ ├── sh_12_04.dump │ │ │ ├── sh_12_05.dump │ │ │ ├── sh_12_06.dump │ │ │ ├── sh_12_07.dump │ │ │ ├── sh_12_08.dump │ │ │ ├── sh_12_09.dump │ │ │ ├── sh_12_10.dump │ │ │ ├── sh_12_11.dump │ │ │ ├── sh_13_00.dump │ │ │ ├── sh_14_00.dump │ │ │ ├── sh_bash_00.dump │ │ │ ├── sh_bash_01.dump │ │ │ ├── sh_bash_02.dump │ │ │ ├── sh_bash_alias_00.dump │ │ │ ├── sh_generic_00.dump │ │ │ ├── sh_generic_01.dump │ │ │ ├── sh_generic_02.dump │ │ │ ├── sh_generic_03.dump │ │ │ ├── sh_generic_04.dump │ │ │ ├── sh_generic_05.dump │ │ │ ├── sh_generic_06.dump │ │ │ ├── sh_generic_07.dump │ │ │ ├── sh_generic_08.dump │ │ │ ├── sh_generic_09.dump │ │ │ ├── sh_ksh2020_00.dump │ │ │ ├── sh_ksh2020_01.dump │ │ │ ├── sh_ksh2020_02.dump │ │ │ ├── sh_ksh2020_03.dump │ │ │ ├── sh_ksh2020_04.dump │ │ │ ├── sh_ksh2020_05.dump │ │ │ ├── sh_ksh2020_06.dump │ │ │ ├── sh_ksh2020_07.dump │ │ │ ├── sh_ksh2020_08.dump │ │ │ ├── sh_ksh2020_09.dump │ │ │ ├── sh_ksh88_00.dump │ │ │ ├── sh_ksh88_01.dump │ │ │ ├── sh_ksh88_02.dump │ │ │ ├── sh_ksh88_03.dump │ │ │ ├── sh_ksh88_04.dump │ │ │ ├── sh_ksh88_05.dump │ │ │ ├── sh_ksh88_06.dump │ │ │ ├── sh_ksh88_07.dump │ │ │ ├── sh_ksh88_08.dump │ │ │ ├── sh_ksh88_09.dump │ │ │ ├── sh_ksh93_generic_00.dump │ │ │ ├── sh_ksh93_generic_01.dump │ │ │ ├── sh_ksh93_generic_02.dump │ │ │ ├── sh_ksh93_generic_03.dump │ │ │ ├── sh_ksh93_generic_04.dump │ │ │ ├── sh_ksh93_generic_05.dump │ │ │ ├── sh_ksh93_generic_06.dump │ │ │ ├── sh_ksh93_generic_07.dump │ │ │ ├── sh_ksh93_generic_08.dump │ │ │ ├── sh_ksh93_generic_09.dump │ │ │ ├── sh_ksh93u_00.dump │ │ │ ├── sh_ksh93u_01.dump │ │ │ ├── sh_ksh93u_02.dump │ │ │ ├── sh_ksh93u_03.dump │ │ │ ├── sh_ksh93u_04.dump │ │ │ ├── sh_ksh93u_05.dump │ │ │ ├── sh_ksh93u_06.dump │ │ │ ├── sh_ksh93u_07.dump │ │ │ ├── sh_ksh93u_08.dump │ │ │ ├── sh_ksh93u_09.dump │ │ │ ├── sh_ksh93v_00.dump │ │ │ ├── sh_ksh93v_01.dump │ │ │ ├── sh_ksh93v_02.dump │ │ │ ├── sh_ksh93v_03.dump │ │ │ ├── sh_ksh93v_04.dump │ │ │ ├── sh_ksh93v_05.dump │ │ │ ├── sh_ksh93v_06.dump │ │ │ ├── sh_ksh93v_07.dump │ │ │ ├── sh_ksh93v_08.dump │ │ │ ├── sh_ksh93v_09.dump │ │ │ ├── sh_ksh_array_00.dump │ │ │ ├── sh_ksh_array_01.dump │ │ │ ├── sh_mksh_00.dump │ │ │ ├── sh_mksh_01.dump │ │ │ ├── sh_mksh_02.dump │ │ │ ├── sh_mksh_03.dump │ │ │ ├── sh_mksh_04.dump │ │ │ ├── sh_mksh_05.dump │ │ │ ├── sh_mksh_06.dump │ │ │ ├── sh_mksh_07.dump │ │ │ ├── sh_mksh_08.dump │ │ │ ├── sh_mksh_09.dump │ │ │ ├── sh_quoting_00.dump │ │ │ ├── sh_sundrous_00.dump │ │ │ ├── sh_sundrous_01.dump │ │ │ ├── sh_sundrous_02.dump │ │ │ ├── sh_sundrous_03.dump │ │ │ ├── tera_00.dump │ │ │ ├── tera_01.dump │ │ │ ├── tera_02.dump │ │ │ ├── tera_03.dump │ │ │ ├── tera_04.dump │ │ │ ├── tera_05.dump │ │ │ ├── tera_06.dump │ │ │ ├── tera_07.dump │ │ │ ├── tera_08.dump │ │ │ ├── tera_09.dump │ │ │ ├── tex_01_00.dump │ │ │ ├── tex_02_00.dump │ │ │ ├── tex_03_00.dump │ │ │ ├── vim9_blocks_00.dump │ │ │ ├── vim9_blocks_01.dump │ │ │ ├── vim9_blocks_02.dump │ │ │ ├── vim9_builtin_object_methods2_00.dump │ │ │ ├── vim9_builtin_object_methods2_01.dump │ │ │ ├── vim9_builtin_object_methods2_02.dump │ │ │ ├── vim9_builtin_object_methods2_03.dump │ │ │ ├── vim9_builtin_object_methods_00.dump │ │ │ ├── vim9_builtin_object_methods_01.dump │ │ │ ├── vim9_builtin_object_methods_02.dump │ │ │ ├── vim9_builtin_object_methods_03.dump │ │ │ ├── vim9_builtin_object_methods_04.dump │ │ │ ├── vim9_builtin_object_methods_05.dump │ │ │ ├── vim9_builtin_object_methods_06.dump │ │ │ ├── vim9_comment_strings_00.dump │ │ │ ├── vim9_comment_strings_01.dump │ │ │ ├── vim9_comments_00.dump │ │ │ ├── vim9_comments_01.dump │ │ │ ├── vim9_comments_02.dump │ │ │ ├── vim9_comments_03.dump │ │ │ ├── vim9_comments_04.dump │ │ │ ├── vim9_comments_05.dump │ │ │ ├── vim9_constructors_00.dump │ │ │ ├── vim9_def_variables_00.dump │ │ │ ├── vim9_def_variables_01.dump │ │ │ ├── vim9_def_variables_02.dump │ │ │ ├── vim9_def_variables_03.dump │ │ │ ├── vim9_def_variables_04.dump │ │ │ ├── vim9_def_variables_05.dump │ │ │ ├── vim9_def_variables_06.dump │ │ │ ├── vim9_def_variables_07.dump │ │ │ ├── vim9_def_variables_08.dump │ │ │ ├── vim9_def_variables_09.dump │ │ │ ├── vim9_def_variables_10.dump │ │ │ ├── vim9_def_variables_11.dump │ │ │ ├── vim9_def_variables_12.dump │ │ │ ├── vim9_ex_class_fold_00.dump │ │ │ ├── vim9_ex_class_fold_01.dump │ │ │ ├── vim9_ex_class_fold_02.dump │ │ │ ├── vim9_ex_class_fold_03.dump │ │ │ ├── vim9_ex_class_fold_04.dump │ │ │ ├── vim9_ex_commands_00.dump │ │ │ ├── vim9_ex_commands_01.dump │ │ │ ├── vim9_ex_commands_02.dump │ │ │ ├── vim9_ex_commands_03.dump │ │ │ ├── vim9_ex_commands_04.dump │ │ │ ├── vim9_ex_commands_05.dump │ │ │ ├── vim9_ex_commands_06.dump │ │ │ ├── vim9_ex_commands_07.dump │ │ │ ├── vim9_ex_commands_08.dump │ │ │ ├── vim9_ex_commands_09.dump │ │ │ ├── vim9_ex_commands_10.dump │ │ │ ├── vim9_ex_commands_11.dump │ │ │ ├── vim9_ex_commands_12.dump │ │ │ ├── vim9_ex_commands_13.dump │ │ │ ├── vim9_ex_commands_14.dump │ │ │ ├── vim9_ex_commands_15.dump │ │ │ ├── vim9_ex_commands_16.dump │ │ │ ├── vim9_ex_commands_17.dump │ │ │ ├── vim9_ex_commands_18.dump │ │ │ ├── vim9_ex_commands_19.dump │ │ │ ├── vim9_ex_commands_20.dump │ │ │ ├── vim9_ex_commands_21.dump │ │ │ ├── vim9_ex_commands_22.dump │ │ │ ├── vim9_ex_commands_23.dump │ │ │ ├── vim9_ex_commands_24.dump │ │ │ ├── vim9_ex_commands_25.dump │ │ │ ├── vim9_ex_commands_26.dump │ │ │ ├── vim9_ex_commands_27.dump │ │ │ ├── vim9_ex_commands_28.dump │ │ │ ├── vim9_ex_commands_29.dump │ │ │ ├── vim9_ex_commands_30.dump │ │ │ ├── vim9_ex_commands_31.dump │ │ │ ├── vim9_ex_commands_32.dump │ │ │ ├── vim9_ex_commands_33.dump │ │ │ ├── vim9_ex_commands_34.dump │ │ │ ├── vim9_ex_commands_35.dump │ │ │ ├── vim9_ex_commands_36.dump │ │ │ ├── vim9_ex_commands_37.dump │ │ │ ├── vim9_ex_commands_38.dump │ │ │ ├── vim9_ex_commands_39.dump │ │ │ ├── vim9_ex_commands_40.dump │ │ │ ├── vim9_ex_commands_41.dump │ │ │ ├── vim9_ex_commands_42.dump │ │ │ ├── vim9_ex_commands_43.dump │ │ │ ├── vim9_ex_commands_44.dump │ │ │ ├── vim9_ex_commands_45.dump │ │ │ ├── vim9_ex_commands_46.dump │ │ │ ├── vim9_ex_commands_47.dump │ │ │ ├── vim9_ex_commands_48.dump │ │ │ ├── vim9_ex_commands_49.dump │ │ │ ├── vim9_ex_commands_50.dump │ │ │ ├── vim9_ex_commands_51.dump │ │ │ ├── vim9_ex_commands_52.dump │ │ │ ├── vim9_ex_commands_53.dump │ │ │ ├── vim9_ex_commands_54.dump │ │ │ ├── vim9_ex_commands_55.dump │ │ │ ├── vim9_ex_commands_56.dump │ │ │ ├── vim9_ex_commands_57.dump │ │ │ ├── vim9_ex_commands_58.dump │ │ │ ├── vim9_ex_commands_59.dump │ │ │ ├── vim9_ex_commands_60.dump │ │ │ ├── vim9_ex_commands_61.dump │ │ │ ├── vim9_ex_commands_62.dump │ │ │ ├── vim9_ex_commands_63.dump │ │ │ ├── vim9_ex_commands_64.dump │ │ │ ├── vim9_ex_commands_65.dump │ │ │ ├── vim9_ex_commands_66.dump │ │ │ ├── vim9_ex_commands_67.dump │ │ │ ├── vim9_ex_echo_00.dump │ │ │ ├── vim9_ex_echo_01.dump │ │ │ ├── vim9_ex_echo_02.dump │ │ │ ├── vim9_ex_enum2_00.dump │ │ │ ├── vim9_ex_enum2_01.dump │ │ │ ├── vim9_ex_enum_00.dump │ │ │ ├── vim9_ex_enum_01.dump │ │ │ ├── vim9_ex_enum_02.dump │ │ │ ├── vim9_ex_enum_03.dump │ │ │ ├── vim9_ex_enum_04.dump │ │ │ ├── vim9_ex_enum_05.dump │ │ │ ├── vim9_ex_enum_06.dump │ │ │ ├── vim9_ex_enum_fold_00.dump │ │ │ ├── vim9_ex_enum_fold_01.dump │ │ │ ├── vim9_ex_enum_fold_02.dump │ │ │ ├── vim9_ex_for_00.dump │ │ │ ├── vim9_ex_for_01.dump │ │ │ ├── vim9_ex_for_02.dump │ │ │ ├── vim9_ex_for_03.dump │ │ │ ├── vim9_ex_for_04.dump │ │ │ ├── vim9_ex_for_05.dump │ │ │ ├── vim9_ex_function_def_tail_comment_errors_00.dump │ │ │ ├── vim9_ex_function_def_tail_comment_errors_01.dump │ │ │ ├── vim9_ex_function_def_tail_comment_errors_02.dump │ │ │ ├── vim9_ex_function_def_tail_comments_00.dump │ │ │ ├── vim9_ex_function_def_tail_comments_01.dump │ │ │ ├── vim9_ex_function_def_tail_comments_02.dump │ │ │ ├── vim9_ex_import_00.dump │ │ │ ├── vim9_ex_import_01.dump │ │ │ ├── vim9_ex_import_02.dump │ │ │ ├── vim9_ex_import_03.dump │ │ │ ├── vim9_ex_import_04.dump │ │ │ ├── vim9_ex_import_05.dump │ │ │ ├── vim9_ex_import_06.dump │ │ │ ├── vim9_ex_interface_fold_00.dump │ │ │ ├── vim9_ex_interface_fold_01.dump │ │ │ ├── vim9_ex_interface_fold_02.dump │ │ │ ├── vim9_ex_let_heredoc_00.dump │ │ │ ├── vim9_ex_let_heredoc_01.dump │ │ │ ├── vim9_ex_let_heredoc_02.dump │ │ │ ├── vim9_ex_let_heredoc_03.dump │ │ │ ├── vim9_ex_let_heredoc_04.dump │ │ │ ├── vim9_ex_let_heredoc_05.dump │ │ │ ├── vim9_ex_let_heredoc_06.dump │ │ │ ├── vim9_ex_let_heredoc_07.dump │ │ │ ├── vim9_ex_let_heredoc_08.dump │ │ │ ├── vim9_ex_let_heredoc_09.dump │ │ │ ├── vim9_ex_let_heredoc_10.dump │ │ │ ├── vim9_ex_let_heredoc_11.dump │ │ │ ├── vim9_ex_let_heredoc_12.dump │ │ │ ├── vim9_ex_let_heredoc_13.dump │ │ │ ├── vim9_ex_let_heredoc_14.dump │ │ │ ├── vim9_ex_let_heredoc_15.dump │ │ │ ├── vim9_ex_let_heredoc_16.dump │ │ │ ├── vim9_ex_loadkeymap_00.dump │ │ │ ├── vim9_ex_loadkeymap_01.dump │ │ │ ├── vim9_ex_type_00.dump │ │ │ ├── vim9_expressions_00.dump │ │ │ ├── vim9_expressions_01.dump │ │ │ ├── vim9_expressions_02.dump │ │ │ ├── vim9_expressions_03.dump │ │ │ ├── vim9_expressions_04.dump │ │ │ ├── vim9_expressions_05.dump │ │ │ ├── vim9_expressions_06.dump │ │ │ ├── vim9_expressions_07.dump │ │ │ ├── vim9_expressions_08.dump │ │ │ ├── vim9_expressions_09.dump │ │ │ ├── vim9_expressions_10.dump │ │ │ ├── vim9_expressions_11.dump │ │ │ ├── vim9_expressions_12.dump │ │ │ ├── vim9_function_calls_00.dump │ │ │ ├── vim9_function_calls_01.dump │ │ │ ├── vim9_function_calls_02.dump │ │ │ ├── vim9_function_calls_03.dump │ │ │ ├── vim9_function_calls_04.dump │ │ │ ├── vim9_function_calls_05.dump │ │ │ ├── vim9_function_calls_06.dump │ │ │ ├── vim9_function_calls_07.dump │ │ │ ├── vim9_function_calls_08.dump │ │ │ ├── vim9_function_calls_09.dump │ │ │ ├── vim9_function_calls_10.dump │ │ │ ├── vim9_function_calls_11.dump │ │ │ ├── vim9_function_calls_12.dump │ │ │ ├── vim9_function_calls_13.dump │ │ │ ├── vim9_function_calls_14.dump │ │ │ ├── vim9_function_calls_15.dump │ │ │ ├── vim9_function_calls_16.dump │ │ │ ├── vim9_function_calls_17.dump │ │ │ ├── vim9_generic_function_example_enum_00.dump │ │ │ ├── vim9_generic_function_example_enum_01.dump │ │ │ ├── vim9_generic_function_example_enum_02.dump │ │ │ ├── vim9_generic_function_example_list_00.dump │ │ │ ├── vim9_generic_function_example_list_01.dump │ │ │ ├── vim9_generic_function_example_list_02.dump │ │ │ ├── vim9_generic_function_example_list_03.dump │ │ │ ├── vim9_generic_function_example_list_04.dump │ │ │ ├── vim9_generic_function_example_list_05.dump │ │ │ ├── vim9_generic_function_example_list_06.dump │ │ │ ├── vim9_generic_function_example_list_07.dump │ │ │ ├── vim9_generic_function_example_list_08.dump │ │ │ ├── vim9_generic_function_example_list_09.dump │ │ │ ├── vim9_generic_function_example_list_10.dump │ │ │ ├── vim9_generic_function_example_list_11.dump │ │ │ ├── vim9_generic_function_example_list_12.dump │ │ │ ├── vim9_generic_function_example_set_00.dump │ │ │ ├── vim9_generic_function_example_set_01.dump │ │ │ ├── vim9_generic_function_example_set_02.dump │ │ │ ├── vim9_generic_function_example_set_03.dump │ │ │ ├── vim9_generic_function_example_set_04.dump │ │ │ ├── vim9_generic_function_example_set_05.dump │ │ │ ├── vim9_generic_function_example_set_06.dump │ │ │ ├── vim9_generic_function_example_set_07.dump │ │ │ ├── vim9_generic_function_example_set_08.dump │ │ │ ├── vim9_generic_function_example_set_09.dump │ │ │ ├── vim9_generic_function_example_set_10.dump │ │ │ ├── vim9_generic_functions_00.dump │ │ │ ├── vim9_generic_functions_01.dump │ │ │ ├── vim9_generic_functions_02.dump │ │ │ ├── vim9_generic_functions_03.dump │ │ │ ├── vim9_generic_functions_04.dump │ │ │ ├── vim9_generic_functions_05.dump │ │ │ ├── vim9_lambdas_00.dump │ │ │ ├── vim9_lambdas_01.dump │ │ │ ├── vim9_lambdas_02.dump │ │ │ ├── vim9_lambdas_03.dump │ │ │ ├── vim9_lambdas_04.dump │ │ │ ├── vim9_lambdas_05.dump │ │ │ ├── vim9_lambdas_06.dump │ │ │ ├── vim9_lambdas_07.dump │ │ │ ├── vim9_lambdas_08.dump │ │ │ ├── vim9_lambdas_09.dump │ │ │ ├── vim9_legacy_header_00.dump │ │ │ ├── vim9_legacy_header_01.dump │ │ │ ├── vim9_legacy_header_fold_00.dump │ │ │ ├── vim9_legacy_header_fold_01.dump │ │ │ ├── vim9_no_comment_strings_00.dump │ │ │ ├── vim9_no_comment_strings_01.dump │ │ │ ├── vim9_shebang_00.dump │ │ │ ├── vim9_super_this_keywords2_00.dump │ │ │ ├── vim9_super_this_keywords2_01.dump │ │ │ ├── vim9_super_this_keywords2_02.dump │ │ │ ├── vim9_super_this_keywords2_03.dump │ │ │ ├── vim9_super_this_keywords3_00.dump │ │ │ ├── vim9_super_this_keywords3_01.dump │ │ │ ├── vim9_super_this_keywords_00.dump │ │ │ ├── vim9_super_this_keywords_01.dump │ │ │ ├── vim9_super_this_keywords_02.dump │ │ │ ├── vim9_super_this_keywords_03.dump │ │ │ ├── vim9_super_this_keywords_04.dump │ │ │ ├── vim9_super_this_keywords_05.dump │ │ │ ├── vim9_tuples_00.dump │ │ │ ├── vim9_tuples_01.dump │ │ │ ├── vim9_types_00.dump │ │ │ ├── vim9_types_example_object_00.dump │ │ │ ├── vim9_types_example_object_01.dump │ │ │ ├── vim9_types_object_00.dump │ │ │ ├── vim9_types_object_01.dump │ │ │ ├── vim9_variables_00.dump │ │ │ ├── vim9_variables_01.dump │ │ │ ├── vim9_variables_02.dump │ │ │ ├── vim9_variables_03.dump │ │ │ ├── vim9_variables_04.dump │ │ │ ├── vim9_variables_05.dump │ │ │ ├── vim9_variables_06.dump │ │ │ ├── vim9_variables_07.dump │ │ │ ├── vim9_variables_08.dump │ │ │ ├── vim9_variables_09.dump │ │ │ ├── vim9_variables_10.dump │ │ │ ├── vim9_variables_11.dump │ │ │ ├── vim9_variables_12.dump │ │ │ ├── vim9_variables_13.dump │ │ │ ├── vim_comment_strings_00.dump │ │ │ ├── vim_comment_strings_01.dump │ │ │ ├── vim_comments_00.dump │ │ │ ├── vim_comments_01.dump │ │ │ ├── vim_comments_02.dump │ │ │ ├── vim_comments_03.dump │ │ │ ├── vim_comments_04.dump │ │ │ ├── vim_ex_abbreviate_00.dump │ │ │ ├── vim_ex_abbreviate_01.dump │ │ │ ├── vim_ex_abbreviate_02.dump │ │ │ ├── vim_ex_abbreviate_03.dump │ │ │ ├── vim_ex_at_00.dump │ │ │ ├── vim_ex_at_01.dump │ │ │ ├── vim_ex_at_02.dump │ │ │ ├── vim_ex_at_03.dump │ │ │ ├── vim_ex_augroup_00.dump │ │ │ ├── vim_ex_augroup_01.dump │ │ │ ├── vim_ex_augroup_02.dump │ │ │ ├── vim_ex_augroup_03.dump │ │ │ ├── vim_ex_augroup_04.dump │ │ │ ├── vim_ex_autocmd_00.dump │ │ │ ├── vim_ex_autocmd_01.dump │ │ │ ├── vim_ex_autocmd_02.dump │ │ │ ├── vim_ex_autocmd_03.dump │ │ │ ├── vim_ex_autocmd_04.dump │ │ │ ├── vim_ex_autocmd_05.dump │ │ │ ├── vim_ex_autocmd_06.dump │ │ │ ├── vim_ex_autocmd_07.dump │ │ │ ├── vim_ex_autocmd_08.dump │ │ │ ├── vim_ex_autocmd_09.dump │ │ │ ├── vim_ex_autocmd_10.dump │ │ │ ├── vim_ex_autocmd_11.dump │ │ │ ├── vim_ex_autocmd_12.dump │ │ │ ├── vim_ex_autocmd_13.dump │ │ │ ├── vim_ex_autocmd_14.dump │ │ │ ├── vim_ex_autocmd_15.dump │ │ │ ├── vim_ex_behave_00.dump │ │ │ ├── vim_ex_breakpoint_commands_00.dump │ │ │ ├── vim_ex_breakpoint_commands_01.dump │ │ │ ├── vim_ex_breakpoint_commands_02.dump │ │ │ ├── vim_ex_breakpoint_commands_03.dump │ │ │ ├── vim_ex_breakpoint_commands_04.dump │ │ │ ├── vim_ex_breakpoint_commands_05.dump │ │ │ ├── vim_ex_call_00.dump │ │ │ ├── vim_ex_call_01.dump │ │ │ ├── vim_ex_call_02.dump │ │ │ ├── vim_ex_call_03.dump │ │ │ ├── vim_ex_catch_00.dump │ │ │ ├── vim_ex_cd_00.dump │ │ │ ├── vim_ex_cd_01.dump │ │ │ ├── vim_ex_cd_02.dump │ │ │ ├── vim_ex_cd_03.dump │ │ │ ├── vim_ex_cd_04.dump │ │ │ ├── vim_ex_cd_05.dump │ │ │ ├── vim_ex_cd_06.dump │ │ │ ├── vim_ex_command_00.dump │ │ │ ├── vim_ex_command_01.dump │ │ │ ├── vim_ex_command_02.dump │ │ │ ├── vim_ex_command_03.dump │ │ │ ├── vim_ex_command_04.dump │ │ │ ├── vim_ex_command_05.dump │ │ │ ├── vim_ex_command_06.dump │ │ │ ├── vim_ex_command_07.dump │ │ │ ├── vim_ex_command_08.dump │ │ │ ├── vim_ex_command_09.dump │ │ │ ├── vim_ex_command_10.dump │ │ │ ├── vim_ex_command_11.dump │ │ │ ├── vim_ex_command_modifiers_00.dump │ │ │ ├── vim_ex_command_modifiers_01.dump │ │ │ ├── vim_ex_command_modifiers_02.dump │ │ │ ├── vim_ex_command_modifiers_03.dump │ │ │ ├── vim_ex_command_modifiers_04.dump │ │ │ ├── vim_ex_command_modifiers_05.dump │ │ │ ├── vim_ex_command_modifiers_06.dump │ │ │ ├── vim_ex_command_modifiers_07.dump │ │ │ ├── vim_ex_commands_00.dump │ │ │ ├── vim_ex_commands_01.dump │ │ │ ├── vim_ex_commands_02.dump │ │ │ ├── vim_ex_commands_03.dump │ │ │ ├── vim_ex_commands_04.dump │ │ │ ├── vim_ex_commands_05.dump │ │ │ ├── vim_ex_commands_06.dump │ │ │ ├── vim_ex_commands_07.dump │ │ │ ├── vim_ex_commands_08.dump │ │ │ ├── vim_ex_commands_09.dump │ │ │ ├── vim_ex_commands_10.dump │ │ │ ├── vim_ex_commands_11.dump │ │ │ ├── vim_ex_commands_12.dump │ │ │ ├── vim_ex_commands_13.dump │ │ │ ├── vim_ex_commands_14.dump │ │ │ ├── vim_ex_commands_15.dump │ │ │ ├── vim_ex_commands_16.dump │ │ │ ├── vim_ex_commands_17.dump │ │ │ ├── vim_ex_commands_18.dump │ │ │ ├── vim_ex_commands_19.dump │ │ │ ├── vim_ex_commands_20.dump │ │ │ ├── vim_ex_commands_21.dump │ │ │ ├── vim_ex_commands_22.dump │ │ │ ├── vim_ex_commands_23.dump │ │ │ ├── vim_ex_commands_24.dump │ │ │ ├── vim_ex_commands_25.dump │ │ │ ├── vim_ex_commands_26.dump │ │ │ ├── vim_ex_commands_27.dump │ │ │ ├── vim_ex_commands_28.dump │ │ │ ├── vim_ex_commands_29.dump │ │ │ ├── vim_ex_commands_30.dump │ │ │ ├── vim_ex_commands_31.dump │ │ │ ├── vim_ex_commands_32.dump │ │ │ ├── vim_ex_commands_33.dump │ │ │ ├── vim_ex_commands_34.dump │ │ │ ├── vim_ex_commands_35.dump │ │ │ ├── vim_ex_commands_36.dump │ │ │ ├── vim_ex_commands_37.dump │ │ │ ├── vim_ex_commands_38.dump │ │ │ ├── vim_ex_commands_39.dump │ │ │ ├── vim_ex_commands_40.dump │ │ │ ├── vim_ex_commands_41.dump │ │ │ ├── vim_ex_commands_42.dump │ │ │ ├── vim_ex_commands_43.dump │ │ │ ├── vim_ex_commands_44.dump │ │ │ ├── vim_ex_commands_45.dump │ │ │ ├── vim_ex_commands_46.dump │ │ │ ├── vim_ex_commands_47.dump │ │ │ ├── vim_ex_commands_48.dump │ │ │ ├── vim_ex_commands_49.dump │ │ │ ├── vim_ex_commands_50.dump │ │ │ ├── vim_ex_commands_51.dump │ │ │ ├── vim_ex_commands_52.dump │ │ │ ├── vim_ex_commands_53.dump │ │ │ ├── vim_ex_commands_54.dump │ │ │ ├── vim_ex_commands_55.dump │ │ │ ├── vim_ex_commands_56.dump │ │ │ ├── vim_ex_commands_57.dump │ │ │ ├── vim_ex_commands_58.dump │ │ │ ├── vim_ex_commands_59.dump │ │ │ ├── vim_ex_commands_60.dump │ │ │ ├── vim_ex_commands_61.dump │ │ │ ├── vim_ex_commands_62.dump │ │ │ ├── vim_ex_commands_63.dump │ │ │ ├── vim_ex_commands_64.dump │ │ │ ├── vim_ex_commands_65.dump │ │ │ ├── vim_ex_commands_66.dump │ │ │ ├── vim_ex_commands_67.dump │ │ │ ├── vim_ex_debug_00.dump │ │ │ ├── vim_ex_debuggreedy_00.dump │ │ │ ├── vim_ex_debuggreedy_01.dump │ │ │ ├── vim_ex_debuggreedy_02.dump │ │ │ ├── vim_ex_def_00.dump │ │ │ ├── vim_ex_def_01.dump │ │ │ ├── vim_ex_def_02.dump │ │ │ ├── vim_ex_def_03.dump │ │ │ ├── vim_ex_def_04.dump │ │ │ ├── vim_ex_def_05.dump │ │ │ ├── vim_ex_def_06.dump │ │ │ ├── vim_ex_def_07.dump │ │ │ ├── vim_ex_def_fold_00.dump │ │ │ ├── vim_ex_def_fold_01.dump │ │ │ ├── vim_ex_def_fold_02.dump │ │ │ ├── vim_ex_def_fold_03.dump │ │ │ ├── vim_ex_def_fold_04.dump │ │ │ ├── vim_ex_def_fold_05.dump │ │ │ ├── vim_ex_def_fold_06.dump │ │ │ ├── vim_ex_def_fold_07.dump │ │ │ ├── vim_ex_def_fold_08.dump │ │ │ ├── vim_ex_def_fold_09.dump │ │ │ ├── vim_ex_def_fold_10.dump │ │ │ ├── vim_ex_def_nested_00.dump │ │ │ ├── vim_ex_def_nested_01.dump │ │ │ ├── vim_ex_def_nested_fold_00.dump │ │ │ ├── vim_ex_def_return_type_00.dump │ │ │ ├── vim_ex_def_return_type_01.dump │ │ │ ├── vim_ex_def_return_type_02.dump │ │ │ ├── vim_ex_def_return_type_03.dump │ │ │ ├── vim_ex_defer_00.dump │ │ │ ├── vim_ex_delfunction_00.dump │ │ │ ├── vim_ex_delfunction_01.dump │ │ │ ├── vim_ex_delfunction_02.dump │ │ │ ├── vim_ex_do_commands_00.dump │ │ │ ├── vim_ex_do_commands_01.dump │ │ │ ├── vim_ex_do_commands_02.dump │ │ │ ├── vim_ex_do_commands_03.dump │ │ │ ├── vim_ex_echo_00.dump │ │ │ ├── vim_ex_echo_01.dump │ │ │ ├── vim_ex_echo_02.dump │ │ │ ├── vim_ex_echo_03.dump │ │ │ ├── vim_ex_eval_00.dump │ │ │ ├── vim_ex_eval_01.dump │ │ │ ├── vim_ex_execute_00.dump │ │ │ ├── vim_ex_execute_01.dump │ │ │ ├── vim_ex_execute_02.dump │ │ │ ├── vim_ex_execute_03.dump │ │ │ ├── vim_ex_filetype_00.dump │ │ │ ├── vim_ex_filetype_01.dump │ │ │ ├── vim_ex_filter_00.dump │ │ │ ├── vim_ex_for_00.dump │ │ │ ├── vim_ex_for_01.dump │ │ │ ├── vim_ex_for_02.dump │ │ │ ├── vim_ex_for_03.dump │ │ │ ├── vim_ex_function_00.dump │ │ │ ├── vim_ex_function_01.dump │ │ │ ├── vim_ex_function_02.dump │ │ │ ├── vim_ex_function_03.dump │ │ │ ├── vim_ex_function_04.dump │ │ │ ├── vim_ex_function_05.dump │ │ │ ├── vim_ex_function_06.dump │ │ │ ├── vim_ex_function_07.dump │ │ │ ├── vim_ex_function_08.dump │ │ │ ├── vim_ex_function_09.dump │ │ │ ├── vim_ex_function_10.dump │ │ │ ├── vim_ex_function_11.dump │ │ │ ├── vim_ex_function_12.dump │ │ │ ├── vim_ex_function_13.dump │ │ │ ├── vim_ex_function_14.dump │ │ │ ├── vim_ex_function_15.dump │ │ │ ├── vim_ex_function_def_tail_comment_errors_00.dump │ │ │ ├── vim_ex_function_def_tail_comment_errors_01.dump │ │ │ ├── vim_ex_function_def_tail_comment_errors_02.dump │ │ │ ├── vim_ex_function_def_tail_comments_00.dump │ │ │ ├── vim_ex_function_def_tail_comments_01.dump │ │ │ ├── vim_ex_function_def_tail_comments_02.dump │ │ │ ├── vim_ex_function_fold_00.dump │ │ │ ├── vim_ex_function_fold_01.dump │ │ │ ├── vim_ex_function_fold_02.dump │ │ │ ├── vim_ex_function_fold_03.dump │ │ │ ├── vim_ex_function_fold_04.dump │ │ │ ├── vim_ex_function_fold_05.dump │ │ │ ├── vim_ex_function_fold_06.dump │ │ │ ├── vim_ex_function_fold_07.dump │ │ │ ├── vim_ex_function_fold_08.dump │ │ │ ├── vim_ex_function_fold_09.dump │ │ │ ├── vim_ex_function_fold_10.dump │ │ │ ├── vim_ex_function_fold_11.dump │ │ │ ├── vim_ex_function_fold_12.dump │ │ │ ├── vim_ex_function_fold_13.dump │ │ │ ├── vim_ex_function_fold_14.dump │ │ │ ├── vim_ex_function_fold_15.dump │ │ │ ├── vim_ex_function_fold_16.dump │ │ │ ├── vim_ex_function_fold_17.dump │ │ │ ├── vim_ex_function_fold_18.dump │ │ │ ├── vim_ex_function_fold_19.dump │ │ │ ├── vim_ex_function_nested_00.dump │ │ │ ├── vim_ex_function_nested_01.dump │ │ │ ├── vim_ex_function_nested_02.dump │ │ │ ├── vim_ex_function_nested_fold_00.dump │ │ │ ├── vim_ex_grep_00.dump │ │ │ ├── vim_ex_grep_01.dump │ │ │ ├── vim_ex_grep_02.dump │ │ │ ├── vim_ex_helpgrep_00.dump │ │ │ ├── vim_ex_highlight_00.dump │ │ │ ├── vim_ex_highlight_01.dump │ │ │ ├── vim_ex_highlight_02.dump │ │ │ ├── vim_ex_highlight_03.dump │ │ │ ├── vim_ex_highlight_04.dump │ │ │ ├── vim_ex_highlight_05.dump │ │ │ ├── vim_ex_highlight_06.dump │ │ │ ├── vim_ex_history_00.dump │ │ │ ├── vim_ex_history_01.dump │ │ │ ├── vim_ex_history_02.dump │ │ │ ├── vim_ex_history_03.dump │ │ │ ├── vim_ex_history_04.dump │ │ │ ├── vim_ex_history_05.dump │ │ │ ├── vim_ex_import_00.dump │ │ │ ├── vim_ex_import_01.dump │ │ │ ├── vim_ex_import_02.dump │ │ │ ├── vim_ex_import_03.dump │ │ │ ├── vim_ex_import_04.dump │ │ │ ├── vim_ex_import_05.dump │ │ │ ├── vim_ex_import_06.dump │ │ │ ├── vim_ex_let_heredoc_00.dump │ │ │ ├── vim_ex_let_heredoc_01.dump │ │ │ ├── vim_ex_let_heredoc_02.dump │ │ │ ├── vim_ex_let_heredoc_03.dump │ │ │ ├── vim_ex_let_heredoc_04.dump │ │ │ ├── vim_ex_let_heredoc_05.dump │ │ │ ├── vim_ex_let_heredoc_06.dump │ │ │ ├── vim_ex_let_heredoc_07.dump │ │ │ ├── vim_ex_let_heredoc_08.dump │ │ │ ├── vim_ex_let_heredoc_09.dump │ │ │ ├── vim_ex_let_heredoc_10.dump │ │ │ ├── vim_ex_let_heredoc_11.dump │ │ │ ├── vim_ex_let_heredoc_12.dump │ │ │ ├── vim_ex_let_heredoc_13.dump │ │ │ ├── vim_ex_let_heredoc_14.dump │ │ │ ├── vim_ex_loadkeymap_00.dump │ │ │ ├── vim_ex_loadkeymap_01.dump │ │ │ ├── vim_ex_loadkeymap_after_bar_00.dump │ │ │ ├── vim_ex_loadkeymap_after_colon_00.dump │ │ │ ├── vim_ex_lua_00.dump │ │ │ ├── vim_ex_lua_01.dump │ │ │ ├── vim_ex_lua_02.dump │ │ │ ├── vim_ex_lua_03.dump │ │ │ ├── vim_ex_lua_04.dump │ │ │ ├── vim_ex_lua_05.dump │ │ │ ├── vim_ex_lua_06.dump │ │ │ ├── vim_ex_lua_07.dump │ │ │ ├── vim_ex_lua_08.dump │ │ │ ├── vim_ex_make_00.dump │ │ │ ├── vim_ex_make_01.dump │ │ │ ├── vim_ex_make_02.dump │ │ │ ├── vim_ex_map_00.dump │ │ │ ├── vim_ex_map_01.dump │ │ │ ├── vim_ex_map_02.dump │ │ │ ├── vim_ex_map_03.dump │ │ │ ├── vim_ex_map_04.dump │ │ │ ├── vim_ex_map_05.dump │ │ │ ├── vim_ex_map_06.dump │ │ │ ├── vim_ex_map_07.dump │ │ │ ├── vim_ex_mark_00.dump │ │ │ ├── vim_ex_mark_01.dump │ │ │ ├── vim_ex_mark_02.dump │ │ │ ├── vim_ex_mark_03.dump │ │ │ ├── vim_ex_mark_04.dump │ │ │ ├── vim_ex_mark_05.dump │ │ │ ├── vim_ex_mark_06.dump │ │ │ ├── vim_ex_mark_07.dump │ │ │ ├── vim_ex_mark_08.dump │ │ │ ├── vim_ex_mark_09.dump │ │ │ ├── vim_ex_mark_10.dump │ │ │ ├── vim_ex_mark_11.dump │ │ │ ├── vim_ex_mark_12.dump │ │ │ ├── vim_ex_match_00.dump │ │ │ ├── vim_ex_match_01.dump │ │ │ ├── vim_ex_match_02.dump │ │ │ ├── vim_ex_match_03.dump │ │ │ ├── vim_ex_menu_00.dump │ │ │ ├── vim_ex_menu_01.dump │ │ │ ├── vim_ex_menu_02.dump │ │ │ ├── vim_ex_menu_03.dump │ │ │ ├── vim_ex_menu_04.dump │ │ │ ├── vim_ex_menu_05.dump │ │ │ ├── vim_ex_menutranslate_00.dump │ │ │ ├── vim_ex_menutranslate_01.dump │ │ │ ├── vim_ex_menutranslate_02.dump │ │ │ ├── vim_ex_menutranslate_03.dump │ │ │ ├── vim_ex_mzscheme_00.dump │ │ │ ├── vim_ex_mzscheme_01.dump │ │ │ ├── vim_ex_mzscheme_02.dump │ │ │ ├── vim_ex_mzscheme_03.dump │ │ │ ├── vim_ex_mzscheme_04.dump │ │ │ ├── vim_ex_mzscheme_05.dump │ │ │ ├── vim_ex_mzscheme_06.dump │ │ │ ├── vim_ex_mzscheme_07.dump │ │ │ ├── vim_ex_mzscheme_08.dump │ │ │ ├── vim_ex_normal_00.dump │ │ │ ├── vim_ex_normal_01.dump │ │ │ ├── vim_ex_perl_00.dump │ │ │ ├── vim_ex_perl_01.dump │ │ │ ├── vim_ex_perl_02.dump │ │ │ ├── vim_ex_perl_03.dump │ │ │ ├── vim_ex_perl_04.dump │ │ │ ├── vim_ex_perl_05.dump │ │ │ ├── vim_ex_perl_06.dump │ │ │ ├── vim_ex_perl_07.dump │ │ │ ├── vim_ex_perl_08.dump │ │ │ ├── vim_ex_profile_00.dump │ │ │ ├── vim_ex_profile_01.dump │ │ │ ├── vim_ex_profile_02.dump │ │ │ ├── vim_ex_prompt_commands_00.dump │ │ │ ├── vim_ex_prompt_commands_01.dump │ │ │ ├── vim_ex_prompt_commands_02.dump │ │ │ ├── vim_ex_python_00.dump │ │ │ ├── vim_ex_python_01.dump │ │ │ ├── vim_ex_python_02.dump │ │ │ ├── vim_ex_python_03.dump │ │ │ ├── vim_ex_python_04.dump │ │ │ ├── vim_ex_python_05.dump │ │ │ ├── vim_ex_python_06.dump │ │ │ ├── vim_ex_python_07.dump │ │ │ ├── vim_ex_python_08.dump │ │ │ ├── vim_ex_python_09.dump │ │ │ ├── vim_ex_range_00.dump │ │ │ ├── vim_ex_range_01.dump │ │ │ ├── vim_ex_range_02.dump │ │ │ ├── vim_ex_range_03.dump │ │ │ ├── vim_ex_range_04.dump │ │ │ ├── vim_ex_range_05.dump │ │ │ ├── vim_ex_redir_00.dump │ │ │ ├── vim_ex_redir_01.dump │ │ │ ├── vim_ex_redir_02.dump │ │ │ ├── vim_ex_redir_03.dump │ │ │ ├── vim_ex_redir_04.dump │ │ │ ├── vim_ex_ruby_00.dump │ │ │ ├── vim_ex_ruby_01.dump │ │ │ ├── vim_ex_ruby_02.dump │ │ │ ├── vim_ex_ruby_03.dump │ │ │ ├── vim_ex_ruby_04.dump │ │ │ ├── vim_ex_ruby_05.dump │ │ │ ├── vim_ex_ruby_06.dump │ │ │ ├── vim_ex_ruby_07.dump │ │ │ ├── vim_ex_ruby_08.dump │ │ │ ├── vim_ex_set_00.dump │ │ │ ├── vim_ex_set_01.dump │ │ │ ├── vim_ex_set_02.dump │ │ │ ├── vim_ex_set_03.dump │ │ │ ├── vim_ex_set_04.dump │ │ │ ├── vim_ex_set_05.dump │ │ │ ├── vim_ex_set_06.dump │ │ │ ├── vim_ex_set_07.dump │ │ │ ├── vim_ex_set_backslash_00.dump │ │ │ ├── vim_ex_set_backslash_01.dump │ │ │ ├── vim_ex_set_backslash_02.dump │ │ │ ├── vim_ex_set_backslash_03.dump │ │ │ ├── vim_ex_set_backslash_04.dump │ │ │ ├── vim_ex_sleep_00.dump │ │ │ ├── vim_ex_sort_00.dump │ │ │ ├── vim_ex_sort_01.dump │ │ │ ├── vim_ex_sort_02.dump │ │ │ ├── vim_ex_sort_03.dump │ │ │ ├── vim_ex_substitute_00.dump │ │ │ ├── vim_ex_substitute_01.dump │ │ │ ├── vim_ex_substitute_02.dump │ │ │ ├── vim_ex_substitute_03.dump │ │ │ ├── vim_ex_substitute_04.dump │ │ │ ├── vim_ex_substitute_05.dump │ │ │ ├── vim_ex_substitute_06.dump │ │ │ ├── vim_ex_substitute_07.dump │ │ │ ├── vim_ex_substitute_08.dump │ │ │ ├── vim_ex_substitute_09.dump │ │ │ ├── vim_ex_substitute_10.dump │ │ │ ├── vim_ex_substitute_11.dump │ │ │ ├── vim_ex_syntax_00.dump │ │ │ ├── vim_ex_syntax_01.dump │ │ │ ├── vim_ex_syntax_02.dump │ │ │ ├── vim_ex_syntax_03.dump │ │ │ ├── vim_ex_syntax_04.dump │ │ │ ├── vim_ex_syntax_05.dump │ │ │ ├── vim_ex_syntax_06.dump │ │ │ ├── vim_ex_syntax_07.dump │ │ │ ├── vim_ex_syntax_08.dump │ │ │ ├── vim_ex_syntax_09.dump │ │ │ ├── vim_ex_syntax_10.dump │ │ │ ├── vim_ex_syntax_11.dump │ │ │ ├── vim_ex_syntax_12.dump │ │ │ ├── vim_ex_syntax_13.dump │ │ │ ├── vim_ex_syntax_14.dump │ │ │ ├── vim_ex_syntax_15.dump │ │ │ ├── vim_ex_syntime_00.dump │ │ │ ├── vim_ex_syntime_01.dump │ │ │ ├── vim_ex_syntime_02.dump │ │ │ ├── vim_ex_tcl_00.dump │ │ │ ├── vim_ex_tcl_01.dump │ │ │ ├── vim_ex_tcl_02.dump │ │ │ ├── vim_ex_tcl_03.dump │ │ │ ├── vim_ex_tcl_04.dump │ │ │ ├── vim_ex_tcl_05.dump │ │ │ ├── vim_ex_tcl_06.dump │ │ │ ├── vim_ex_tcl_07.dump │ │ │ ├── vim_ex_tcl_08.dump │ │ │ ├── vim_ex_terminal_00.dump │ │ │ ├── vim_ex_terminal_01.dump │ │ │ ├── vim_ex_terminal_02.dump │ │ │ ├── vim_ex_terminal_03.dump │ │ │ ├── vim_ex_terminal_04.dump │ │ │ ├── vim_ex_throw_00.dump │ │ │ ├── vim_ex_uniq_00.dump │ │ │ ├── vim_ex_uniq_01.dump │ │ │ ├── vim_ex_vimgrep_00.dump │ │ │ ├── vim_ex_vimgrep_01.dump │ │ │ ├── vim_ex_vimgrep_02.dump │ │ │ ├── vim_ex_vimgrep_03.dump │ │ │ ├── vim_ex_vimgrep_04.dump │ │ │ ├── vim_ex_wincmd_00.dump │ │ │ ├── vim_ex_wincmd_01.dump │ │ │ ├── vim_ex_wincmd_02.dump │ │ │ ├── vim_ex_wincmd_03.dump │ │ │ ├── vim_expressions_00.dump │ │ │ ├── vim_expressions_01.dump │ │ │ ├── vim_expressions_02.dump │ │ │ ├── vim_expressions_03.dump │ │ │ ├── vim_expressions_04.dump │ │ │ ├── vim_expressions_05.dump │ │ │ ├── vim_expressions_06.dump │ │ │ ├── vim_expressions_07.dump │ │ │ ├── vim_expressions_08.dump │ │ │ ├── vim_expressions_09.dump │ │ │ ├── vim_expressions_10.dump │ │ │ ├── vim_expressions_11.dump │ │ │ ├── vim_expressions_12.dump │ │ │ ├── vim_expressions_13.dump │ │ │ ├── vim_expressions_14.dump │ │ │ ├── vim_expressions_15.dump │ │ │ ├── vim_expressions_16.dump │ │ │ ├── vim_expressions_17.dump │ │ │ ├── vim_expressions_18.dump │ │ │ ├── vim_expressions_19.dump │ │ │ ├── vim_expressions_20.dump │ │ │ ├── vim_expressions_21.dump │ │ │ ├── vim_expressions_22.dump │ │ │ ├── vim_expressions_23.dump │ │ │ ├── vim_expressions_24.dump │ │ │ ├── vim_function_calls_00.dump │ │ │ ├── vim_function_calls_01.dump │ │ │ ├── vim_function_calls_02.dump │ │ │ ├── vim_function_calls_03.dump │ │ │ ├── vim_function_calls_04.dump │ │ │ ├── vim_function_calls_05.dump │ │ │ ├── vim_function_calls_06.dump │ │ │ ├── vim_function_calls_07.dump │ │ │ ├── vim_function_calls_08.dump │ │ │ ├── vim_function_calls_09.dump │ │ │ ├── vim_function_calls_10.dump │ │ │ ├── vim_function_calls_11.dump │ │ │ ├── vim_function_calls_12.dump │ │ │ ├── vim_function_calls_13.dump │ │ │ ├── vim_function_calls_14.dump │ │ │ ├── vim_function_calls_15.dump │ │ │ ├── vim_function_variables_00.dump │ │ │ ├── vim_function_variables_01.dump │ │ │ ├── vim_function_variables_02.dump │ │ │ ├── vim_function_variables_03.dump │ │ │ ├── vim_function_variables_04.dump │ │ │ ├── vim_function_variables_05.dump │ │ │ ├── vim_function_variables_06.dump │ │ │ ├── vim_function_variables_07.dump │ │ │ ├── vim_function_variables_08.dump │ │ │ ├── vim_function_variables_09.dump │ │ │ ├── vim_function_variables_10.dump │ │ │ ├── vim_function_variables_11.dump │ │ │ ├── vim_function_variables_12.dump │ │ │ ├── vim_function_variables_13.dump │ │ │ ├── vim_function_variables_14.dump │ │ │ ├── vim_function_variables_15.dump │ │ │ ├── vim_function_variables_16.dump │ │ │ ├── vim_function_variables_17.dump │ │ │ ├── vim_function_variables_18.dump │ │ │ ├── vim_function_variables_19.dump │ │ │ ├── vim_function_variables_20.dump │ │ │ ├── vim_function_variables_21.dump │ │ │ ├── vim_function_variables_22.dump │ │ │ ├── vim_function_variables_23.dump │ │ │ ├── vim_key_notation_00.dump │ │ │ ├── vim_key_notation_01.dump │ │ │ ├── vim_key_notation_02.dump │ │ │ ├── vim_key_notation_03.dump │ │ │ ├── vim_key_notation_04.dump │ │ │ ├── vim_key_notation_05.dump │ │ │ ├── vim_key_notation_06.dump │ │ │ ├── vim_key_notation_07.dump │ │ │ ├── vim_key_notation_08.dump │ │ │ ├── vim_key_notation_09.dump │ │ │ ├── vim_lambdas_00.dump │ │ │ ├── vim_lambdas_01.dump │ │ │ ├── vim_lambdas_02.dump │ │ │ ├── vim_lambdas_03.dump │ │ │ ├── vim_lambdas_04.dump │ │ │ ├── vim_lambdas_05.dump │ │ │ ├── vim_lambdas_06.dump │ │ │ ├── vim_lambdas_07.dump │ │ │ ├── vim_line_continuation_00.dump │ │ │ ├── vim_line_continuation_01.dump │ │ │ ├── vim_line_continuation_02.dump │ │ │ ├── vim_line_continuation_03.dump │ │ │ ├── vim_new_00.dump │ │ │ ├── vim_new_01.dump │ │ │ ├── vim_no_comment_strings_00.dump │ │ │ ├── vim_no_comment_strings_01.dump │ │ │ ├── vim_nvim_features_00.dump │ │ │ ├── vim_nvim_features_01.dump │ │ │ ├── vim_nvim_features_02.dump │ │ │ ├── vim_nvim_features_03.dump │ │ │ ├── vim_nvim_features_04.dump │ │ │ ├── vim_nvim_features_05.dump │ │ │ ├── vim_nvim_features_06.dump │ │ │ ├── vim_nvim_features_07.dump │ │ │ ├── vim_nvim_features_08.dump │ │ │ ├── vim_nvim_features_09.dump │ │ │ ├── vim_nvim_features_10.dump │ │ │ ├── vim_nvim_features_11.dump │ │ │ ├── vim_nvim_features_12.dump │ │ │ ├── vim_predefined_user_commands_00.dump │ │ │ ├── vim_predefined_user_commands_01.dump │ │ │ ├── vim_shebang_00.dump │ │ │ ├── vim_variables_00.dump │ │ │ ├── vim_variables_01.dump │ │ │ ├── vim_variables_02.dump │ │ │ ├── vim_variables_03.dump │ │ │ ├── vim_variables_04.dump │ │ │ ├── vim_variables_05.dump │ │ │ ├── vim_variables_06.dump │ │ │ ├── vim_variables_07.dump │ │ │ ├── vim_variables_08.dump │ │ │ ├── vim_variables_09.dump │ │ │ ├── vim_variables_10.dump │ │ │ ├── vim_variables_11.dump │ │ │ ├── vim_variables_12.dump │ │ │ ├── vim_variables_13.dump │ │ │ ├── vim_variables_14.dump │ │ │ ├── vim_variables_15.dump │ │ │ ├── vim_variables_16.dump │ │ │ ├── vim_variables_17.dump │ │ │ ├── vim_variables_18.dump │ │ │ ├── vim_variables_19.dump │ │ │ ├── vim_variables_20.dump │ │ │ ├── vim_variables_21.dump │ │ │ ├── vim_variables_22.dump │ │ │ ├── vim_variables_23.dump │ │ │ ├── yaml_00.dump │ │ │ ├── yaml_01.dump │ │ │ ├── yaml_02.dump │ │ │ ├── yaml_03.dump │ │ │ ├── yaml_04.dump │ │ │ ├── yaml_05.dump │ │ │ ├── yaml_06.dump │ │ │ └── yaml_07.dump │ │ ├── ftplugin │ │ │ └── java.vim │ │ ├── input │ │ │ ├── awk.awk │ │ │ ├── c.c │ │ │ ├── c_bool_constant.c │ │ │ ├── c_character_constant.c │ │ │ ├── c_integer_constant.c │ │ │ ├── c_keywords.c │ │ │ ├── c_preprocessor_conditional.c │ │ │ ├── c_preprocessor_embed.c │ │ │ ├── c_preprocessor_error.c │ │ │ ├── c_string_literal.c │ │ │ ├── codeowners.txt │ │ │ ├── css_1.css │ │ │ ├── dts_zephyr.overlay │ │ │ ├── dts_zmk.keymap │ │ │ ├── haskell.hs │ │ │ ├── help.txt │ │ │ ├── help_ex_version.txt │ │ │ ├── html.html │ │ │ ├── html_fold_expr.html │ │ │ ├── html_fold_syntax.html │ │ │ ├── java_annotations.java │ │ │ ├── java_annotations_signature.java │ │ │ ├── java_comments_html.java │ │ │ ├── java_comments_markdown.java │ │ │ ├── java_contextual_keywords.java │ │ │ ├── java_enfoldment.java │ │ │ ├── java_escapes.java │ │ │ ├── java_generics.java │ │ │ ├── java_generics_signature.java │ │ │ ├── java_lambda_expressions.java │ │ │ ├── java_lambda_expressions_signature.java │ │ │ ├── java_method_references.java │ │ │ ├── java_method_references_signature.java │ │ │ ├── java_methods_indent2.java │ │ │ ├── java_methods_indent2_signature.java │ │ │ ├── java_methods_indent4.java │ │ │ ├── java_methods_indent4_signature.java │ │ │ ├── java_methods_indent8.java │ │ │ ├── java_methods_indent8_signature.java │ │ │ ├── java_methods_style.java │ │ │ ├── java_methods_style_signature.java │ │ │ ├── java_module_info.java │ │ │ ├── java_numbers.java │ │ │ ├── java_previews_430.java │ │ │ ├── java_previews_455.java │ │ │ ├── java_string.java │ │ │ ├── java_switch.java │ │ │ ├── java_unfoldment.java │ │ │ ├── markdown_circularity.markdown │ │ │ ├── markdown_conceal.markdown │ │ │ ├── modula2_iso.def │ │ │ ├── modula2_pim.def │ │ │ ├── modula2_r10.def │ │ │ ├── progress_comments.p │ │ │ ├── python2_strings.py │ │ │ ├── python_ellipsis.py │ │ │ ├── python_strings_bytes.py │ │ │ ├── python_type.py │ │ │ ├── selftestdir │ │ │ │ ├── README.txt │ │ │ │ ├── dots_01 │ │ │ │ ├── dots_02 │ │ │ │ ├── dots_03 │ │ │ │ ├── dots_04 │ │ │ │ ├── dots_05 │ │ │ │ ├── dots_06 │ │ │ │ ├── dots_07 │ │ │ │ ├── dots_08 │ │ │ │ ├── dots_09 │ │ │ │ ├── dots_10 │ │ │ │ ├── dots_11 │ │ │ │ ├── dots_12 │ │ │ │ ├── dots_13 │ │ │ │ ├── dots_14 │ │ │ │ ├── dots_15 │ │ │ │ ├── dots_16 │ │ │ │ ├── dots_17 │ │ │ │ ├── dots_18 │ │ │ │ ├── dots_19 │ │ │ │ └── dots_20 │ │ │ ├── setup │ │ │ │ ├── help.vim │ │ │ │ ├── help_ex_version.vim │ │ │ │ ├── html_fold_expr.vim │ │ │ │ ├── java_module_info.vim │ │ │ │ ├── markdown_circularity.vim │ │ │ │ ├── markdown_conceal.vim │ │ │ │ ├── vim9_blocks.vim │ │ │ │ ├── vim9_builtin_object_methods2.vim │ │ │ │ ├── vim9_comments.vim │ │ │ │ ├── vim9_def_variables.vim │ │ │ │ ├── vim9_ex_class_fold.vim │ │ │ │ ├── vim9_ex_commands.vim │ │ │ │ ├── vim9_ex_enum.vim │ │ │ │ ├── vim9_ex_enum2.vim │ │ │ │ ├── vim9_ex_for.vim │ │ │ │ ├── vim9_ex_function_def_tail_comment_errors.vim │ │ │ │ ├── vim9_ex_function_def_tail_comments.vim │ │ │ │ ├── vim9_ex_import.vim │ │ │ │ ├── vim9_ex_interface_fold.vim │ │ │ │ ├── vim9_ex_let_heredoc.vim │ │ │ │ ├── vim9_ex_loadkeymap.vim │ │ │ │ ├── vim9_expressions.vim │ │ │ │ ├── vim9_lambdas.vim │ │ │ │ ├── vim9_legacy_header.vim │ │ │ │ ├── vim9_super_this_keywords.vim │ │ │ │ ├── vim9_super_this_keywords2.vim │ │ │ │ ├── vim9_super_this_keywords3.vim │ │ │ │ ├── vim9_variables.vim │ │ │ │ ├── vim_comments.vim │ │ │ │ ├── vim_ex_call.vim │ │ │ │ ├── vim_ex_command.vim │ │ │ │ ├── vim_ex_commands.vim │ │ │ │ ├── vim_ex_def.vim │ │ │ │ ├── vim_ex_def_fold.vim │ │ │ │ ├── vim_ex_def_nested.vim │ │ │ │ ├── vim_ex_def_nested_fold.vim │ │ │ │ ├── vim_ex_echo.vim │ │ │ │ ├── vim_ex_execute.vim │ │ │ │ ├── vim_ex_for.vim │ │ │ │ ├── vim_ex_function.vim │ │ │ │ ├── vim_ex_function_def_tail_comment_errors.vim │ │ │ │ ├── vim_ex_function_def_tail_comments.vim │ │ │ │ ├── vim_ex_function_fold.vim │ │ │ │ ├── vim_ex_import.vim │ │ │ │ ├── vim_ex_let_heredoc.vim │ │ │ │ ├── vim_ex_loadkeymap.vim │ │ │ │ ├── vim_ex_loadkeymap_after_bar.vim │ │ │ │ ├── vim_ex_loadkeymap_after_colon.vim │ │ │ │ ├── vim_ex_map.vim │ │ │ │ ├── vim_ex_match.vim │ │ │ │ ├── vim_ex_menu.vim │ │ │ │ ├── vim_ex_redir.vim │ │ │ │ ├── vim_ex_substitute.vim │ │ │ │ ├── vim_ex_syntax.vim │ │ │ │ ├── vim_expressions.vim │ │ │ │ ├── vim_function_variables.vim │ │ │ │ ├── vim_lambdas.vim │ │ │ │ ├── vim_line_continuation.vim │ │ │ │ └── vim_variables.vim │ │ │ ├── sh_01.sh │ │ │ ├── sh_02.sh │ │ │ ├── sh_03.sh │ │ │ ├── sh_04.sh │ │ │ ├── sh_05.sh │ │ │ ├── sh_06.sh │ │ │ ├── sh_07.sh │ │ │ ├── sh_08.sh │ │ │ ├── sh_09.sh │ │ │ ├── sh_11.sh │ │ │ ├── sh_12.sh │ │ │ ├── sh_13.sh │ │ │ ├── sh_14.sh │ │ │ ├── sh_bash.bash │ │ │ ├── sh_bash_alias.sh │ │ │ ├── sh_generic.ksh │ │ │ ├── sh_ksh2020.ksh │ │ │ ├── sh_ksh88.ksh │ │ │ ├── sh_ksh93_generic.ksh │ │ │ ├── sh_ksh93u.ksh │ │ │ ├── sh_ksh93v.ksh │ │ │ ├── sh_ksh_array.sh │ │ │ ├── sh_mksh.ksh │ │ │ ├── sh_quoting.sh │ │ │ ├── sh_sundrous.bash │ │ │ ├── tera.tera │ │ │ ├── tex_01.tex │ │ │ ├── tex_02.tex │ │ │ ├── tex_03.tex │ │ │ ├── vim9_blocks.vim │ │ │ ├── vim9_builtin_object_methods.vim │ │ │ ├── vim9_builtin_object_methods2.vim │ │ │ ├── vim9_comment_strings.vim │ │ │ ├── vim9_comments.vim │ │ │ ├── vim9_constructors.vim │ │ │ ├── vim9_def_variables.vim │ │ │ ├── vim9_ex_class_fold.vim │ │ │ ├── vim9_ex_commands.vim │ │ │ ├── vim9_ex_echo.vim │ │ │ ├── vim9_ex_enum.vim │ │ │ ├── vim9_ex_enum2.vim │ │ │ ├── vim9_ex_enum_fold.vim │ │ │ ├── vim9_ex_for.vim │ │ │ ├── vim9_ex_function_def_tail_comment_errors.vim │ │ │ ├── vim9_ex_function_def_tail_comments.vim │ │ │ ├── vim9_ex_import.vim │ │ │ ├── vim9_ex_interface_fold.vim │ │ │ ├── vim9_ex_let_heredoc.vim │ │ │ ├── vim9_ex_loadkeymap.vim │ │ │ ├── vim9_ex_type.vim │ │ │ ├── vim9_expressions.vim │ │ │ ├── vim9_function_calls.vim │ │ │ ├── vim9_generic_function_example_enum.vim │ │ │ ├── vim9_generic_function_example_list.vim │ │ │ ├── vim9_generic_function_example_set.vim │ │ │ ├── vim9_generic_functions.vim │ │ │ ├── vim9_lambdas.vim │ │ │ ├── vim9_legacy_header.vim │ │ │ ├── vim9_legacy_header_fold.vim │ │ │ ├── vim9_no_comment_strings.vim │ │ │ ├── vim9_shebang.vim │ │ │ ├── vim9_super_this_keywords.vim │ │ │ ├── vim9_super_this_keywords2.vim │ │ │ ├── vim9_super_this_keywords3.vim │ │ │ ├── vim9_tuples.vim │ │ │ ├── vim9_types.vim │ │ │ ├── vim9_types_example_object.vim │ │ │ ├── vim9_types_object.vim │ │ │ ├── vim9_variables.vim │ │ │ ├── vim_comment_strings.vim │ │ │ ├── vim_comments.vim │ │ │ ├── vim_ex_abbreviate.vim │ │ │ ├── vim_ex_at.vim │ │ │ ├── vim_ex_augroup.vim │ │ │ ├── vim_ex_autocmd.vim │ │ │ ├── vim_ex_behave.vim │ │ │ ├── vim_ex_breakpoint_commands.vim │ │ │ ├── vim_ex_call.vim │ │ │ ├── vim_ex_catch.vim │ │ │ ├── vim_ex_cd.vim │ │ │ ├── vim_ex_command.vim │ │ │ ├── vim_ex_command_modifiers.vim │ │ │ ├── vim_ex_commands.vim │ │ │ ├── vim_ex_debug.vim │ │ │ ├── vim_ex_debuggreedy.vim │ │ │ ├── vim_ex_def.vim │ │ │ ├── vim_ex_def_fold.vim │ │ │ ├── vim_ex_def_nested.vim │ │ │ ├── vim_ex_def_nested_fold.vim │ │ │ ├── vim_ex_def_return_type.vim │ │ │ ├── vim_ex_defer.vim │ │ │ ├── vim_ex_delfunction.vim │ │ │ ├── vim_ex_do_commands.vim │ │ │ ├── vim_ex_echo.vim │ │ │ ├── vim_ex_eval.vim │ │ │ ├── vim_ex_execute.vim │ │ │ ├── vim_ex_filetype.vim │ │ │ ├── vim_ex_filter.vim │ │ │ ├── vim_ex_for.vim │ │ │ ├── vim_ex_function.vim │ │ │ ├── vim_ex_function_def_tail_comment_errors.vim │ │ │ ├── vim_ex_function_def_tail_comments.vim │ │ │ ├── vim_ex_function_fold.vim │ │ │ ├── vim_ex_function_nested.vim │ │ │ ├── vim_ex_function_nested_fold.vim │ │ │ ├── vim_ex_grep.vim │ │ │ ├── vim_ex_helpgrep.vim │ │ │ ├── vim_ex_highlight.vim │ │ │ ├── vim_ex_history.vim │ │ │ ├── vim_ex_import.vim │ │ │ ├── vim_ex_let_heredoc.vim │ │ │ ├── vim_ex_loadkeymap.vim │ │ │ ├── vim_ex_loadkeymap_after_bar.vim │ │ │ ├── vim_ex_loadkeymap_after_colon.vim │ │ │ ├── vim_ex_lua.vim │ │ │ ├── vim_ex_make.vim │ │ │ ├── vim_ex_map.vim │ │ │ ├── vim_ex_mark.vim │ │ │ ├── vim_ex_match.vim │ │ │ ├── vim_ex_menu.vim │ │ │ ├── vim_ex_menutranslate.vim │ │ │ ├── vim_ex_mzscheme.vim │ │ │ ├── vim_ex_normal.vim │ │ │ ├── vim_ex_perl.vim │ │ │ ├── vim_ex_profile.vim │ │ │ ├── vim_ex_prompt_commands.vim │ │ │ ├── vim_ex_python.vim │ │ │ ├── vim_ex_range.vim │ │ │ ├── vim_ex_redir.vim │ │ │ ├── vim_ex_ruby.vim │ │ │ ├── vim_ex_set.vim │ │ │ ├── vim_ex_set_backslash.vim │ │ │ ├── vim_ex_sleep.vim │ │ │ ├── vim_ex_sort.vim │ │ │ ├── vim_ex_substitute.vim │ │ │ ├── vim_ex_syntax.vim │ │ │ ├── vim_ex_syntime.vim │ │ │ ├── vim_ex_tcl.vim │ │ │ ├── vim_ex_terminal.vim │ │ │ ├── vim_ex_throw.vim │ │ │ ├── vim_ex_uniq.vim │ │ │ ├── vim_ex_vimgrep.vim │ │ │ ├── vim_ex_wincmd.vim │ │ │ ├── vim_expressions.vim │ │ │ ├── vim_function_calls.vim │ │ │ ├── vim_function_variables.vim │ │ │ ├── vim_key_notation.vim │ │ │ ├── vim_lambdas.vim │ │ │ ├── vim_line_continuation.vim │ │ │ ├── vim_new.vim │ │ │ ├── vim_no_comment_strings.vim │ │ │ ├── vim_nvim_features.vim │ │ │ ├── vim_predefined_user_commands.vim │ │ │ ├── vim_shebang.vim │ │ │ ├── vim_variables.vim │ │ │ └── yaml.yaml │ │ ├── runtest.vim │ │ ├── tools │ │ │ ├── maketestdeps │ │ │ └── regenerate_screendumps.sh │ │ └── viewdumps.vim │ ├── tex.vim │ ├── texinfo.vim │ ├── texmf.vim │ ├── tf.vim │ ├── thrift.vim │ ├── tiasm.vim │ ├── tidy.vim │ ├── tilde.vim │ ├── tli.vim │ ├── tmux.vim │ ├── toml.vim │ ├── tpp.vim │ ├── trasys.vim │ ├── treetop.vim │ ├── trustees.vim │ ├── tsalt.vim │ ├── tsscl.vim │ ├── tssgm.vim │ ├── tssop.vim │ ├── tsv.vim │ ├── tt2.vim │ ├── tt2html.vim │ ├── tt2js.vim │ ├── tutor.vim │ ├── typescript.vim │ ├── typescriptreact.vim │ ├── typst.vim │ ├── uc.vim │ ├── uci.vim │ ├── udevconf.vim │ ├── udevperm.vim │ ├── udevrules.vim │ ├── uil.vim │ ├── unison.vim │ ├── updatedb.vim │ ├── upstart.vim │ ├── upstreamdat.vim │ ├── upstreaminstalllog.vim │ ├── upstreamlog.vim │ ├── upstreamrpt.vim │ ├── urlshortcut.vim │ ├── usserverlog.vim │ ├── usw2kagtlog.vim │ ├── valgrind.vim │ ├── vb.vim │ ├── vdf.vim │ ├── vera.vim │ ├── verilog.vim │ ├── verilogams.vim │ ├── vgrindefs.vim │ ├── vhdl.vim │ ├── vim.vim │ ├── viminfo.vim │ ├── vimnormal.vim │ ├── virata.vim │ ├── vmasm.vim │ ├── voscm.vim │ ├── vrml.vim │ ├── vroom.vim │ ├── vsejcl.vim │ ├── vue.vim │ ├── wat.vim │ ├── wdiff.vim │ ├── wdl.vim │ ├── web.vim │ ├── webmacro.vim │ ├── wget.vim │ ├── wget2.vim │ ├── whitespace.vim │ ├── winbatch.vim │ ├── wml.vim │ ├── wsh.vim │ ├── wsml.vim │ ├── wvdial.vim │ ├── xbl.vim │ ├── xcompose.vim │ ├── xdefaults.vim │ ├── xf86conf.vim │ ├── xhtml.vim │ ├── xinetd.vim │ ├── xkb.vim │ ├── xmath.vim │ ├── xml.vim │ ├── xmodmap.vim │ ├── xpm.vim │ ├── xpm2.vim │ ├── xquery.vim │ ├── xs.vim │ ├── xsd.vim │ ├── xslt.vim │ ├── xxd.vim │ ├── yacc.vim │ ├── yaml.vim │ ├── z8a.vim │ ├── zathurarc.vim │ ├── zig.vim │ ├── zimbu.vim │ ├── zir.vim │ ├── zserio.vim │ └── zsh.vim ├── termcap ├── tools.info ├── tools │ ├── README.txt │ ├── blink.c │ ├── ccfilter.1 │ ├── ccfilter.c │ ├── ccfilter_README.txt │ ├── demoserver.py │ ├── efm_filter.pl │ ├── efm_filter.txt │ ├── efm_perl.pl │ ├── emoji_list.vim │ ├── mve.awk │ ├── mve.txt │ ├── pltags.pl │ ├── ref │ ├── shtags.1 │ ├── shtags.pl │ ├── unicode.vim │ ├── vim132 │ ├── vim_vs_net.cmd │ ├── vimm │ ├── vimspell.sh │ ├── vimspell.txt │ └── xcmdsrv_client.c ├── tutor.info ├── tutor │ ├── README.el.txt │ ├── README.ru.txt │ ├── README.txt │ ├── en │ │ ├── vim-01-beginner.tutor │ │ ├── vim-01-beginner.tutor.json │ │ ├── vim-02-beginner.tutor │ │ └── vim-02-beginner.tutor.json │ ├── it │ │ ├── vim-01-beginner.tutor │ │ └── vim-01-beginner.tutor.json │ ├── ru │ │ ├── vim-01-beginner.tutor │ │ ├── vim-01-beginner.tutor.json │ │ ├── vim-02-beginner.tutor │ │ └── vim-02-beginner.tutor.json │ ├── sr │ │ ├── vim-01-beginner.tutor │ │ ├── vim-01-beginner.tutor.json │ │ ├── vim-02-beginner.tutor │ │ └── vim-02-beginner.tutor.json │ ├── tutor.tutor │ ├── tutor.tutor.json │ ├── tutor.vim │ ├── tutor1 │ ├── tutor1.bar │ ├── tutor1.bg │ ├── tutor1.ca │ ├── tutor1.cs │ ├── tutor1.da │ ├── tutor1.de │ ├── tutor1.el │ ├── tutor1.eo │ ├── tutor1.es │ ├── tutor1.fr │ ├── tutor1.gl │ ├── tutor1.hr │ ├── tutor1.hu │ ├── tutor1.it │ ├── tutor1.ja │ ├── tutor1.ko │ ├── tutor1.lt │ ├── tutor1.lv │ ├── tutor1.nb │ ├── tutor1.nl │ ├── tutor1.no │ ├── tutor1.pl │ ├── tutor1.pt │ ├── tutor1.ru │ ├── tutor1.sk │ ├── tutor1.sr │ ├── tutor1.sv │ ├── tutor1.tr │ ├── tutor1.uk │ ├── tutor1.vi │ ├── tutor1.zh_cn │ ├── tutor1.zh_tw │ ├── tutor2 │ ├── tutor2.es │ ├── tutor2.fr │ ├── tutor2.gl │ ├── tutor2.it │ ├── tutor2.ru │ └── tutor2.sr ├── vim.desktop ├── vim16x16.gif ├── vim16x16.png ├── vim16x16.xpm ├── vim32x32.gif ├── vim32x32.png ├── vim32x32.xpm ├── vim48x48.gif ├── vim48x48.png ├── vim48x48.xpm ├── vimlogo.cdr ├── vimlogo.eps ├── vimlogo.gif ├── vimlogo.pdf ├── vimlogo.svg ├── vimlogo.xpm └── vimrc_example.vim ├── src ├── GvimExt │ ├── GvimExt.reg │ ├── Make_ming.mak │ ├── Make_mvc.mak │ ├── Makefile │ ├── README.txt │ ├── gvimext.cpp │ ├── gvimext.def │ ├── gvimext.h │ ├── gvimext.inf │ ├── gvimext.rc │ ├── gvimext_ming.def │ ├── gvimext_ming.rc │ ├── resource.h │ └── uninst.bat ├── INSTALL ├── INSTALLami.txt ├── INSTALLmac.txt ├── INSTALLpc.txt ├── INSTALLvms.txt ├── INSTALLx.txt ├── MacVim │ ├── Actions.plist │ ├── Advanced.png │ ├── Base.lproj │ │ ├── FindAndReplace.xib │ │ ├── MainMenu.xib │ │ ├── Preferences.xib │ │ └── WhatsNew.xib │ ├── CGSInternal │ │ ├── CGSConnection.h │ │ ├── CGSRegion.h │ │ ├── CGSWindow.h │ │ ├── Compatability.h │ │ └── README.txt │ ├── Credits.rtf │ ├── DBPrefsWindowController.h │ ├── DBPrefsWindowController.m │ ├── General.png │ ├── Info.plist │ ├── KeyBinding.plist │ ├── MMAppController.h │ ├── MMAppController.m │ ├── MMApplication.h │ ├── MMApplication.m │ ├── MMBackend.h │ ├── MMBackend.m │ ├── MMCoreTextView+ToolTip.m │ ├── MMCoreTextView.h │ ├── MMCoreTextView.m │ ├── MMFindReplaceController.h │ ├── MMFindReplaceController.m │ ├── MMFullScreenWindow.h │ ├── MMFullScreenWindow.m │ ├── MMPreferenceController.h │ ├── MMPreferenceController.m │ ├── MMSparkle2Delegate.h │ ├── MMSparkle2Delegate.m │ ├── MMTabline │ │ ├── MMHoverButton.h │ │ ├── MMHoverButton.m │ │ ├── MMTab.h │ │ ├── MMTab.m │ │ ├── MMTabline.h │ │ └── MMTabline.m │ ├── MMTextStorage.h │ ├── MMTextStorage.m │ ├── MMTextView.h │ ├── MMTextView.m │ ├── MMTextViewHelper.h │ ├── MMTextViewHelper.m │ ├── MMTypesetter.h │ ├── MMTypesetter.m │ ├── MMVimController.h │ ├── MMVimController.m │ ├── MMVimView.h │ ├── MMVimView.m │ ├── MMWhatsNewController.h │ ├── MMWhatsNewController.m │ ├── MMWindow.h │ ├── MMWindow.m │ ├── MMWindowController.h │ ├── MMWindowController.m │ ├── MacVim.entitlements │ ├── MacVim.h │ ├── MacVim.m │ ├── MacVim.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MacVim.xcscheme │ ├── MacVim.xctestplan │ ├── MacVimTests │ │ └── MacVimTests.m │ ├── MacVim_Prefix.pch │ ├── MacVim_xcode8.xcodeproj │ │ └── project.pbxproj │ ├── Miscellaneous.h │ ├── Miscellaneous.m │ ├── README │ ├── Sparkle.framework │ ├── Sparkle_1.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── Resources │ │ ├── Sparkle │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SPUDownloadData.h │ │ │ │ ├── SPUDownloader.h │ │ │ │ ├── SPUDownloaderDelegate.h │ │ │ │ ├── SPUDownloaderProtocol.h │ │ │ │ ├── SPUDownloaderSession.h │ │ │ │ ├── SPUURLRequest.h │ │ │ │ ├── SUAppcast.h │ │ │ │ ├── SUAppcastItem.h │ │ │ │ ├── SUCodeSigningVerifier.h │ │ │ │ ├── SUErrors.h │ │ │ │ ├── SUExport.h │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ ├── SUUpdater.h │ │ │ │ ├── SUUpdaterDelegate.h │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ └── Sparkle.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ └── SUUnarchiver.h │ │ │ ├── Resources │ │ │ │ ├── Autoupdate.app │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ ├── Autoupdate │ │ │ │ │ │ └── fileop │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ca.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ │ ├── es.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── he.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hu.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ │ └── Sparkle.strings │ │ │ ├── Sparkle │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ ├── Sparkle_2.framework │ │ ├── Autoupdate │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── Resources │ │ ├── Sparkle │ │ ├── Updater.app │ │ ├── Versions │ │ │ ├── B │ │ │ │ ├── Autoupdate │ │ │ │ ├── Headers │ │ │ │ │ ├── SPUDownloadData.h │ │ │ │ │ ├── SPUStandardUpdaterController.h │ │ │ │ │ ├── SPUStandardUserDriver.h │ │ │ │ │ ├── SPUStandardUserDriverDelegate.h │ │ │ │ │ ├── SPUUpdateCheck.h │ │ │ │ │ ├── SPUUpdatePermissionRequest.h │ │ │ │ │ ├── SPUUpdater.h │ │ │ │ │ ├── SPUUpdaterDelegate.h │ │ │ │ │ ├── SPUUpdaterSettings.h │ │ │ │ │ ├── SPUUserDriver.h │ │ │ │ │ ├── SPUUserUpdateState.h │ │ │ │ │ ├── SUAppcast.h │ │ │ │ │ ├── SUAppcastItem.h │ │ │ │ │ ├── SUErrors.h │ │ │ │ │ ├── SUExport.h │ │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ │ ├── SUUpdatePermissionResponse.h │ │ │ │ │ ├── SUUpdater.h │ │ │ │ │ ├── SUUpdaterDelegate.h │ │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ │ └── Sparkle.h │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.private.modulemap │ │ │ │ ├── PrivateHeaders │ │ │ │ │ ├── SPUAppcastItemStateResolver.h │ │ │ │ │ ├── SPUGentleUserDriverReminders.h │ │ │ │ │ ├── SPUInstallationType.h │ │ │ │ │ ├── SPUStandardUserDriver+Private.h │ │ │ │ │ ├── SPUUserAgent+Private.h │ │ │ │ │ ├── SUAppcastItem+Private.h │ │ │ │ │ └── SUInstallerLauncher+Private.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ ├── keyedobjects-101300.nib │ │ │ │ │ │ └── keyedobjects-110000.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fa.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nn.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt-BR.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt-PT.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Sparkle │ │ │ │ ├── Updater.app │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Updater │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── SUStatus.nib │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ ├── XPCServices │ │ │ │ │ ├── Downloader.xpc │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── Downloader │ │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Installer.xpc │ │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── Installer │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Current │ │ └── XPCServices │ ├── SystemColors.plist │ ├── Toolbar │ │ ├── Attention.png │ │ ├── Copy.png │ │ ├── Cut.png │ │ ├── FindHelp.png │ │ ├── FindNext.png │ │ ├── FindPrev.png │ │ ├── Help.png │ │ ├── LoadSesn.png │ │ ├── Make.png │ │ ├── Open.png │ │ ├── Paste.png │ │ ├── Print.png │ │ ├── Redo.png │ │ ├── Replace.png │ │ ├── RunCtags.png │ │ ├── RunScript.png │ │ ├── Save.png │ │ ├── SaveAll.png │ │ ├── SaveSesn.png │ │ ├── TagJump.png │ │ └── Undo.png │ ├── ca.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── create-dmg │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .this-is-the-create-dmg-repo │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── README.md │ │ ├── builder │ │ │ └── create-dmg.builder │ │ ├── create-dmg │ │ ├── doc-project │ │ │ ├── Developer Notes.md │ │ │ └── Release Checklist.md │ │ ├── examples │ │ │ └── 01-main-example │ │ │ │ ├── installer_background.png │ │ │ │ ├── sample │ │ │ │ └── source_folder │ │ │ │ └── Application.app │ │ ├── support │ │ │ ├── eula-resources-template.xml │ │ │ └── template.applescript │ │ └── tests │ │ │ └── 007-space-in-dir-name │ │ │ ├── my files │ │ │ └── hello.txt │ │ │ └── run-test │ ├── cs.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── da.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── de.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── dmg │ │ ├── README.md │ │ ├── background@1x.png │ │ ├── background@2x.png │ │ └── volume_icons │ │ │ ├── icon_128x128@1x.png │ │ │ ├── icon_16x16@1x.png │ │ │ ├── icon_256x256@1x.png │ │ │ ├── icon_32x32@1x.png │ │ │ ├── icon_512x512@1x.png │ │ │ ├── icon_512x512@2x.png │ │ │ └── icon_64x64@1x.png │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── es.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── fi.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── fr.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── gui_macvim.m │ ├── gvimrc │ ├── hu.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── ibeam.png │ ├── icons │ │ ├── MacVim-applescript.icns │ │ ├── MacVim-as.icns │ │ ├── MacVim-asp.icns │ │ ├── MacVim-bash.icns │ │ ├── MacVim-bib.icns │ │ ├── MacVim-bsh.icns │ │ ├── MacVim-c.icns │ │ ├── MacVim-cfg.icns │ │ ├── MacVim-cgi.icns │ │ ├── MacVim-cpp.icns │ │ ├── MacVim-cs.icns │ │ ├── MacVim-csfg.icns │ │ ├── MacVim-css.icns │ │ ├── MacVim-csv.icns │ │ ├── MacVim-dtd.icns │ │ ├── MacVim-dylan.icns │ │ ├── MacVim-erl.icns │ │ ├── MacVim-f.icns │ │ ├── MacVim-fscript.icns │ │ ├── MacVim-generic.icns │ │ ├── MacVim-gtd.icns │ │ ├── MacVim-h.icns │ │ ├── MacVim-hs.icns │ │ ├── MacVim-html.icns │ │ ├── MacVim-ics.icns │ │ ├── MacVim-inc.icns │ │ ├── MacVim-ini.icns │ │ ├── MacVim-io.icns │ │ ├── MacVim-java.icns │ │ ├── MacVim-js.icns │ │ ├── MacVim-jsp.icns │ │ ├── MacVim-lisp.icns │ │ ├── MacVim-log.icns │ │ ├── MacVim-m.icns │ │ ├── MacVim-markdown.icns │ │ ├── MacVim-mm.icns │ │ ├── MacVim-patch.icns │ │ ├── MacVim-perl.icns │ │ ├── MacVim-php.icns │ │ ├── MacVim-plist.icns │ │ ├── MacVim-properties.icns │ │ ├── MacVim-ps.icns │ │ ├── MacVim-py.icns │ │ ├── MacVim-rb.icns │ │ ├── MacVim-rst.icns │ │ ├── MacVim-sch.icns │ │ ├── MacVim-sql.icns │ │ ├── MacVim-tcl.icns │ │ ├── MacVim-tex.icns │ │ ├── MacVim-tsv.icns │ │ ├── MacVim-txt.icns │ │ ├── MacVim-vb.icns │ │ ├── MacVim-vba.icns │ │ ├── MacVim-vcf.icns │ │ ├── MacVim-vim.icns │ │ ├── MacVim-wiki.icns │ │ ├── MacVim-xml.icns │ │ ├── MacVim-xsl.icns │ │ ├── MacVim-yaml.icns │ │ ├── MacVim.icns │ │ └── Makefile │ ├── it.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── ja.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── ko.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── macvim-askpass │ ├── main.m │ ├── mvim │ ├── nb.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── nl.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── pl.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── pt-BR.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── pt-PT.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── qlstephen │ │ ├── GeneratePreviewForURL.m │ │ ├── GenerateThumbnailForURL.m │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── QLSFileAttributes.h │ │ ├── QLSFileAttributes.m │ │ ├── QuickLookStephen.xcodeproj │ │ │ └── project.pbxproj │ │ ├── README.md │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.c │ ├── ru.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── scripts │ │ ├── cleanup-after-build │ │ ├── create_icns │ │ ├── extract-specific-localised-strings.swift │ │ ├── gen-xcodeproj-compat │ │ ├── notarize-dmg │ │ └── sign-developer-id │ ├── sv.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── tr.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ ├── vimrc │ ├── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings │ └── zh-Hant.lproj │ │ ├── Localizable.strings │ │ └── MainMenu.strings ├── Make_all.mak ├── Make_ami.mak ├── Make_cyg.mak ├── Make_cyg_ming.mak ├── Make_ming.mak ├── Make_mvc.mak ├── Make_vms.mms ├── Makefile ├── README.md ├── alloc.c ├── alloc.h ├── arabic.c ├── arglist.c ├── ascii.h ├── auto │ ├── configure │ ├── nmake │ │ └── tools.mak │ └── wayland │ │ ├── Makefile │ │ ├── README.txt │ │ └── protocols │ │ ├── ext-data-control-v1.xml │ │ ├── primary-selection-unstable-v1.xml │ │ ├── wlr-data-control-unstable-v1.xml │ │ └── xdg-shell.xml ├── autocmd.c ├── beval.c ├── beval.h ├── bigvim.bat ├── bigvim64.bat ├── blob.c ├── blowfish.c ├── buffer.c ├── bufwrite.c ├── change.c ├── channel.c ├── charset.c ├── cindent.c ├── clientserver.c ├── clipboard.c ├── cmdexpand.c ├── cmdhist.c ├── config.h.in ├── config.mk.dist ├── config.mk.in ├── configure ├── configure.ac ├── create_cmdidxs.vim ├── create_nvcmdidxs.c ├── create_nvcmdidxs.vim ├── crypt.c ├── crypt_zip.c ├── debugger.c ├── dict.c ├── diff.c ├── digraph.c ├── dlldata.c ├── dosinst.c ├── dosinst.h ├── drawline.c ├── drawscreen.c ├── edit.c ├── errors.h ├── eval.c ├── evalbuffer.c ├── evalfunc.c ├── evalvars.c ├── evalwindow.c ├── ex_cmdidxs.h ├── ex_cmds.c ├── ex_cmds.h ├── ex_cmds2.c ├── ex_docmd.c ├── ex_eval.c ├── ex_getln.c ├── feature.h ├── fileio.c ├── filepath.c ├── findfile.c ├── float.c ├── fold.c ├── fuzzy.c ├── gc.c ├── getchar.c ├── globals.h ├── gui.c ├── gui.h ├── gui_beval.c ├── gui_dwrite.cpp ├── gui_dwrite.h ├── gui_gtk.c ├── gui_gtk_f.c ├── gui_gtk_f.h ├── gui_gtk_res.xml ├── gui_gtk_vms.h ├── gui_gtk_x11.c ├── gui_haiku.cc ├── gui_haiku.h ├── gui_motif.c ├── gui_photon.c ├── gui_w32.c ├── gui_w32_rc.h ├── gui_x11.c ├── gui_x11_pm.h ├── gui_xim.c ├── gui_xmdlg.c ├── gui_xmebw.c ├── gui_xmebw.h ├── gui_xmebwp.h ├── gvimtutor ├── hardcopy.c ├── hashtab.c ├── help.c ├── highlight.c ├── if_cscope.c ├── if_lua.c ├── if_mzsch.c ├── if_mzsch.h ├── if_ole.cpp ├── if_ole.h ├── if_ole.idl ├── if_perl.xs ├── if_py_both.h ├── if_python.c ├── if_python3.c ├── if_ruby.c ├── if_tcl.c ├── if_xcmdsrv.c ├── iid_ole.c ├── indent.c ├── insexpand.c ├── install-sh ├── installman.sh ├── installml.sh ├── iscygpty.c ├── iscygpty.h ├── job.c ├── json.c ├── json_test.c ├── keymap.h ├── kword_test.c ├── libvterm │ ├── .bzrignore │ ├── .gitignore │ ├── CODE-MAP │ ├── CONTRIBUTING │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── doc │ │ ├── URLs │ │ └── seqs.txt │ ├── find-wide-chars.pl │ ├── include │ │ ├── vterm.h │ │ └── vterm_keycodes.h │ ├── src │ │ ├── encoding.c │ │ ├── encoding │ │ │ ├── DECdrawing.inc │ │ │ ├── DECdrawing.tbl │ │ │ ├── uk.inc │ │ │ └── uk.tbl │ │ ├── fullwidth.inc │ │ ├── keyboard.c │ │ ├── mouse.c │ │ ├── parser.c │ │ ├── pen.c │ │ ├── rect.h │ │ ├── screen.c │ │ ├── state.c │ │ ├── unicode.c │ │ ├── utf8.h │ │ ├── vterm.c │ │ └── vterm_internal.h │ ├── t │ │ ├── 02parser.test │ │ ├── 03encoding_utf8.test │ │ ├── 10state_putglyph.test │ │ ├── 11state_movecursor.test │ │ ├── 12state_scroll.test │ │ ├── 13state_edit.test │ │ ├── 14state_encoding.test │ │ ├── 15state_mode.test │ │ ├── 16state_resize.test │ │ ├── 17state_mouse.test │ │ ├── 18state_termprops.test │ │ ├── 20state_wrapping.test │ │ ├── 21state_tabstops.test │ │ ├── 22state_save.test │ │ ├── 25state_input.test │ │ ├── 26state_query.test │ │ ├── 27state_reset.test │ │ ├── 28state_dbl_wh.test │ │ ├── 29state_fallback.test │ │ ├── 30state_pen.test │ │ ├── 31state_rep.test │ │ ├── 32state_flow.test │ │ ├── 40state_selection.test │ │ ├── 60screen_ascii.test │ │ ├── 61screen_unicode.test │ │ ├── 62screen_damage.test │ │ ├── 63screen_resize.test │ │ ├── 64screen_pen.test │ │ ├── 65screen_protect.test │ │ ├── 66screen_extent.test │ │ ├── 67screen_dbl_wh.test │ │ ├── 68screen_termprops.test │ │ ├── 69screen_reflow.test │ │ ├── 90vttest_01-movement-1.test │ │ ├── 90vttest_01-movement-2.test │ │ ├── 90vttest_01-movement-3.test │ │ ├── 90vttest_01-movement-4.test │ │ ├── 90vttest_02-screen-1.test │ │ ├── 90vttest_02-screen-2.test │ │ ├── 90vttest_02-screen-3.test │ │ ├── 90vttest_02-screen-4.test │ │ ├── 92lp1640917.test │ │ ├── harness.c │ │ └── run-test.pl │ ├── tbl2inc_c.pl │ └── vterm.pc.in ├── linematch.c ├── link.390 ├── link.sh ├── list.c ├── locale.c ├── logfile.c ├── macros.h ├── main.c ├── map.c ├── mark.c ├── match.c ├── mbyte.c ├── memfile.c ├── memfile_test.c ├── memline.c ├── menu.c ├── message.c ├── message_test.c ├── misc1.c ├── misc2.c ├── mouse.c ├── move.c ├── msvc-latest.bat ├── msvc2015.bat ├── msvc2017.bat ├── msvc2019.bat ├── msvc2022.bat ├── msys32.bat ├── msys64.bat ├── mysign ├── nbdebug.c ├── nbdebug.h ├── netbeans.c ├── normal.c ├── nv_cmdidxs.h ├── nv_cmds.h ├── ops.c ├── option.c ├── option.h ├── optiondefs.h ├── optionstr.c ├── os_amiga.c ├── os_amiga.h ├── os_dos.h ├── os_haiku.h ├── os_haiku.rdef.in ├── os_mac.h ├── os_mac_conv.c ├── os_macosx.m ├── os_mswin.c ├── os_qnx.c ├── os_qnx.h ├── os_unix.c ├── os_unix.h ├── os_unixx.h ├── os_vms.c ├── os_vms_conf.h ├── os_vms_fix.com ├── os_vms_mms.c ├── os_w32dll.c ├── os_w32exe.c ├── os_win32.c ├── os_win32.h ├── osdef.sh ├── osdef1.h.in ├── osdef2.h.in ├── pathdef.sh ├── po │ ├── Make_all.mak │ ├── Make_cyg.mak │ ├── Make_ming.mak │ ├── Make_mvc.mak │ ├── Makefile │ ├── README.txt │ ├── README_mingw.txt │ ├── README_mvc.txt │ ├── af.po │ ├── big5corr.c │ ├── ca.po │ ├── check.vim │ ├── cleanup.vim │ ├── cs.cp1250.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── en_GB.po │ ├── eo.po │ ├── es.po │ ├── fi.po │ ├── fixfilenames.vim │ ├── fr.po │ ├── ga.po │ ├── gvim.desktop.in │ ├── hu.po │ ├── hy.po │ ├── it.po │ ├── ja.euc-jp.po │ ├── ja.po │ ├── ja.sjis.po │ ├── ko.UTF-8.po │ ├── ko.po │ ├── lv.po │ ├── nb.po │ ├── nl.po │ ├── no.po │ ├── pl.UTF-8.po │ ├── pl.cp1250.po │ ├── pl.po │ ├── pt_BR.po │ ├── ru.cp1251.po │ ├── ru.po │ ├── sjiscorr.c │ ├── sk.cp1250.po │ ├── sk.po │ ├── sr.po │ ├── sv.po │ ├── tojavascript.vim │ ├── tr.po │ ├── uk.cp1251.po │ ├── uk.po │ ├── vi.po │ ├── vim.desktop.in │ ├── vim.pot │ ├── zh_CN.UTF-8.po │ ├── zh_CN.cp936.po │ ├── zh_CN.po │ ├── zh_TW.UTF-8.po │ └── zh_TW.po ├── popupmenu.c ├── popupwin.c ├── profiler.c ├── proto.h ├── proto │ ├── alloc.pro │ ├── arabic.pro │ ├── arglist.pro │ ├── autocmd.pro │ ├── beval.pro │ ├── blob.pro │ ├── blowfish.pro │ ├── buffer.pro │ ├── bufwrite.pro │ ├── change.pro │ ├── channel.pro │ ├── charset.pro │ ├── cindent.pro │ ├── clientserver.pro │ ├── clipboard.pro │ ├── cmdexpand.pro │ ├── cmdhist.pro │ ├── crypt.pro │ ├── crypt_zip.pro │ ├── debugger.pro │ ├── dict.pro │ ├── diff.pro │ ├── digraph.pro │ ├── drawline.pro │ ├── drawscreen.pro │ ├── edit.pro │ ├── eval.pro │ ├── evalbuffer.pro │ ├── evalfunc.pro │ ├── evalvars.pro │ ├── evalwindow.pro │ ├── ex_cmds.pro │ ├── ex_cmds2.pro │ ├── ex_docmd.pro │ ├── ex_eval.pro │ ├── ex_getln.pro │ ├── fileio.pro │ ├── filepath.pro │ ├── findfile.pro │ ├── float.pro │ ├── fold.pro │ ├── fuzzy.pro │ ├── gc.pro │ ├── gen_prototypes.py │ ├── getchar.pro │ ├── gui.pro │ ├── gui_beval.pro │ ├── gui_gtk.pro │ ├── gui_gtk_gresources.pro │ ├── gui_gtk_x11.pro │ ├── gui_haiku.pro │ ├── gui_macvim.pro │ ├── gui_motif.pro │ ├── gui_photon.pro │ ├── gui_w32.pro │ ├── gui_x11.pro │ ├── gui_xim.pro │ ├── gui_xmdlg.pro │ ├── hardcopy.pro │ ├── hashtab.pro │ ├── help.pro │ ├── highlight.pro │ ├── if_cscope.pro │ ├── if_lua.pro │ ├── if_mzsch.pro │ ├── if_ole.pro │ ├── if_perl.pro │ ├── if_python.pro │ ├── if_python3.pro │ ├── if_ruby.pro │ ├── if_tcl.pro │ ├── if_xcmdsrv.pro │ ├── indent.pro │ ├── insexpand.pro │ ├── job.pro │ ├── json.pro │ ├── linematch.pro │ ├── list.pro │ ├── locale.pro │ ├── logfile.pro │ ├── main.pro │ ├── map.pro │ ├── mark.pro │ ├── match.pro │ ├── mbyte.pro │ ├── memfile.pro │ ├── memline.pro │ ├── menu.pro │ ├── message.pro │ ├── misc1.pro │ ├── misc2.pro │ ├── mouse.pro │ ├── move.pro │ ├── netbeans.pro │ ├── normal.pro │ ├── ops.pro │ ├── option.pro │ ├── optionstr.pro │ ├── os_amiga.pro │ ├── os_mac_conv.pro │ ├── os_macosx.pro │ ├── os_mswin.pro │ ├── os_qnx.pro │ ├── os_unix.pro │ ├── os_vms.pro │ ├── os_win32.pro │ ├── popupmenu.pro │ ├── popupwin.pro │ ├── profiler.pro │ ├── pty.pro │ ├── quickfix.pro │ ├── regexp.pro │ ├── register.pro │ ├── screen.pro │ ├── scriptfile.pro │ ├── search.pro │ ├── session.pro │ ├── sha256.pro │ ├── sign.pro │ ├── sound.pro │ ├── spell.pro │ ├── spellfile.pro │ ├── spellsuggest.pro │ ├── strings.pro │ ├── syntax.pro │ ├── tabpanel.pro │ ├── tag.pro │ ├── term.pro │ ├── terminal.pro │ ├── termlib.pro │ ├── testing.pro │ ├── textformat.pro │ ├── textobject.pro │ ├── textprop.pro │ ├── time.pro │ ├── tuple.pro │ ├── typval.pro │ ├── ui.pro │ ├── undo.pro │ ├── usercmd.pro │ ├── userfunc.pro │ ├── version.pro │ ├── vim9class.pro │ ├── vim9cmds.pro │ ├── vim9compile.pro │ ├── vim9execute.pro │ ├── vim9expr.pro │ ├── vim9generics.pro │ ├── vim9instr.pro │ ├── vim9script.pro │ ├── vim9type.pro │ ├── viminfo.pro │ ├── wayland.pro │ ├── winclip.pro │ └── window.pro ├── protodef.h ├── pty.c ├── quickfix.c ├── regexp.c ├── regexp.h ├── regexp_bt.c ├── regexp_nfa.c ├── register.c ├── screen.c ├── scriptfile.c ├── search.c ├── session.c ├── sha256.c ├── sign.c ├── sound.c ├── spell.c ├── spell.h ├── spellfile.c ├── spellsuggest.c ├── strings.c ├── structs.h ├── syntax.c ├── tabpanel.c ├── tag.c ├── tearoff.bmp ├── tee │ ├── Make_ming.mak │ ├── Make_mvc.mak │ ├── Makefile │ └── tee.c ├── term.c ├── termdefs.h ├── terminal.c ├── termlib.c ├── testdir │ ├── Make_all.mak │ ├── Make_amiga.mak │ ├── Make_dos.mak │ ├── Make_ming.mak │ ├── Make_mvc.mak │ ├── Make_vms.mms │ ├── Makefile │ ├── README.txt │ ├── commondumps.vim │ ├── crash │ │ ├── bt_quickfix1_poc │ │ ├── bt_quickfix_poc │ │ ├── crash_scrollbar │ │ ├── dialog_changed_uaf │ │ ├── double_free │ │ ├── editing_arg_idx_POC_1 │ │ ├── heap_overflow3 │ │ ├── heap_overflow_glob2regpat │ │ ├── nullpointer │ │ ├── nullptr_regexp_nfa │ │ ├── poc1 │ │ ├── poc_did_set_langmap │ │ ├── poc_ex_substitute │ │ ├── poc_huaf1 │ │ ├── poc_huaf2 │ │ ├── poc_huaf3 │ │ ├── poc_suggest_trie_walk │ │ ├── poc_tagfunc.vim │ │ ├── poc_uaf_check_argument_types │ │ ├── poc_uaf_exec_instructions │ │ ├── poc_win_enter_ext │ │ ├── reverse_text_overflow │ │ ├── vim_msg_trunc_poc │ │ ├── vim_regsub_both │ │ └── vim_regsub_both_poc │ ├── dotest.in │ ├── dumps │ │ ├── Test_Xcursorline_1.dump │ │ ├── Test_Xcursorline_10.dump │ │ ├── Test_Xcursorline_11.dump │ │ ├── Test_Xcursorline_12.dump │ │ ├── Test_Xcursorline_13.dump │ │ ├── Test_Xcursorline_14.dump │ │ ├── Test_Xcursorline_15.dump │ │ ├── Test_Xcursorline_16.dump │ │ ├── Test_Xcursorline_17.dump │ │ ├── Test_Xcursorline_18.dump │ │ ├── Test_Xcursorline_19.dump │ │ ├── Test_Xcursorline_2.dump │ │ ├── Test_Xcursorline_20.dump │ │ ├── Test_Xcursorline_21.dump │ │ ├── Test_Xcursorline_22.dump │ │ ├── Test_Xcursorline_23.dump │ │ ├── Test_Xcursorline_24.dump │ │ ├── Test_Xcursorline_3.dump │ │ ├── Test_Xcursorline_4.dump │ │ ├── Test_Xcursorline_5.dump │ │ ├── Test_Xcursorline_6.dump │ │ ├── Test_Xcursorline_7.dump │ │ ├── Test_Xcursorline_8.dump │ │ ├── Test_Xcursorline_9.dump │ │ ├── Test_ambiwidth_hl_dump_1.dump │ │ ├── Test_ambiwidth_hl_dump_2.dump │ │ ├── Test_appendbufline_1.dump │ │ ├── Test_autocmd_nested_switch.dump │ │ ├── Test_autocompletedelay_1.dump │ │ ├── Test_autocompletedelay_10.dump │ │ ├── Test_autocompletedelay_11.dump │ │ ├── Test_autocompletedelay_2.dump │ │ ├── Test_autocompletedelay_3.dump │ │ ├── Test_autocompletedelay_4.dump │ │ ├── Test_autocompletedelay_5.dump │ │ ├── Test_autocompletedelay_6.dump │ │ ├── Test_autocompletedelay_7.dump │ │ ├── Test_autocompletedelay_8.dump │ │ ├── Test_autocompletedelay_9.dump │ │ ├── Test_autocompletedelay_longest_1.dump │ │ ├── Test_autocompletedelay_longest_2.dump │ │ ├── Test_autocompletedelay_longest_3.dump │ │ ├── Test_autocompletedelay_longest_4.dump │ │ ├── Test_autocompletedelay_preinsert_1.dump │ │ ├── Test_autocompletedelay_preinsert_2.dump │ │ ├── Test_balloon_eval_term_01.dump │ │ ├── Test_balloon_eval_term_01a.dump │ │ ├── Test_balloon_eval_term_02.dump │ │ ├── Test_balloon_eval_term_03.dump │ │ ├── Test_breakindent_with_double_width_wrap_1.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_01.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_02.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_03.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_04.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_05.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_06.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_07.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_08.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_09.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_10.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_11.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_12.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_13.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_14.dump │ │ ├── Test_change_wrapped_line_cpo_dollar_15.dump │ │ ├── Test_changing_cmdheight_1.dump │ │ ├── Test_changing_cmdheight_2.dump │ │ ├── Test_changing_cmdheight_3.dump │ │ ├── Test_changing_cmdheight_4.dump │ │ ├── Test_changing_cmdheight_5.dump │ │ ├── Test_changing_cmdheight_6.dump │ │ ├── Test_changing_cmdheight_7.dump │ │ ├── Test_changing_cmdheight_8.dump │ │ ├── Test_cmdheight_tabline_1.dump │ │ ├── Test_cmdlineclear_tabenter.dump │ │ ├── Test_cmdwin_interrupted.dump │ │ ├── Test_cmdwin_no_terminal.dump │ │ ├── Test_cmdwin_restore_1.dump │ │ ├── Test_cmdwin_restore_2.dump │ │ ├── Test_cmdwin_restore_3.dump │ │ ├── Test_cmdwin_showcmd_1.dump │ │ ├── Test_cmdwin_showcmd_2.dump │ │ ├── Test_cmdwin_wrong_command_1.dump │ │ ├── Test_cmdwin_wrong_command_2.dump │ │ ├── Test_colorcolumn_1.dump │ │ ├── Test_colorcolumn_2.dump │ │ ├── Test_colorcolumn_3.dump │ │ ├── Test_conceal_cuc_01.dump │ │ ├── Test_conceal_cuc_02.dump │ │ ├── Test_conceal_cul_01.dump │ │ ├── Test_conceal_cul_02.dump │ │ ├── Test_conceal_cul_03.dump │ │ ├── Test_conceal_cul_wcr_01.dump │ │ ├── Test_conceal_cul_wcr_02.dump │ │ ├── Test_conceal_cul_wcr_03.dump │ │ ├── Test_conceal_cul_wcr_rl_01.dump │ │ ├── Test_conceal_cul_wcr_rl_02.dump │ │ ├── Test_conceal_cul_wcr_rl_03.dump │ │ ├── Test_conceal_double_width_1.dump │ │ ├── Test_conceal_double_width_2.dump │ │ ├── Test_conceal_double_width_3.dump │ │ ├── Test_conceal_double_width_4.dump │ │ ├── Test_conceal_double_width_wrap_1.dump │ │ ├── Test_conceal_double_width_wrap_2.dump │ │ ├── Test_conceal_double_width_wrap_3.dump │ │ ├── Test_conceal_double_width_wrap_4.dump │ │ ├── Test_conceal_linebreak_1.dump │ │ ├── Test_conceal_resize_01.dump │ │ ├── Test_conceal_resize_02.dump │ │ ├── Test_conceal_two_windows_01.dump │ │ ├── Test_conceal_two_windows_02.dump │ │ ├── Test_conceal_two_windows_03.dump │ │ ├── Test_conceal_two_windows_04.dump │ │ ├── Test_conceal_two_windows_05.dump │ │ ├── Test_conceal_two_windows_06c.dump │ │ ├── Test_conceal_two_windows_06i.dump │ │ ├── Test_conceal_two_windows_06n.dump │ │ ├── Test_conceal_two_windows_06v.dump │ │ ├── Test_conceal_two_windows_07c.dump │ │ ├── Test_conceal_two_windows_07i.dump │ │ ├── Test_conceal_two_windows_07in.dump │ │ ├── Test_conceal_two_windows_07n.dump │ │ ├── Test_conceal_two_windows_07v.dump │ │ ├── Test_conceal_two_windows_08c.dump │ │ ├── Test_conceal_two_windows_08i.dump │ │ ├── Test_conceal_two_windows_08n.dump │ │ ├── Test_conceal_two_windows_08v.dump │ │ ├── Test_conceal_two_windows_09c.dump │ │ ├── Test_conceal_two_windows_09i.dump │ │ ├── Test_conceal_two_windows_09n.dump │ │ ├── Test_conceal_two_windows_09v.dump │ │ ├── Test_conceal_two_windows_10.dump │ │ ├── Test_conceal_two_windows_11.dump │ │ ├── Test_conceal_two_windows_12.dump │ │ ├── Test_conceal_two_windows_13.dump │ │ ├── Test_conceal_ve_after_eol_1.dump │ │ ├── Test_conceal_ve_after_eol_2.dump │ │ ├── Test_conceal_ve_after_eol_3.dump │ │ ├── Test_conceal_ve_after_eol_4.dump │ │ ├── Test_conceal_ve_after_eol_5.dump │ │ ├── Test_conceal_ve_after_eol_rl_1.dump │ │ ├── Test_conceal_ve_after_eol_rl_2.dump │ │ ├── Test_conceal_ve_after_eol_rl_3.dump │ │ ├── Test_conceal_ve_after_eol_rl_4.dump │ │ ├── Test_conceal_ve_after_eol_rl_5.dump │ │ ├── Test_crash_01.dump │ │ ├── Test_cursor_position_with_showbreak_1.dump │ │ ├── Test_cursor_position_with_showbreak_2.dump │ │ ├── Test_cursor_position_with_showbreak_3.dump │ │ ├── Test_cursorcolumn_callback_1.dump │ │ ├── Test_cursorcolumn_insert_on_tab_1.dump │ │ ├── Test_cursorcolumn_insert_on_tab_2.dump │ │ ├── Test_cursorcolumn_insert_on_tab_3.dump │ │ ├── Test_cursorline_callback_1.dump │ │ ├── Test_cursorline_redraw_1.dump │ │ ├── Test_cursorline_redraw_2.dump │ │ ├── Test_cursorline_screenline_1.dump │ │ ├── Test_cursorline_screenline_2.dump │ │ ├── Test_cursorline_screenline_3.dump │ │ ├── Test_cursorline_screenline_resize_1.dump │ │ ├── Test_cursorline_screenline_resize_2.dump │ │ ├── Test_cursorline_screenline_resize_3.dump │ │ ├── Test_cursorline_with_visualmode_01.dump │ │ ├── Test_cursorline_yank_01.dump │ │ ├── Test_delete_ml_get_errors_1.dump │ │ ├── Test_diff_01.dump │ │ ├── Test_diff_02.dump │ │ ├── Test_diff_03.dump │ │ ├── Test_diff_04.dump │ │ ├── Test_diff_05.dump │ │ ├── Test_diff_06.0.dump │ │ ├── Test_diff_06.1.dump │ │ ├── Test_diff_06.2.dump │ │ ├── Test_diff_06.dump │ │ ├── Test_diff_07.dump │ │ ├── Test_diff_08.dump │ │ ├── Test_diff_09.dump │ │ ├── Test_diff_10.dump │ │ ├── Test_diff_11.dump │ │ ├── Test_diff_12.dump │ │ ├── Test_diff_13.dump │ │ ├── Test_diff_14.dump │ │ ├── Test_diff_15.dump │ │ ├── Test_diff_16.dump │ │ ├── Test_diff_17.dump │ │ ├── Test_diff_18.dump │ │ ├── Test_diff_19.dump │ │ ├── Test_diff_20.dump │ │ ├── Test_diff_21.dump │ │ ├── Test_diff_22.dump │ │ ├── Test_diff_23.dump │ │ ├── Test_diff_24.dump │ │ ├── Test_diff_add_prop_in_autocmd_01.dump │ │ ├── Test_diff_anchors_00.dump │ │ ├── Test_diff_anchors_01.dump │ │ ├── Test_diff_anchors_02.dump │ │ ├── Test_diff_anchors_03.dump │ │ ├── Test_diff_anchors_04.dump │ │ ├── Test_diff_anchors_05.dump │ │ ├── Test_diff_anchors_06.dump │ │ ├── Test_diff_anchors_07.dump │ │ ├── Test_diff_anchors_scrollbind_topline_01.dump │ │ ├── Test_diff_anchors_scrollbind_topline_02.dump │ │ ├── Test_diff_anchors_scrollbind_topline_03.dump │ │ ├── Test_diff_anchors_scrollbind_topline_04.dump │ │ ├── Test_diff_anchors_scrollbind_topline_05.dump │ │ ├── Test_diff_anchors_scrollbind_topline_06.dump │ │ ├── Test_diff_anchors_scrollbind_topline_07.dump │ │ ├── Test_diff_anchors_scrollbind_topline_08.dump │ │ ├── Test_diff_anchors_scrollbind_topline_09.dump │ │ ├── Test_diff_anchors_scrollbind_topline_10.dump │ │ ├── Test_diff_anchors_scrollbind_topline_11.dump │ │ ├── Test_diff_anchors_scrollbind_topline_12.dump │ │ ├── Test_diff_anchors_scrollbind_topline_13.dump │ │ ├── Test_diff_anchors_scrollbind_topline_14.dump │ │ ├── Test_diff_anchors_scrollbind_topline_15.dump │ │ ├── Test_diff_anchors_scrollbind_topline_16.dump │ │ ├── Test_diff_anchors_scrollbind_topline_17.dump │ │ ├── Test_diff_bin_01.dump │ │ ├── Test_diff_bin_02.dump │ │ ├── Test_diff_bin_03.dump │ │ ├── Test_diff_bin_04.dump │ │ ├── Test_diff_breakindent_after_filler.dump │ │ ├── Test_diff_cuc_01.dump │ │ ├── Test_diff_cuc_02.dump │ │ ├── Test_diff_cuc_03.dump │ │ ├── Test_diff_cuc_04.dump │ │ ├── Test_diff_get_put_linematch_1.dump │ │ ├── Test_diff_get_put_linematch_10.dump │ │ ├── Test_diff_get_put_linematch_11.dump │ │ ├── Test_diff_get_put_linematch_12.dump │ │ ├── Test_diff_get_put_linematch_13.dump │ │ ├── Test_diff_get_put_linematch_14.dump │ │ ├── Test_diff_get_put_linematch_15.dump │ │ ├── Test_diff_get_put_linematch_16.dump │ │ ├── Test_diff_get_put_linematch_17.dump │ │ ├── Test_diff_get_put_linematch_18.dump │ │ ├── Test_diff_get_put_linematch_19.dump │ │ ├── Test_diff_get_put_linematch_2.dump │ │ ├── Test_diff_get_put_linematch_3.dump │ │ ├── Test_diff_get_put_linematch_4.dump │ │ ├── Test_diff_get_put_linematch_5.dump │ │ ├── Test_diff_get_put_linematch_6.dump │ │ ├── Test_diff_get_put_linematch_7.dump │ │ ├── Test_diff_get_put_linematch_8.dump │ │ ├── Test_diff_get_put_linematch_9.dump │ │ ├── Test_diff_inline_01.dump │ │ ├── Test_diff_inline_02.dump │ │ ├── Test_diff_inline_03.dump │ │ ├── Test_diff_inline_04.dump │ │ ├── Test_diff_inline_05.dump │ │ ├── Test_diff_inline_06.dump │ │ ├── Test_diff_inline_07.dump │ │ ├── Test_diff_inline_08.dump │ │ ├── Test_diff_inline_09.dump │ │ ├── Test_diff_inline_10.dump │ │ ├── Test_diff_inline_11.dump │ │ ├── Test_diff_inline_12.dump │ │ ├── Test_diff_inline_13.dump │ │ ├── Test_diff_inline_14.dump │ │ ├── Test_diff_inline_15.dump │ │ ├── Test_diff_inline_char_01.dump │ │ ├── Test_diff_inline_char_02.dump │ │ ├── Test_diff_inline_multibuffer_01.dump │ │ ├── Test_diff_inline_multibuffer_02.dump │ │ ├── Test_diff_inline_multibuffer_03.dump │ │ ├── Test_diff_inline_multibuffer_04.dump │ │ ├── Test_diff_inline_multibuffer_05.dump │ │ ├── Test_diff_inline_multibuffer_06.dump │ │ ├── Test_diff_inline_multibuffer_07.dump │ │ ├── Test_diff_inline_multibuffer_empty_block_01.dump │ │ ├── Test_diff_inline_multiline_01.dump │ │ ├── Test_diff_inline_multiline_02.dump │ │ ├── Test_diff_inline_multiline_03.dump │ │ ├── Test_diff_inline_multiline_04.dump │ │ ├── Test_diff_inline_multiline_05.dump │ │ ├── Test_diff_inline_multiline_06.dump │ │ ├── Test_diff_inline_multiline_07.dump │ │ ├── Test_diff_inline_multiline_08.dump │ │ ├── Test_diff_inline_multiline_09.dump │ │ ├── Test_diff_inline_multiline_10.dump │ │ ├── Test_diff_inline_word_01.dump │ │ ├── Test_diff_inline_word_02.dump │ │ ├── Test_diff_inline_word_03.dump │ │ ├── Test_diff_of_diff_01.dump │ │ ├── Test_diff_of_diff_02.dump │ │ ├── Test_diff_overlapped_2.01.dump │ │ ├── Test_diff_overlapped_2.02.dump │ │ ├── Test_diff_overlapped_2.03.dump │ │ ├── Test_diff_overlapped_3.01.dump │ │ ├── Test_diff_overlapped_3.02.dump │ │ ├── Test_diff_overlapped_3.03.dump │ │ ├── Test_diff_overlapped_3.04.dump │ │ ├── Test_diff_overlapped_3.05.dump │ │ ├── Test_diff_overlapped_3.06.dump │ │ ├── Test_diff_overlapped_3.07.dump │ │ ├── Test_diff_overlapped_3.08.dump │ │ ├── Test_diff_overlapped_3.09.dump │ │ ├── Test_diff_overlapped_3.10.dump │ │ ├── Test_diff_overlapped_3.11.dump │ │ ├── Test_diff_overlapped_3.12.dump │ │ ├── Test_diff_overlapped_3.13.dump │ │ ├── Test_diff_overlapped_3.14.dump │ │ ├── Test_diff_overlapped_3.15.dump │ │ ├── Test_diff_overlapped_3.16.dump │ │ ├── Test_diff_overlapped_3.17.dump │ │ ├── Test_diff_overlapped_3.18.dump │ │ ├── Test_diff_overlapped_3.19.dump │ │ ├── Test_diff_overlapped_3.20.dump │ │ ├── Test_diff_overlapped_3.21.dump │ │ ├── Test_diff_overlapped_3.22.dump │ │ ├── Test_diff_overlapped_3.23.dump │ │ ├── Test_diff_overlapped_3.24.dump │ │ ├── Test_diff_overlapped_3.25.dump │ │ ├── Test_diff_overlapped_3.26.dump │ │ ├── Test_diff_overlapped_3.27.dump │ │ ├── Test_diff_overlapped_3.28.dump │ │ ├── Test_diff_overlapped_3.29.dump │ │ ├── Test_diff_overlapped_3.30.dump │ │ ├── Test_diff_overlapped_3.31.dump │ │ ├── Test_diff_overlapped_3.32.dump │ │ ├── Test_diff_overlapped_3.33.dump │ │ ├── Test_diff_overlapped_3.34.dump │ │ ├── Test_diff_overlapped_3.35.dump │ │ ├── Test_diff_overlapped_3.36.dump │ │ ├── Test_diff_overlapped_3.37.dump │ │ ├── Test_diff_overlapped_3.38.dump │ │ ├── Test_diff_overlapped_3.39.dump │ │ ├── Test_diff_overlapped_3.40.dump │ │ ├── Test_diff_overlapped_3.41.dump │ │ ├── Test_diff_overlapped_3.42.dump │ │ ├── Test_diff_overlapped_3.43.dump │ │ ├── Test_diff_overlapped_3.44.dump │ │ ├── Test_diff_rnu_01.dump │ │ ├── Test_diff_rnu_02.dump │ │ ├── Test_diff_rnu_03.dump │ │ ├── Test_diff_scroll_1.dump │ │ ├── Test_diff_scroll_2.dump │ │ ├── Test_diff_scroll_change_01.dump │ │ ├── Test_diff_scroll_change_02.dump │ │ ├── Test_diff_scroll_change_03.dump │ │ ├── Test_diff_syntax_1.dump │ │ ├── Test_diff_topline_1.dump │ │ ├── Test_diff_topline_2.dump │ │ ├── Test_diff_topline_3.dump │ │ ├── Test_diff_topline_4.dump │ │ ├── Test_diff_with_cul_bri_01.dump │ │ ├── Test_diff_with_cul_bri_02.dump │ │ ├── Test_diff_with_cul_bri_03.dump │ │ ├── Test_diff_with_cul_bri_04.dump │ │ ├── Test_diff_with_cursorline_01.dump │ │ ├── Test_diff_with_cursorline_02.dump │ │ ├── Test_diff_with_cursorline_03.dump │ │ ├── Test_diff_with_cursorline_number_01.dump │ │ ├── Test_diff_with_cursorline_number_02.dump │ │ ├── Test_difffunc_diffexpr_1.dump │ │ ├── Test_display_cursor_long_line_1.dump │ │ ├── Test_display_cursor_long_line_2.dump │ │ ├── Test_display_cursor_long_line_3.dump │ │ ├── Test_display_cursor_long_line_4.dump │ │ ├── Test_display_fillchars_1.dump │ │ ├── Test_display_fillchars_2.dump │ │ ├── Test_display_lastline_1.dump │ │ ├── Test_display_lastline_2.dump │ │ ├── Test_display_lastline_3.dump │ │ ├── Test_display_lastline_4.dump │ │ ├── Test_display_lastline_5.dump │ │ ├── Test_display_lastline_6.dump │ │ ├── Test_display_lastline_euro_1.dump │ │ ├── Test_display_lastline_euro_2.dump │ │ ├── Test_display_lastline_euro_3.dump │ │ ├── Test_display_lastline_euro_4.dump │ │ ├── Test_display_lastline_euro_5.dump │ │ ├── Test_display_lastline_euro_6.dump │ │ ├── Test_display_long_line_1.dump │ │ ├── Test_display_long_line_2.dump │ │ ├── Test_display_long_line_3.dump │ │ ├── Test_display_long_line_4.dump │ │ ├── Test_display_scroll_at_topline.dump │ │ ├── Test_display_scroll_update_visual.dump │ │ ├── Test_display_unprintable_01.dump │ │ ├── Test_display_unprintable_02.dump │ │ ├── Test_display_visual_block_scroll.dump │ │ ├── Test_drop_modified_1.dump │ │ ├── Test_echowin_eval.dump │ │ ├── Test_echowin_showmode.dump │ │ ├── Test_echowindow_1.dump │ │ ├── Test_echowindow_2.dump │ │ ├── Test_echowindow_3.dump │ │ ├── Test_echowindow_4.dump │ │ ├── Test_echowindow_5.dump │ │ ├── Test_echowindow_6.dump │ │ ├── Test_echowindow_7.dump │ │ ├── Test_echowindow_8.dump │ │ ├── Test_echowindow_9.dump │ │ ├── Test_edit_ctlr_r_failed_1.dump │ │ ├── Test_expand_env_var_1.dump │ │ ├── Test_expand_env_var_2.dump │ │ ├── Test_fileinfo_after_echo.dump │ │ ├── Test_folds_with_rnu_01.dump │ │ ├── Test_folds_with_rnu_02.dump │ │ ├── Test_functions_echoraw.dump │ │ ├── Test_fuzzy_autocompletedelay_1.dump │ │ ├── Test_fuzzy_autocompletedelay_2.dump │ │ ├── Test_fuzzy_autocompletedelay_3.dump │ │ ├── Test_helptoc_markdown_01.dump │ │ ├── Test_hlsearch_1.dump │ │ ├── Test_hlsearch_2.dump │ │ ├── Test_hlsearch_block_visual_match.dump │ │ ├── Test_hlsearch_ctrlr_1.dump │ │ ├── Test_hlsearch_cursearch_changed_1.dump │ │ ├── Test_hlsearch_cursearch_multiple_line_1.dump │ │ ├── Test_hlsearch_cursearch_multiple_line_2.dump │ │ ├── Test_hlsearch_cursearch_multiple_line_3.dump │ │ ├── Test_hlsearch_cursearch_multiple_line_4.dump │ │ ├── Test_hlsearch_cursearch_multiple_line_5.dump │ │ ├── Test_hlsearch_cursearch_single_line_1.dump │ │ ├── Test_hlsearch_cursearch_single_line_2.dump │ │ ├── Test_hlsearch_cursearch_single_line_2a.dump │ │ ├── Test_hlsearch_cursearch_single_line_2b.dump │ │ ├── Test_hlsearch_cursearch_single_line_3.dump │ │ ├── Test_hlsearch_visual_1.dump │ │ ├── Test_hor_scroll_1.dump │ │ ├── Test_hor_scroll_2.dump │ │ ├── Test_hor_scroll_3.dump │ │ ├── Test_hor_scroll_4.dump │ │ ├── Test_hor_scroll_5.dump │ │ ├── Test_incsearch_change_01.dump │ │ ├── Test_incsearch_delim_01.dump │ │ ├── Test_incsearch_delim_02.dump │ │ ├── Test_incsearch_delim_03.dump │ │ ├── Test_incsearch_delim_04.dump │ │ ├── Test_incsearch_newline1.dump │ │ ├── Test_incsearch_newline2.dump │ │ ├── Test_incsearch_newline3.dump │ │ ├── Test_incsearch_newline4.dump │ │ ├── Test_incsearch_newline5.dump │ │ ├── Test_incsearch_restore_view_01.dump │ │ ├── Test_incsearch_restore_view_02.dump │ │ ├── Test_incsearch_restore_view_03.dump │ │ ├── Test_incsearch_scrolling_01.dump │ │ ├── Test_incsearch_search_01.dump │ │ ├── Test_incsearch_search_02.dump │ │ ├── Test_incsearch_sort_01.dump │ │ ├── Test_incsearch_sort_02.dump │ │ ├── Test_incsearch_sub_01.dump │ │ ├── Test_incsearch_sub_02.dump │ │ ├── Test_incsearch_substitute_01.dump │ │ ├── Test_incsearch_substitute_02.dump │ │ ├── Test_incsearch_substitute_03.dump │ │ ├── Test_incsearch_substitute_04.dump │ │ ├── Test_incsearch_substitute_05.dump │ │ ├── Test_incsearch_substitute_06.dump │ │ ├── Test_incsearch_substitute_07.dump │ │ ├── Test_incsearch_substitute_08.dump │ │ ├── Test_incsearch_substitute_09.dump │ │ ├── Test_incsearch_substitute_10.dump │ │ ├── Test_incsearch_substitute_11.dump │ │ ├── Test_incsearch_substitute_12.dump │ │ ├── Test_incsearch_substitute_13.dump │ │ ├── Test_incsearch_substitute_14.dump │ │ ├── Test_incsearch_substitute_15.dump │ │ ├── Test_incsearch_vimgrep_01.dump │ │ ├── Test_incsearch_vimgrep_02.dump │ │ ├── Test_incsearch_vimgrep_03.dump │ │ ├── Test_incsearch_vimgrep_04.dump │ │ ├── Test_incsearch_vimgrep_05.dump │ │ ├── Test_info_popupwin_clears_cmdline_on_hide_01.dump │ │ ├── Test_info_popupwin_clears_cmdline_on_hide_02.dump │ │ ├── Test_ins_complete_popup_position_1.dump │ │ ├── Test_job_buffer_scroll_1.dump │ │ ├── Test_keytyped_in_nested_func.dump │ │ ├── Test_linebreak_reset_restore_1.dump │ │ ├── Test_linematch_3diffs1.dump │ │ ├── Test_linematch_3diffs2.dump │ │ ├── Test_linematch_diff1.dump │ │ ├── Test_linematch_diff_grouping1.dump │ │ ├── Test_linematch_diff_grouping2.dump │ │ ├── Test_linematch_diff_grouping_scroll0.dump │ │ ├── Test_linematch_diff_grouping_scroll1.dump │ │ ├── Test_linematch_diff_grouping_scroll2.dump │ │ ├── Test_linematch_diff_iwhite1.dump │ │ ├── Test_linematch_diff_iwhite2.dump │ │ ├── Test_linematch_line_limit_exceeded1.dump │ │ ├── Test_linematch_line_limit_exceeded2.dump │ │ ├── Test_listchars_01.dump │ │ ├── Test_listchars_02.dump │ │ ├── Test_listchars_03.dump │ │ ├── Test_listchars_04.dump │ │ ├── Test_listchars_05.dump │ │ ├── Test_listchars_06.dump │ │ ├── Test_listchars_07.dump │ │ ├── Test_long_file_name_1.dump │ │ ├── Test_long_file_name_2.dump │ │ ├── Test_long_file_name_3.dump │ │ ├── Test_long_file_name_4.dump │ │ ├── Test_long_line_noselect_1.dump │ │ ├── Test_long_line_noselect_2.dump │ │ ├── Test_long_line_noselect_3.dump │ │ ├── Test_long_text_with_padding_1.dump │ │ ├── Test_long_text_with_padding_2.dump │ │ ├── Test_map_expr_1.dump │ │ ├── Test_map_expr_2.dump │ │ ├── Test_map_expr_3.dump │ │ ├── Test_map_expr_4.dump │ │ ├── Test_map_list_1.dump │ │ ├── Test_match_linebreak.dump │ │ ├── Test_match_tab_linebreak.dump │ │ ├── Test_match_with_incsearch_1.dump │ │ ├── Test_match_with_incsearch_2.dump │ │ ├── Test_matchadd_1.dump │ │ ├── Test_matchaddpos_1.dump │ │ ├── Test_matchclear_1.dump │ │ ├── Test_matchdelete_1.dump │ │ ├── Test_matchparen_clear_highlight_1.dump │ │ ├── Test_matchparen_clear_highlight_2.dump │ │ ├── Test_matchparen_mbyte_1.dump │ │ ├── Test_matchparen_mbyte_2.dump │ │ ├── Test_matchparen_mbyte_3.dump │ │ ├── Test_matchparen_mbyte_4.dump │ │ ├── Test_matchparen_mbyte_5.dump │ │ ├── Test_matchparen_mbyte_6.dump │ │ ├── Test_matchparen_mbyte_7.dump │ │ ├── Test_matchparen_mbyte_8.dump │ │ ├── Test_matchparen_pum_clear_1.dump │ │ ├── Test_matchparen_sh_case_1.dump │ │ ├── Test_matchparen_sh_case_2.dump │ │ ├── Test_matchparen_win_execute_1.dump │ │ ├── Test_matchparen_winscrolled1.dump │ │ ├── Test_matchparen_winscrolled2.dump │ │ ├── Test_message_not_cleared_after_mode_1.dump │ │ ├── Test_message_not_cleared_after_mode_2.dump │ │ ├── Test_message_not_cleared_after_mode_3.dump │ │ ├── Test_misplaced_type.dump │ │ ├── Test_mode_1.dump │ │ ├── Test_mode_2.dump │ │ ├── Test_mode_cleared_after_silent_message_1.dump │ │ ├── Test_mode_cleared_after_silent_message_2.dump │ │ ├── Test_mode_updated_1.dump │ │ ├── Test_modify_text_before_prop_1.dump │ │ ├── Test_modify_text_before_prop_2.dump │ │ ├── Test_more_scrollback_1.dump │ │ ├── Test_more_scrollback_2.dump │ │ ├── Test_mouse_popup_position_01.dump │ │ ├── Test_mouse_popup_position_02.dump │ │ ├── Test_mouse_popup_position_03.dump │ │ ├── Test_mouse_popup_position_04.dump │ │ ├── Test_move_undo_1.dump │ │ ├── Test_move_undo_2.dump │ │ ├── Test_normal_j_below_botline.dump │ │ ├── Test_number_insert_delete_lines_1.dump │ │ ├── Test_number_insert_delete_lines_2.dump │ │ ├── Test_number_insert_delete_lines_3.dump │ │ ├── Test_plugin_tutor_mark_1.dump │ │ ├── Test_popup_and_previewwindow_pbuffer.dump │ │ ├── Test_popup_and_previewwindow_pedit.dump │ │ ├── Test_popup_border_end_20.dump │ │ ├── Test_popup_border_end_21.dump │ │ ├── Test_popup_border_end_22.dump │ │ ├── Test_popup_border_end_5.dump │ │ ├── Test_popup_border_end_6.dump │ │ ├── Test_popup_border_end_m_19.dump │ │ ├── Test_popup_border_end_m_20.dump │ │ ├── Test_popup_border_end_m_21.dump │ │ ├── Test_popup_border_end_m_4.dump │ │ ├── Test_popup_border_end_m_5.dump │ │ ├── Test_popup_border_end_m_s_17.dump │ │ ├── Test_popup_border_end_m_s_18.dump │ │ ├── Test_popup_border_end_m_s_19.dump │ │ ├── Test_popup_border_end_m_s_2.dump │ │ ├── Test_popup_border_end_m_s_3.dump │ │ ├── Test_popup_border_end_rtl_20.dump │ │ ├── Test_popup_border_end_rtl_21.dump │ │ ├── Test_popup_border_end_rtl_22.dump │ │ ├── Test_popup_border_end_rtl_5.dump │ │ ├── Test_popup_border_end_rtl_6.dump │ │ ├── Test_popup_border_end_rtl_m_19.dump │ │ ├── Test_popup_border_end_rtl_m_20.dump │ │ ├── Test_popup_border_end_rtl_m_21.dump │ │ ├── Test_popup_border_end_rtl_m_4.dump │ │ ├── Test_popup_border_end_rtl_m_5.dump │ │ ├── Test_popup_border_end_rtl_m_s_17.dump │ │ ├── Test_popup_border_end_rtl_m_s_18.dump │ │ ├── Test_popup_border_end_rtl_m_s_19.dump │ │ ├── Test_popup_border_end_rtl_m_s_2.dump │ │ ├── Test_popup_border_end_rtl_m_s_3.dump │ │ ├── Test_popup_border_start_0.dump │ │ ├── Test_popup_border_start_0_m.dump │ │ ├── Test_popup_border_start_1.dump │ │ ├── Test_popup_border_start_1_m.dump │ │ ├── Test_popup_border_start_2.dump │ │ ├── Test_popup_border_start_2_m.dump │ │ ├── Test_popup_border_start_5.dump │ │ ├── Test_popup_border_start_5_m.dump │ │ ├── Test_popup_border_start_rtl_0.dump │ │ ├── Test_popup_border_start_rtl_0_m.dump │ │ ├── Test_popup_border_start_rtl_1.dump │ │ ├── Test_popup_border_start_rtl_1_m.dump │ │ ├── Test_popup_border_start_rtl_2.dump │ │ ├── Test_popup_border_start_rtl_2_m.dump │ │ ├── Test_popup_border_start_rtl_5.dump │ │ ├── Test_popup_border_start_rtl_5_m.dump │ │ ├── Test_popup_command_01.dump │ │ ├── Test_popup_command_02.dump │ │ ├── Test_popup_command_03.dump │ │ ├── Test_popup_command_04.dump │ │ ├── Test_popup_command_05.dump │ │ ├── Test_popup_command_06.dump │ │ ├── Test_popup_command_rl.dump │ │ ├── Test_popup_position_01.dump │ │ ├── Test_popup_position_02.dump │ │ ├── Test_popup_position_03.dump │ │ ├── Test_popup_position_04.dump │ │ ├── Test_popup_prop_not_visible_01.dump │ │ ├── Test_popup_prop_not_visible_01a.dump │ │ ├── Test_popup_prop_not_visible_01b.dump │ │ ├── Test_popup_prop_not_visible_02.dump │ │ ├── Test_popup_prop_not_visible_03.dump │ │ ├── Test_popup_setbuf_01.dump │ │ ├── Test_popup_setbuf_02.dump │ │ ├── Test_popup_setbuf_03.dump │ │ ├── Test_popup_setbuf_04.dump │ │ ├── Test_popup_setbuf_04.vim │ │ ├── Test_popup_setbuf_05.dump │ │ ├── Test_popup_setbuf_05.vim │ │ ├── Test_popup_setbuf_06.dump │ │ ├── Test_popup_setbuf_06.vim │ │ ├── Test_popup_settext_01.dump │ │ ├── Test_popup_settext_02.dump │ │ ├── Test_popup_settext_03.dump │ │ ├── Test_popup_settext_04.dump │ │ ├── Test_popup_settext_05.dump │ │ ├── Test_popup_settext_06.dump │ │ ├── Test_popup_settext_07.dump │ │ ├── Test_popup_shadow_hiddenchar_1.dump │ │ ├── Test_popup_shadow_hiddenchar_2.dump │ │ ├── Test_popup_textprop_01.dump │ │ ├── Test_popup_textprop_02.dump │ │ ├── Test_popup_textprop_03.dump │ │ ├── Test_popup_textprop_04.dump │ │ ├── Test_popup_textprop_05.dump │ │ ├── Test_popup_textprop_06.dump │ │ ├── Test_popup_textprop_07.dump │ │ ├── Test_popup_textprop_corn_1.dump │ │ ├── Test_popup_textprop_corn_2.dump │ │ ├── Test_popup_textprop_corn_3.dump │ │ ├── Test_popup_textprop_corn_4.dump │ │ ├── Test_popup_textprop_corn_5.dump │ │ ├── Test_popup_textprop_corn_6.dump │ │ ├── Test_popup_textprop_off_1.dump │ │ ├── Test_popup_textprop_off_2.dump │ │ ├── Test_popupmenu_cmdline_1.dump │ │ ├── Test_popupwin_01.dump │ │ ├── Test_popupwin_02.dump │ │ ├── Test_popupwin_03.dump │ │ ├── Test_popupwin_04.dump │ │ ├── Test_popupwin_04a.dump │ │ ├── Test_popupwin_05.dump │ │ ├── Test_popupwin_06.dump │ │ ├── Test_popupwin_07.dump │ │ ├── Test_popupwin_08.dump │ │ ├── Test_popupwin_10.dump │ │ ├── Test_popupwin_11.dump │ │ ├── Test_popupwin_20.dump │ │ ├── Test_popupwin_21.dump │ │ ├── Test_popupwin_22.dump │ │ ├── Test_popupwin_23.dump │ │ ├── Test_popupwin_24.dump │ │ ├── Test_popupwin_atcursor_pos.dump │ │ ├── Test_popupwin_behind.dump │ │ ├── Test_popupwin_beval_1.dump │ │ ├── Test_popupwin_beval_2.dump │ │ ├── Test_popupwin_beval_3.dump │ │ ├── Test_popupwin_bottom_position_without_decoration.dump │ │ ├── Test_popupwin_close_01.dump │ │ ├── Test_popupwin_close_02.dump │ │ ├── Test_popupwin_close_03.dump │ │ ├── Test_popupwin_close_04.dump │ │ ├── Test_popupwin_close_05.dump │ │ ├── Test_popupwin_corners.dump │ │ ├── Test_popupwin_ctrl_c.dump │ │ ├── Test_popupwin_cursorline_1.dump │ │ ├── Test_popupwin_cursorline_2.dump │ │ ├── Test_popupwin_cursorline_3.dump │ │ ├── Test_popupwin_cursorline_4.dump │ │ ├── Test_popupwin_cursorline_5.dump │ │ ├── Test_popupwin_cursorline_6.dump │ │ ├── Test_popupwin_cursorline_7.dump │ │ ├── Test_popupwin_cursorline_8.dump │ │ ├── Test_popupwin_doublewidth_1.dump │ │ ├── Test_popupwin_drag_01.dump │ │ ├── Test_popupwin_drag_02.dump │ │ ├── Test_popupwin_drag_03.dump │ │ ├── Test_popupwin_drag_04.dump │ │ ├── Test_popupwin_drag_05.dump │ │ ├── Test_popupwin_drag_06.dump │ │ ├── Test_popupwin_drag_minwidth_1.dump │ │ ├── Test_popupwin_drag_minwidth_2.dump │ │ ├── Test_popupwin_drag_minwidth_3.dump │ │ ├── Test_popupwin_first_after_scroll.dump │ │ ├── Test_popupwin_firstline_1.dump │ │ ├── Test_popupwin_firstline_2.dump │ │ ├── Test_popupwin_hide_clear_cmdline_01.dump │ │ ├── Test_popupwin_info_border_mouse_1.dump │ │ ├── Test_popupwin_info_border_mouse_2.dump │ │ ├── Test_popupwin_infopopup_1.dump │ │ ├── Test_popupwin_infopopup_2.dump │ │ ├── Test_popupwin_infopopup_3.dump │ │ ├── Test_popupwin_infopopup_4.dump │ │ ├── Test_popupwin_infopopup_5.dump │ │ ├── Test_popupwin_infopopup_6.dump │ │ ├── Test_popupwin_infopopup_7.dump │ │ ├── Test_popupwin_infopopup_8.dump │ │ ├── Test_popupwin_infopopup_9.dump │ │ ├── Test_popupwin_infopopup_align_1.dump │ │ ├── Test_popupwin_infopopup_align_2.dump │ │ ├── Test_popupwin_infopopup_align_3.dump │ │ ├── Test_popupwin_infopopup_hidden_1.dump │ │ ├── Test_popupwin_infopopup_hidden_2.dump │ │ ├── Test_popupwin_infopopup_hidden_3.dump │ │ ├── Test_popupwin_infopopup_nb_1.dump │ │ ├── Test_popupwin_infopopup_wide_1.dump │ │ ├── Test_popupwin_longtitle_1.dump │ │ ├── Test_popupwin_longtitle_2.dump │ │ ├── Test_popupwin_longtitle_3.dump │ │ ├── Test_popupwin_longtitle_4.dump │ │ ├── Test_popupwin_mask_1.dump │ │ ├── Test_popupwin_mask_2.dump │ │ ├── Test_popupwin_mask_3.dump │ │ ├── Test_popupwin_mask_4.dump │ │ ├── Test_popupwin_mask_5.dump │ │ ├── Test_popupwin_matches.dump │ │ ├── Test_popupwin_menu_01.dump │ │ ├── Test_popupwin_menu_02.dump │ │ ├── Test_popupwin_menu_03.dump │ │ ├── Test_popupwin_menu_04.dump │ │ ├── Test_popupwin_menu_filter_1.dump │ │ ├── Test_popupwin_menu_filter_2.dump │ │ ├── Test_popupwin_menu_filter_3.dump │ │ ├── Test_popupwin_menu_filter_4.dump │ │ ├── Test_popupwin_menu_filter_5.dump │ │ ├── Test_popupwin_menu_maxwidth_1.dump │ │ ├── Test_popupwin_menu_scroll_1.dump │ │ ├── Test_popupwin_menu_scroll_2.dump │ │ ├── Test_popupwin_menu_scroll_3.dump │ │ ├── Test_popupwin_menu_scroll_3a.dump │ │ ├── Test_popupwin_menu_scroll_4.dump │ │ ├── Test_popupwin_menu_scroll_5.dump │ │ ├── Test_popupwin_menu_scroll_6.dump │ │ ├── Test_popupwin_menu_scroll_6a.dump │ │ ├── Test_popupwin_multibytetitle.dump │ │ ├── Test_popupwin_normal_cmd.dump │ │ ├── Test_popupwin_nospace.dump │ │ ├── Test_popupwin_notify_01.dump │ │ ├── Test_popupwin_notify_02.dump │ │ ├── Test_popupwin_nowrap.dump │ │ ├── Test_popupwin_poptermscroll_1.dump │ │ ├── Test_popupwin_poptermscroll_2.dump │ │ ├── Test_popupwin_poptermscroll_3.dump │ │ ├── Test_popupwin_poptermscroll_4.dump │ │ ├── Test_popupwin_popupmenu_masking_1.dump │ │ ├── Test_popupwin_popupmenu_masking_2.dump │ │ ├── Test_popupwin_previewpopup_1.dump │ │ ├── Test_popupwin_previewpopup_10.dump │ │ ├── Test_popupwin_previewpopup_2.dump │ │ ├── Test_popupwin_previewpopup_3.dump │ │ ├── Test_popupwin_previewpopup_4.dump │ │ ├── Test_popupwin_previewpopup_5.dump │ │ ├── Test_popupwin_previewpopup_6.dump │ │ ├── Test_popupwin_previewpopup_7.dump │ │ ├── Test_popupwin_previewpopup_8.dump │ │ ├── Test_popupwin_previewpopup_9.dump │ │ ├── Test_popupwin_scroll_1.dump │ │ ├── Test_popupwin_scroll_10.dump │ │ ├── Test_popupwin_scroll_11.dump │ │ ├── Test_popupwin_scroll_12.dump │ │ ├── Test_popupwin_scroll_13.dump │ │ ├── Test_popupwin_scroll_2.dump │ │ ├── Test_popupwin_scroll_3.dump │ │ ├── Test_popupwin_scroll_4.dump │ │ ├── Test_popupwin_scroll_5.dump │ │ ├── Test_popupwin_scroll_6.dump │ │ ├── Test_popupwin_scroll_7.dump │ │ ├── Test_popupwin_scroll_8.dump │ │ ├── Test_popupwin_scroll_9.dump │ │ ├── Test_popupwin_select_01.dump │ │ ├── Test_popupwin_select_02.dump │ │ ├── Test_popupwin_set_firstline_1.dump │ │ ├── Test_popupwin_set_firstline_2.dump │ │ ├── Test_popupwin_showbreak.dump │ │ ├── Test_popupwin_sign_1.dump │ │ ├── Test_popupwin_sign_2.dump │ │ ├── Test_popupwin_term_01.dump │ │ ├── Test_popupwin_term_02.dump │ │ ├── Test_popupwin_term_03.dump │ │ ├── Test_popupwin_term_04.dump │ │ ├── Test_popupwin_three_errors_1.dump │ │ ├── Test_popupwin_three_errors_2.dump │ │ ├── Test_popupwin_title.dump │ │ ├── Test_popupwin_toohigh_1.dump │ │ ├── Test_popupwin_toohigh_2.dump │ │ ├── Test_popupwin_toohigh_3.dump │ │ ├── Test_popupwin_win_execute.dump │ │ ├── Test_popupwin_win_execute_cursorline.dump │ │ ├── Test_popupwin_with_error_1.dump │ │ ├── Test_popupwin_wrap.dump │ │ ├── Test_popupwin_wrap_1.dump │ │ ├── Test_popupwin_wrap_2.dump │ │ ├── Test_popupwin_wrong_name.dump │ │ ├── Test_prop_above_and_before_1.dump │ │ ├── Test_prop_above_and_before_2.dump │ │ ├── Test_prop_above_and_before_3.dump │ │ ├── Test_prop_above_and_before_4.dump │ │ ├── Test_prop_above_and_before_5.dump │ │ ├── Test_prop_above_below_empty_1.dump │ │ ├── Test_prop_above_below_empty_2.dump │ │ ├── Test_prop_above_below_empty_3.dump │ │ ├── Test_prop_above_below_empty_4.dump │ │ ├── Test_prop_above_below_empty_5.dump │ │ ├── Test_prop_above_below_empty_6.dump │ │ ├── Test_prop_above_below_smoothscroll_1.dump │ │ ├── Test_prop_above_below_smoothscroll_10.dump │ │ ├── Test_prop_above_below_smoothscroll_11.dump │ │ ├── Test_prop_above_below_smoothscroll_12.dump │ │ ├── Test_prop_above_below_smoothscroll_13.dump │ │ ├── Test_prop_above_below_smoothscroll_14.dump │ │ ├── Test_prop_above_below_smoothscroll_15.dump │ │ ├── Test_prop_above_below_smoothscroll_16.dump │ │ ├── Test_prop_above_below_smoothscroll_2.dump │ │ ├── Test_prop_above_below_smoothscroll_3.dump │ │ ├── Test_prop_above_below_smoothscroll_4.dump │ │ ├── Test_prop_above_below_smoothscroll_5.dump │ │ ├── Test_prop_above_below_smoothscroll_6.dump │ │ ├── Test_prop_above_below_smoothscroll_7.dump │ │ ├── Test_prop_above_below_smoothscroll_8.dump │ │ ├── Test_prop_above_below_smoothscroll_9.dump │ │ ├── Test_prop_above_empty_1.dump │ │ ├── Test_prop_above_empty_2.dump │ │ ├── Test_prop_above_linebreak_1.dump │ │ ├── Test_prop_above_linebreak_2.dump │ │ ├── Test_prop_above_number_1.dump │ │ ├── Test_prop_above_number_2.dump │ │ ├── Test_prop_above_number_3.dump │ │ ├── Test_prop_above_padding_1.dump │ │ ├── Test_prop_after_linebreak.dump │ │ ├── Test_prop_after_tab.dump │ │ ├── Test_prop_at_same_pos.dump │ │ ├── Test_prop_before_tab_01.dump │ │ ├── Test_prop_before_tab_02.dump │ │ ├── Test_prop_before_tab_03.dump │ │ ├── Test_prop_before_tab_04.dump │ │ ├── Test_prop_before_tab_05.dump │ │ ├── Test_prop_before_tab_06.dump │ │ ├── Test_prop_before_tab_07.dump │ │ ├── Test_prop_before_tab_08.dump │ │ ├── Test_prop_before_tab_09.dump │ │ ├── Test_prop_before_tab_10.dump │ │ ├── Test_prop_before_tab_skipcol_1.dump │ │ ├── Test_prop_before_tab_skipcol_10.dump │ │ ├── Test_prop_before_tab_skipcol_11.dump │ │ ├── Test_prop_before_tab_skipcol_2.dump │ │ ├── Test_prop_before_tab_skipcol_3.dump │ │ ├── Test_prop_before_tab_skipcol_4.dump │ │ ├── Test_prop_before_tab_skipcol_5.dump │ │ ├── Test_prop_before_tab_skipcol_6.dump │ │ ├── Test_prop_before_tab_skipcol_7.dump │ │ ├── Test_prop_before_tab_skipcol_8.dump │ │ ├── Test_prop_before_tab_skipcol_9.dump │ │ ├── Test_prop_below_after_empty_1.dump │ │ ├── Test_prop_below_after_empty_2.dump │ │ ├── Test_prop_below_after_empty_3.dump │ │ ├── Test_prop_below_rightleft_1.dump │ │ ├── Test_prop_below_split_line_1.dump │ │ ├── Test_prop_below_split_line_2.dump │ │ ├── Test_prop_below_split_line_3.dump │ │ ├── Test_prop_delete_updates_1.dump │ │ ├── Test_prop_delete_updates_2.dump │ │ ├── Test_prop_delete_updates_3.dump │ │ ├── Test_prop_diff_mode_1.dump │ │ ├── Test_prop_diff_mode_2.dump │ │ ├── Test_prop_in_empty_popup.dump │ │ ├── Test_prop_insert_list_mode_1.dump │ │ ├── Test_prop_insert_list_mode_2.dump │ │ ├── Test_prop_insert_list_mode_3.dump │ │ ├── Test_prop_insert_start_incl_1.dump │ │ ├── Test_prop_insert_start_incl_2.dump │ │ ├── Test_prop_insert_start_incl_3.dump │ │ ├── Test_prop_insert_start_incl_4.dump │ │ ├── Test_prop_insert_start_incl_5.dump │ │ ├── Test_prop_insert_start_incl_6.dump │ │ ├── Test_prop_insert_start_incl_7.dump │ │ ├── Test_prop_insert_start_incl_8.dump │ │ ├── Test_prop_inserts_text_1.dump │ │ ├── Test_prop_inserts_text_2.dump │ │ ├── Test_prop_inserts_text_3.dump │ │ ├── Test_prop_inserts_text_4.dump │ │ ├── Test_prop_inserts_text_5.dump │ │ ├── Test_prop_inserts_text_6.dump │ │ ├── Test_prop_inserts_text_before_double_width_wrap_1.dump │ │ ├── Test_prop_inserts_text_before_double_width_wrap_2.dump │ │ ├── Test_prop_inserts_text_before_double_width_wrap_3.dump │ │ ├── Test_prop_inserts_text_before_linebreak_1.dump │ │ ├── Test_prop_inserts_text_before_linebreak_2.dump │ │ ├── Test_prop_inserts_text_hi_1.dump │ │ ├── Test_prop_inserts_text_hi_2.dump │ │ ├── Test_prop_inserts_text_hi_3.dump │ │ ├── Test_prop_inserts_text_hi_4.dump │ │ ├── Test_prop_inserts_text_hi_5.dump │ │ ├── Test_prop_inserts_text_hi_6.dump │ │ ├── Test_prop_inserts_text_lcs_extends_1.dump │ │ ├── Test_prop_inserts_text_lcs_extends_2.dump │ │ ├── Test_prop_inserts_text_lcs_extends_3.dump │ │ ├── Test_prop_inserts_text_lcs_extends_4.dump │ │ ├── Test_prop_inserts_text_lcs_extends_5.dump │ │ ├── Test_prop_inserts_text_normal_gM.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_1.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_2.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_3.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_4.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_5.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_6.dump │ │ ├── Test_prop_inserts_text_normal_gj_gk_7.dump │ │ ├── Test_prop_inserts_text_showbreak_1.dump │ │ ├── Test_prop_inserts_text_showbreak_10.dump │ │ ├── Test_prop_inserts_text_showbreak_11.dump │ │ ├── Test_prop_inserts_text_showbreak_12.dump │ │ ├── Test_prop_inserts_text_showbreak_13.dump │ │ ├── Test_prop_inserts_text_showbreak_14.dump │ │ ├── Test_prop_inserts_text_showbreak_15.dump │ │ ├── Test_prop_inserts_text_showbreak_16.dump │ │ ├── Test_prop_inserts_text_showbreak_17.dump │ │ ├── Test_prop_inserts_text_showbreak_18.dump │ │ ├── Test_prop_inserts_text_showbreak_19.dump │ │ ├── Test_prop_inserts_text_showbreak_2.dump │ │ ├── Test_prop_inserts_text_showbreak_20.dump │ │ ├── Test_prop_inserts_text_showbreak_21.dump │ │ ├── Test_prop_inserts_text_showbreak_22.dump │ │ ├── Test_prop_inserts_text_showbreak_23.dump │ │ ├── Test_prop_inserts_text_showbreak_24.dump │ │ ├── Test_prop_inserts_text_showbreak_3.dump │ │ ├── Test_prop_inserts_text_showbreak_4.dump │ │ ├── Test_prop_inserts_text_showbreak_5.dump │ │ ├── Test_prop_inserts_text_showbreak_6.dump │ │ ├── Test_prop_inserts_text_showbreak_7.dump │ │ ├── Test_prop_inserts_text_showbreak_8.dump │ │ ├── Test_prop_inserts_text_showbreak_9.dump │ │ ├── Test_prop_inserts_text_visual_block_1.dump │ │ ├── Test_prop_inserts_text_visual_block_2.dump │ │ ├── Test_prop_inserts_text_visual_block_3.dump │ │ ├── Test_prop_inserts_text_visual_block_4.dump │ │ ├── Test_prop_inserts_text_visual_block_5.dump │ │ ├── Test_prop_inserts_text_visual_block_6.dump │ │ ├── Test_prop_inserts_text_visual_block_7.dump │ │ ├── Test_prop_linebreak_1.dump │ │ ├── Test_prop_linebreak_2.dump │ │ ├── Test_prop_long_above_1.dump │ │ ├── Test_prop_multibyte_above_1.dump │ │ ├── Test_prop_multibyte_below_1.dump │ │ ├── Test_prop_multiple_lines_above_1.dump │ │ ├── Test_prop_negative_error_1.dump │ │ ├── Test_prop_negative_error_2.dump │ │ ├── Test_prop_normal_gj_gk_gM_with_outer_virtual_text_1.dump │ │ ├── Test_prop_normal_gj_gk_gM_with_outer_virtual_text_2.dump │ │ ├── Test_prop_normal_gj_gk_gM_with_outer_virtual_text_3.dump │ │ ├── Test_prop_normal_gj_gk_gM_with_outer_virtual_text_4.dump │ │ ├── Test_prop_right_align_twice_1.dump │ │ ├── Test_prop_right_align_twice_2.dump │ │ ├── Test_prop_right_align_twice_3.dump │ │ ├── Test_prop_sign_tab_1.dump │ │ ├── Test_prop_sign_tab_2.dump │ │ ├── Test_prop_text_change_arg_1.dump │ │ ├── Test_prop_text_change_arg_2.dump │ │ ├── Test_prop_text_with_padding_1.dump │ │ ├── Test_prop_text_with_padding_2.dump │ │ ├── Test_prop_text_with_padding_3.dump │ │ ├── Test_prop_text_with_padding_4.dump │ │ ├── Test_prop_wincolor_1.dump │ │ ├── Test_prop_wincolor_2.dump │ │ ├── Test_prop_wincolor_3.dump │ │ ├── Test_prop_wincolor_4.dump │ │ ├── Test_prop_wincolor_5.dump │ │ ├── Test_prop_wincolor_6.dump │ │ ├── Test_prop_wincolor_7.dump │ │ ├── Test_prop_wincolor_8.dump │ │ ├── Test_prop_wincolor_9.dump │ │ ├── Test_prop_with_linebreak_1.dump │ │ ├── Test_prop_with_linebreak_2.dump │ │ ├── Test_prop_with_text_above_1.dump │ │ ├── Test_prop_with_text_above_1a.dump │ │ ├── Test_prop_with_text_above_1b.dump │ │ ├── Test_prop_with_text_above_1c.dump │ │ ├── Test_prop_with_text_above_2.dump │ │ ├── Test_prop_with_text_above_3.dump │ │ ├── Test_prop_with_text_above_4.dump │ │ ├── Test_prop_with_text_above_5.dump │ │ ├── Test_prop_with_text_above_6.dump │ │ ├── Test_prop_with_text_above_7.dump │ │ ├── Test_prop_with_text_above_8.dump │ │ ├── Test_prop_with_text_above_9.dump │ │ ├── Test_prop_with_text_after_1.dump │ │ ├── Test_prop_with_text_after_below_trunc_1.dump │ │ ├── Test_prop_with_text_after_below_trunc_2.dump │ │ ├── Test_prop_with_text_after_below_trunc_3.dump │ │ ├── Test_prop_with_text_after_join_split_1.dump │ │ ├── Test_prop_with_text_after_join_split_2.dump │ │ ├── Test_prop_with_text_after_join_split_3.dump │ │ ├── Test_prop_with_text_after_join_split_4.dump │ │ ├── Test_prop_with_text_after_join_split_5.dump │ │ ├── Test_prop_with_text_after_joined_1.dump │ │ ├── Test_prop_with_text_after_nowrap_1.dump │ │ ├── Test_prop_with_text_after_nowrap_2.dump │ │ ├── Test_prop_with_text_after_nowrap_3.dump │ │ ├── Test_prop_with_text_after_trunc_1.dump │ │ ├── Test_prop_with_text_after_trunc_2.dump │ │ ├── Test_prop_with_text_after_trunc_3.dump │ │ ├── Test_prop_with_text_after_trunc_4.dump │ │ ├── Test_prop_with_text_after_trunc_5.dump │ │ ├── Test_prop_with_text_after_trunc_ambiw_d_1.dump │ │ ├── Test_prop_with_text_after_trunc_not_utf8.dump │ │ ├── Test_prop_with_text_after_wraps_1.dump │ │ ├── Test_prop_with_text_below_after_match_1.dump │ │ ├── Test_prop_with_text_below_cul_1.dump │ │ ├── Test_prop_with_text_below_nowrap_1.dump │ │ ├── Test_prop_with_text_below_nowrap_2.dump │ │ ├── Test_prop_with_text_cursormoved_1.dump │ │ ├── Test_prop_with_text_cursormoved_2.dump │ │ ├── Test_prop_with_text_empty_line_1.dump │ │ ├── Test_prop_with_text_empty_line_2.dump │ │ ├── Test_prop_with_text_empty_line_3.dump │ │ ├── Test_prop_with_text_empty_line_4.dump │ │ ├── Test_prop_with_text_empty_line_5.dump │ │ ├── Test_prop_with_text_empty_line_6.dump │ │ ├── Test_prop_with_text_empty_line_7.dump │ │ ├── Test_prop_with_text_empty_line_8.dump │ │ ├── Test_prop_with_text_empty_line_9.dump │ │ ├── Test_prop_with_text_override_1.dump │ │ ├── Test_prop_with_text_override_2.dump │ │ ├── Test_prop_with_wrap_1.dump │ │ ├── Test_props_after_1.dump │ │ ├── Test_props_after_2.dump │ │ ├── Test_props_with_text_truncated_just_before_after_1.dump │ │ ├── Test_props_with_text_truncated_just_before_after_2.dump │ │ ├── Test_pum_completefuzzycollect_01.dump │ │ ├── Test_pum_completefuzzycollect_02.dump │ │ ├── Test_pum_completefuzzycollect_03.dump │ │ ├── Test_pum_completeitemalign_01.dump │ │ ├── Test_pum_completeitemalign_02.dump │ │ ├── Test_pum_completeitemalign_03.dump │ │ ├── Test_pum_completeitemalign_04.dump │ │ ├── Test_pum_completeitemalign_05.dump │ │ ├── Test_pum_completeitemalign_06.dump │ │ ├── Test_pum_completeitemalign_07.dump │ │ ├── Test_pum_highlights_01.dump │ │ ├── Test_pum_highlights_02.dump │ │ ├── Test_pum_highlights_03.dump │ │ ├── Test_pum_highlights_04.dump │ │ ├── Test_pum_highlights_05.dump │ │ ├── Test_pum_highlights_06.dump │ │ ├── Test_pum_highlights_06a.dump │ │ ├── Test_pum_highlights_06b.dump │ │ ├── Test_pum_highlights_07.dump │ │ ├── Test_pum_highlights_08.dump │ │ ├── Test_pum_highlights_09.dump │ │ ├── Test_pum_highlights_12.dump │ │ ├── Test_pum_highlights_13.dump │ │ ├── Test_pum_highlights_14.dump │ │ ├── Test_pum_highlights_16.dump │ │ ├── Test_pum_highlights_17.dump │ │ ├── Test_pum_highlights_18.dump │ │ ├── Test_pum_highlights_19.dump │ │ ├── Test_pum_keep_select_01.dump │ │ ├── Test_pum_keep_select_02.dump │ │ ├── Test_pum_matchins_01.dump │ │ ├── Test_pum_matchins_02.dump │ │ ├── Test_pum_matchins_03.dump │ │ ├── Test_pum_matchins_04.dump │ │ ├── Test_pum_matchins_05.dump │ │ ├── Test_pum_matchins_07.dump │ │ ├── Test_pum_matchins_08.dump │ │ ├── Test_pum_matchins_09.dump │ │ ├── Test_pum_matchins_10.dump │ │ ├── Test_pum_matchins_11.dump │ │ ├── Test_pum_matchins_combine_01.dump │ │ ├── Test_pum_matchins_combine_02.dump │ │ ├── Test_pum_matchins_combine_03.dump │ │ ├── Test_pum_matchins_combine_04.dump │ │ ├── Test_pum_matchins_combine_05.dump │ │ ├── Test_pum_matchins_combine_06.dump │ │ ├── Test_pum_matchins_combine_07.dump │ │ ├── Test_pum_matchins_combine_08.dump │ │ ├── Test_pum_matchins_combine_09.dump │ │ ├── Test_pum_maxwidth_01.dump │ │ ├── Test_pum_maxwidth_02.dump │ │ ├── Test_pum_maxwidth_03.dump │ │ ├── Test_pum_maxwidth_04.dump │ │ ├── Test_pum_maxwidth_05.dump │ │ ├── Test_pum_maxwidth_06.dump │ │ ├── Test_pum_maxwidth_07.dump │ │ ├── Test_pum_maxwidth_08.dump │ │ ├── Test_pum_maxwidth_09.dump │ │ ├── Test_pum_maxwidth_10.dump │ │ ├── Test_pum_maxwidth_11.dump │ │ ├── Test_pum_maxwidth_12.dump │ │ ├── Test_pum_maxwidth_13.dump │ │ ├── Test_pum_maxwidth_14.dump │ │ ├── Test_pum_maxwidth_15.dump │ │ ├── Test_pum_maxwidth_16.dump │ │ ├── Test_pum_maxwidth_17.dump │ │ ├── Test_pum_maxwidth_18.dump │ │ ├── Test_pum_maxwidth_19.dump │ │ ├── Test_pum_maxwidth_20.dump │ │ ├── Test_pum_maxwidth_21.dump │ │ ├── Test_pum_maxwidth_22.dump │ │ ├── Test_pum_maxwidth_23.dump │ │ ├── Test_pum_preview_pbuffer_1.dump │ │ ├── Test_pum_preview_pbuffer_2.dump │ │ ├── Test_pum_preview_pbuffer_3.dump │ │ ├── Test_pum_preview_pbuffer_4.dump │ │ ├── Test_pum_preview_pedit_1.dump │ │ ├── Test_pum_preview_pedit_2.dump │ │ ├── Test_pum_preview_pedit_3.dump │ │ ├── Test_pum_preview_pedit_4.dump │ │ ├── Test_pum_rightleft_01.dump │ │ ├── Test_pum_rightleft_02.dump │ │ ├── Test_pum_scroll_noselect_1.dump │ │ ├── Test_pum_scroll_noselect_2.dump │ │ ├── Test_pum_scrollbar_01.dump │ │ ├── Test_pum_scrollbar_02.dump │ │ ├── Test_pum_stopped_by_timer.dump │ │ ├── Test_pum_with_folds_two_tabs.dump │ │ ├── Test_pum_with_preview_win.dump │ │ ├── Test_pum_with_special_characters_01.dump │ │ ├── Test_pum_with_special_characters_02.dump │ │ ├── Test_pum_with_special_characters_03.dump │ │ ├── Test_pum_with_special_characters_04.dump │ │ ├── Test_pum_with_special_characters_05.dump │ │ ├── Test_pum_with_special_characters_06.dump │ │ ├── Test_pum_with_special_characters_07.dump │ │ ├── Test_pum_with_special_characters_08.dump │ │ ├── Test_pum_with_special_characters_09.dump │ │ ├── Test_pum_with_special_characters_10.dump │ │ ├── Test_pum_with_special_characters_11.dump │ │ ├── Test_pum_with_special_characters_12.dump │ │ ├── Test_pum_with_special_characters_13.dump │ │ ├── Test_pum_wrap_line1.dump │ │ ├── Test_pum_wrap_line2.dump │ │ ├── Test_pum_wrap_line3.dump │ │ ├── Test_pum_wrap_line4.dump │ │ ├── Test_pum_wrap_line5.dump │ │ ├── Test_put_in_last_displayed_line_1.dump │ │ ├── Test_put_other_window_1.dump │ │ ├── Test_quickfix_cwindow_1.dump │ │ ├── Test_quickfix_cwindow_2.dump │ │ ├── Test_quickfix_cwindow_3.dump │ │ ├── Test_quickfix_cwindow_4.dump │ │ ├── Test_quickfix_window_fails.dump │ │ ├── Test_quit_long_message.dump │ │ ├── Test_redraw_in_autocmd_1.dump │ │ ├── Test_redraw_in_autocmd_2.dump │ │ ├── Test_redrawstatus_in_autocmd_1.dump │ │ ├── Test_redrawstatus_in_autocmd_2.dump │ │ ├── Test_redrawstatus_in_autocmd_3.dump │ │ ├── Test_redrawstatus_in_autocmd_4.dump │ │ ├── Test_redrawstatus_in_autocmd_5.dump │ │ ├── Test_relativenumber_callback_1.dump │ │ ├── Test_relnr_colors_1.dump │ │ ├── Test_relnr_colors_2.dump │ │ ├── Test_relnr_colors_3.dump │ │ ├── Test_relnr_colors_4.dump │ │ ├── Test_relnr_colors_wrapped_1.dump │ │ ├── Test_relnr_colors_wrapped_2.dump │ │ ├── Test_relnr_colors_wrapped_3.dump │ │ ├── Test_relnr_colors_wrapped_4.dump │ │ ├── Test_relnr_colors_wrapped_5.dump │ │ ├── Test_resize_from_another_tabpage_1.dump │ │ ├── Test_rulerformat_function.dump │ │ ├── Test_rulerformat_position.dump │ │ ├── Test_scroll_no_region_1.dump │ │ ├── Test_scroll_no_region_2.dump │ │ ├── Test_scroll_no_region_3.dump │ │ ├── Test_scroll_no_region_4.dump │ │ ├── Test_scroll_no_region_5.dump │ │ ├── Test_scroll_no_region_6.dump │ │ ├── Test_scrollbar_on_wide_char.dump │ │ ├── Test_search_wildmenu_1.dump │ │ ├── Test_search_wildmenu_2.dump │ │ ├── Test_search_wildmenu_3.dump │ │ ├── Test_search_wildmenu_4.dump │ │ ├── Test_search_wildmenu_5.dump │ │ ├── Test_search_wildmenu_6.dump │ │ ├── Test_search_wildmenu_7.dump │ │ ├── Test_search_wildmenu_8.dump │ │ ├── Test_search_wildmenu_9.dump │ │ ├── Test_search_wildmenu_iminsert.dump │ │ ├── Test_searchstat_1.dump │ │ ├── Test_searchstat_2.dump │ │ ├── Test_searchstat_3.dump │ │ ├── Test_searchstat_4.dump │ │ ├── Test_searchstat_back_1.dump │ │ ├── Test_searchstat_back_2.dump │ │ ├── Test_searchstat_back_3.dump │ │ ├── Test_searchstat_inc_1.dump │ │ ├── Test_searchstat_inc_2.dump │ │ ├── Test_searchstat_inc_3.dump │ │ ├── Test_searchstatgd_1.dump │ │ ├── Test_searchstatgd_2.dump │ │ ├── Test_setcellwidths_dump_1.dump │ │ ├── Test_setcellwidths_dump_2.dump │ │ ├── Test_setcellwidths_with_non_ambiwidth_character_dump_1.dump │ │ ├── Test_setcellwidths_with_non_ambiwidth_character_dump_2.dump │ │ ├── Test_shortmess_complmsg_1.dump │ │ ├── Test_shortmess_complmsg_2.dump │ │ ├── Test_sign_cursor_1.dump │ │ ├── Test_sign_cursor_2.dump │ │ ├── Test_sign_cursor_3.dump │ │ ├── Test_sign_cursor_4.dump │ │ ├── Test_sign_cursor_5.dump │ │ ├── Test_sign_cursor_6.dump │ │ ├── Test_sign_number_without_signtext.dump │ │ ├── Test_smooth_cursormoved_line.dump │ │ ├── Test_smooth_diff_1.dump │ │ ├── Test_smooth_diff_change_line_1.dump │ │ ├── Test_smooth_diff_change_line_2.dump │ │ ├── Test_smooth_diff_change_line_3.dump │ │ ├── Test_smooth_diff_change_line_3a.dump │ │ ├── Test_smooth_diff_change_line_4.dump │ │ ├── Test_smooth_eob_1.dump │ │ ├── Test_smooth_eob_2.dump │ │ ├── Test_smooth_incsearch_1.dump │ │ ├── Test_smooth_incsearch_2.dump │ │ ├── Test_smooth_incsearch_3.dump │ │ ├── Test_smooth_incsearch_4.dump │ │ ├── Test_smooth_ins_lines.dump │ │ ├── Test_smooth_list_1.dump │ │ ├── Test_smooth_list_2.dump │ │ ├── Test_smooth_long_1.dump │ │ ├── Test_smooth_long_10.dump │ │ ├── Test_smooth_long_11.dump │ │ ├── Test_smooth_long_12.dump │ │ ├── Test_smooth_long_13.dump │ │ ├── Test_smooth_long_14.dump │ │ ├── Test_smooth_long_15.dump │ │ ├── Test_smooth_long_16.dump │ │ ├── Test_smooth_long_2.dump │ │ ├── Test_smooth_long_3.dump │ │ ├── Test_smooth_long_4.dump │ │ ├── Test_smooth_long_5.dump │ │ ├── Test_smooth_long_6.dump │ │ ├── Test_smooth_long_7.dump │ │ ├── Test_smooth_long_8.dump │ │ ├── Test_smooth_long_9.dump │ │ ├── Test_smooth_long_scrolloff_1.dump │ │ ├── Test_smooth_long_scrolloff_2.dump │ │ ├── Test_smooth_long_scrolloff_3.dump │ │ ├── Test_smooth_long_scrolloff_4.dump │ │ ├── Test_smooth_long_scrolloff_5.dump │ │ ├── Test_smooth_long_scrolloff_6.dump │ │ ├── Test_smooth_long_scrolloff_7.dump │ │ ├── Test_smooth_long_scrolloff_ru_1.dump │ │ ├── Test_smooth_long_scrolloff_ru_2.dump │ │ ├── Test_smooth_long_scrolloff_ru_3.dump │ │ ├── Test_smooth_long_scrolloff_ru_4.dump │ │ ├── Test_smooth_long_scrolloff_ru_5.dump │ │ ├── Test_smooth_long_scrolloff_ru_6.dump │ │ ├── Test_smooth_long_scrolloff_ru_7.dump │ │ ├── Test_smooth_long_showbreak_1.dump │ │ ├── Test_smooth_long_showbreak_2.dump │ │ ├── Test_smooth_marker_over_double_width_1.dump │ │ ├── Test_smooth_marker_over_double_width_2.dump │ │ ├── Test_smooth_multi_skipcol_1.dump │ │ ├── Test_smooth_multi_skipcol_2.dump │ │ ├── Test_smooth_multi_skipcol_3.dump │ │ ├── Test_smooth_number_1.dump │ │ ├── Test_smooth_number_10.dump │ │ ├── Test_smooth_number_2.dump │ │ ├── Test_smooth_number_3.dump │ │ ├── Test_smooth_number_4.dump │ │ ├── Test_smooth_number_5.dump │ │ ├── Test_smooth_number_6.dump │ │ ├── Test_smooth_number_7.dump │ │ ├── Test_smooth_number_8.dump │ │ ├── Test_smooth_number_9.dump │ │ ├── Test_smooth_one_long_1.dump │ │ ├── Test_smooth_one_long_2.dump │ │ ├── Test_smooth_wrap_1.dump │ │ ├── Test_smooth_wrap_2.dump │ │ ├── Test_smooth_wrap_3.dump │ │ ├── Test_smooth_wrap_4.dump │ │ ├── Test_smooth_wrap_5.dump │ │ ├── Test_smooth_wrap_6.dump │ │ ├── Test_smoothscroll_1.dump │ │ ├── Test_smoothscroll_2.dump │ │ ├── Test_smoothscroll_3.dump │ │ ├── Test_smoothscroll_4.dump │ │ ├── Test_smoothscroll_5.dump │ │ ├── Test_smoothscroll_6.dump │ │ ├── Test_smoothscroll_7.dump │ │ ├── Test_smoothscroll_8.dump │ │ ├── Test_smoothscroll_cursor_ru_top.dump │ │ ├── Test_smoothscroll_cursor_top.dump │ │ ├── Test_smoothscroll_in_qf_window_1.dump │ │ ├── Test_smoothscroll_in_qf_window_2.dump │ │ ├── Test_smoothscroll_in_qf_window_3.dump │ │ ├── Test_smoothscroll_in_qf_window_4.dump │ │ ├── Test_smoothscroll_in_qf_window_5.dump │ │ ├── Test_smoothscroll_in_qf_window_ru_1.dump │ │ ├── Test_smoothscroll_in_qf_window_ru_2.dump │ │ ├── Test_smoothscroll_in_qf_window_ru_3.dump │ │ ├── Test_smoothscroll_in_qf_window_ru_4.dump │ │ ├── Test_smoothscroll_in_qf_window_ru_5.dump │ │ ├── Test_smoothscroll_insert_bottom.dump │ │ ├── Test_smoothscroll_insert_bottom_ruler.dump │ │ ├── Test_smoothscroll_multi_1.dump │ │ ├── Test_smoothscroll_zero_1.dump │ │ ├── Test_smoothscroll_zero_2.dump │ │ ├── Test_smoothscroll_zero_bot.dump │ │ ├── Test_smoothscroll_zero_bot_ruler.dump │ │ ├── Test_spell_1.dump │ │ ├── Test_spell_10.dump │ │ ├── Test_spell_2.dump │ │ ├── Test_spell_3.dump │ │ ├── Test_spell_4.dump │ │ ├── Test_spell_5.dump │ │ ├── Test_spell_6.dump │ │ ├── Test_spell_7.dump │ │ ├── Test_spell_8.dump │ │ ├── Test_spell_9.dump │ │ ├── Test_spell_compatible_1.dump │ │ ├── Test_spell_compatible_2.dump │ │ ├── Test_splitkeep_callback_1.dump │ │ ├── Test_splitkeep_callback_2.dump │ │ ├── Test_splitkeep_callback_3.dump │ │ ├── Test_splitkeep_callback_4.dump │ │ ├── Test_splitkeep_cursor_1.dump │ │ ├── Test_splitkeep_cursor_2.dump │ │ ├── Test_splitkeep_cursor_3.dump │ │ ├── Test_splitkeep_fold_1.dump │ │ ├── Test_splitkeep_fold_2.dump │ │ ├── Test_splitkeep_fold_3.dump │ │ ├── Test_splitkeep_fold_4.dump │ │ ├── Test_splitkeep_line_1.dump │ │ ├── Test_splitkeep_line_2.dump │ │ ├── Test_splitkeep_skipcol_1.dump │ │ ├── Test_splitkeep_status_1.dump │ │ ├── Test_start_with_tabs.dump │ │ ├── Test_statusline_1.dump │ │ ├── Test_statusline_hl.dump │ │ ├── Test_statusline_mode_1.dump │ │ ├── Test_statusline_mode_2.dump │ │ ├── Test_statusline_showcmd_1.dump │ │ ├── Test_statusline_showcmd_2.dump │ │ ├── Test_statusline_showcmd_3.dump │ │ ├── Test_statusline_showcmd_4.dump │ │ ├── Test_statusline_showcmd_5.dump │ │ ├── Test_statusline_stl_1.dump │ │ ├── Test_sub_highlight_zer_match_1.dump │ │ ├── Test_switchwin_clear_pum_01.dump │ │ ├── Test_switchwin_clear_pum_02.dump │ │ ├── Test_syntax_c_01.dump │ │ ├── Test_tabline_showcmd_1.dump │ │ ├── Test_tabline_showcmd_2.dump │ │ ├── Test_tabline_showcmd_3.dump │ │ ├── Test_tabline_showcmd_4.dump │ │ ├── Test_tabline_showcmd_5.dump │ │ ├── Test_tabnext_clear_pum_01.dump │ │ ├── Test_tabnext_clear_pum_02.dump │ │ ├── Test_tabpage_cmdheight.dump │ │ ├── Test_tabpanel_commandline_0.dump │ │ ├── Test_tabpanel_commandline_1.dump │ │ ├── Test_tabpanel_dont_overflow_into_tabpanel_0.dump │ │ ├── Test_tabpanel_drawing_00.dump │ │ ├── Test_tabpanel_drawing_01.dump │ │ ├── Test_tabpanel_drawing_02.dump │ │ ├── Test_tabpanel_drawing_03.dump │ │ ├── Test_tabpanel_drawing_04.dump │ │ ├── Test_tabpanel_drawing_05.dump │ │ ├── Test_tabpanel_drawing_06.dump │ │ ├── Test_tabpanel_drawing_07.dump │ │ ├── Test_tabpanel_drawing_08.dump │ │ ├── Test_tabpanel_drawing_2_0.dump │ │ ├── Test_tabpanel_drawing_2_1.dump │ │ ├── Test_tabpanel_drawing_fill_tailing_0.dump │ │ ├── Test_tabpanel_drawing_pum_0.dump │ │ ├── Test_tabpanel_drawing_pum_1.dump │ │ ├── Test_tabpanel_drawing_pum_2.dump │ │ ├── Test_tabpanel_drawing_scrolling_0.dump │ │ ├── Test_tabpanel_drawing_scrolling_1.dump │ │ ├── Test_tabpanel_drawing_scrolling_2.dump │ │ ├── Test_tabpanel_drawing_scrolling_3.dump │ │ ├── Test_tabpanel_drawing_with_popupwin_0.dump │ │ ├── Test_tabpanel_drawing_with_popupwin_1.dump │ │ ├── Test_tabpanel_drawing_with_popupwin_2.dump │ │ ├── Test_tabpanel_equalalways_0.dump │ │ ├── Test_tabpanel_equalalways_1.dump │ │ ├── Test_tabpanel_equalalways_2.dump │ │ ├── Test_tabpanel_equalalways_3.dump │ │ ├── Test_tabpanel_eval_tabpanel_statusline_tabline_0.dump │ │ ├── Test_tabpanel_eval_tabpanel_statusline_tabline_1.dump │ │ ├── Test_tabpanel_eval_tabpanel_with_linebreaks_0.dump │ │ ├── Test_tabpanel_eval_tabpanel_with_linebreaks_1.dump │ │ ├── Test_tabpanel_many_tabpages_0.dump │ │ ├── Test_tabpanel_many_tabpages_1.dump │ │ ├── Test_tabpanel_many_tabpages_2.dump │ │ ├── Test_tabpanel_many_tabpages_3.dump │ │ ├── Test_tabpanel_many_tabpages_4.dump │ │ ├── Test_tabpanel_noeval_tabpanel_statusline_tabline_0.dump │ │ ├── Test_tabpanel_noeval_tabpanel_statusline_tabline_1.dump │ │ ├── Test_tabpanel_only_0.dump │ │ ├── Test_tabpanel_only_1.dump │ │ ├── Test_tabpanel_quitall_0.dump │ │ ├── Test_tabpanel_ruler_0.dump │ │ ├── Test_tabpanel_stpl_eq_0_0.dump │ │ ├── Test_tabpanel_stpl_eq_0_1.dump │ │ ├── Test_tabpanel_stpl_eq_0_2.dump │ │ ├── Test_tabpanel_stpl_eq_0_3.dump │ │ ├── Test_tabpanel_stpl_eq_1_0.dump │ │ ├── Test_tabpanel_stpl_eq_1_1.dump │ │ ├── Test_tabpanel_stpl_eq_1_2.dump │ │ ├── Test_tabpanel_stpl_eq_1_3.dump │ │ ├── Test_tabpanel_stpl_eq_1_4.dump │ │ ├── Test_tabpanel_tabline_and_tabpanel_0.dump │ │ ├── Test_tabpanel_vert_is_multibytes_left_0.dump │ │ ├── Test_tabpanel_vert_is_multibytes_left_1.dump │ │ ├── Test_tabpanel_vert_is_multibytes_left_2.dump │ │ ├── Test_tabpanel_vert_is_multibytes_left_3.dump │ │ ├── Test_tabpanel_vert_is_multibytes_right_0.dump │ │ ├── Test_tabpanel_vert_is_multibytes_right_1.dump │ │ ├── Test_tabpanel_vert_is_multibytes_right_2.dump │ │ ├── Test_tabpanel_vert_is_multibytes_right_3.dump │ │ ├── Test_tabpanel_visual_0.dump │ │ ├── Test_tabpanel_visual_1.dump │ │ ├── Test_tabpanel_visual_2.dump │ │ ├── Test_tabpanel_with_cmdline_no_pum_0.dump │ │ ├── Test_tabpanel_with_cmdline_no_pum_1.dump │ │ ├── Test_tabpanel_with_cmdline_pum_0.dump │ │ ├── Test_tabpanel_with_cmdline_pum_1.dump │ │ ├── Test_tabpanel_with_msg_scrolled_0.dump │ │ ├── Test_tabpanel_with_msg_scrolled_1.dump │ │ ├── Test_tabpanel_with_vsplit_0.dump │ │ ├── Test_tabpanel_with_vsplit_1.dump │ │ ├── Test_tabpanel_with_vsplit_2.dump │ │ ├── Test_tabpanel_with_vsplit_3.dump │ │ ├── Test_tabpanel_with_vsplit_4.dump │ │ ├── Test_tabpanel_with_vsplit_5.dump │ │ ├── Test_tenc_euc_jp_01.dump │ │ ├── Test_term_popup_bufline.dump │ │ ├── Test_termdebug_evaluate_in_popup_01.dump │ │ ├── Test_termdebug_evaluate_in_popup_01.vim │ │ ├── Test_termdebug_evaluate_in_popup_02.dump │ │ ├── Test_termdebug_evaluate_in_popup_02.vim │ │ ├── Test_terminal_all_ansi_colors.dump │ │ ├── Test_terminal_ansi_reset_tgc.dump │ │ ├── Test_terminal_color_MyTermCol.dump │ │ ├── Test_terminal_color_MyTermCol_over_Terminal.dump │ │ ├── Test_terminal_color_MyWinCol.dump │ │ ├── Test_terminal_color_MyWinCol_over_group.dump │ │ ├── Test_terminal_color_Terminal.dump │ │ ├── Test_terminal_color_gui_MyTermCol.dump │ │ ├── Test_terminal_color_gui_MyWinCol.dump │ │ ├── Test_terminal_color_gui_Terminal.dump │ │ ├── Test_terminal_color_gui_transp_MyTermCol.dump │ │ ├── Test_terminal_color_gui_transp_MyWinCol.dump │ │ ├── Test_terminal_color_gui_transp_Terminal.dump │ │ ├── Test_terminal_color_transp_MyTermCol.dump │ │ ├── Test_terminal_color_transp_MyWinCol.dump │ │ ├── Test_terminal_color_transp_Terminal.dump │ │ ├── Test_terminal_combining.dump │ │ ├── Test_terminal_dumpload.dump │ │ ├── Test_terminal_empty_listchars.dump │ │ ├── Test_terminal_empty_listchars2.dump │ │ ├── Test_terminal_focus_1.dump │ │ ├── Test_terminal_focus_2.dump │ │ ├── Test_terminal_focus_3.dump │ │ ├── Test_terminal_from_cmd.dump │ │ ├── Test_terminal_normal_1.dump │ │ ├── Test_terminal_normal_2.dump │ │ ├── Test_terminal_normal_3.dump │ │ ├── Test_terminal_popup_1.dump │ │ ├── Test_terminal_popup_2.dump │ │ ├── Test_terminal_popup_3.dump │ │ ├── Test_terminal_popup_4.dump │ │ ├── Test_terminal_popup_5.dump │ │ ├── Test_terminal_popup_6.dump │ │ ├── Test_terminal_popup_7.dump │ │ ├── Test_terminal_popup_8.dump │ │ ├── Test_terminal_popup_MyPopupHlCol.dump │ │ ├── Test_terminal_popup_MyTermCol.dump │ │ ├── Test_terminal_popup_MyTermCol_over_Terminal.dump │ │ ├── Test_terminal_popup_MyWinCol.dump │ │ ├── Test_terminal_popup_MyWinCol_over_group.dump │ │ ├── Test_terminal_popup_Terminal.dump │ │ ├── Test_terminal_popup_gui_MyPopupHlCol.dump │ │ ├── Test_terminal_popup_gui_MyTermCol.dump │ │ ├── Test_terminal_popup_gui_MyWinCol.dump │ │ ├── Test_terminal_popup_gui_Terminal.dump │ │ ├── Test_terminal_popup_gui_transp_MyPopupHlCol.dump │ │ ├── Test_terminal_popup_gui_transp_MyTermCol.dump │ │ ├── Test_terminal_popup_gui_transp_MyWinCol.dump │ │ ├── Test_terminal_popup_gui_transp_Terminal.dump │ │ ├── Test_terminal_popup_m1.dump │ │ ├── Test_terminal_popup_transp_MyPopupHlCol.dump │ │ ├── Test_terminal_popup_transp_MyTermCol.dump │ │ ├── Test_terminal_popup_transp_MyWinCol.dump │ │ ├── Test_terminal_popup_transp_Terminal.dump │ │ ├── Test_terminal_scrollback_1.dump │ │ ├── Test_terminal_scrollback_2.dump │ │ ├── Test_terminal_scrollback_3.dump │ │ ├── Test_terminal_wincolor_split_MyWinCol.dump │ │ ├── Test_terminal_wincolor_split_MyWinCol2.dump │ │ ├── Test_text_after_nowrap_1.dump │ │ ├── Test_text_after_nowrap_2.dump │ │ ├── Test_text_after_nowrap_3.dump │ │ ├── Test_text_after_nowrap_4.dump │ │ ├── Test_text_after_nowrap_5.dump │ │ ├── Test_text_after_nowrap_list_1.dump │ │ ├── Test_text_after_wrap_showbreak_01.dump │ │ ├── Test_text_after_wrap_showbreak_02.dump │ │ ├── Test_text_after_wrap_showbreak_03.dump │ │ ├── Test_text_after_wrap_showbreak_04.dump │ │ ├── Test_text_after_wrap_showbreak_05.dump │ │ ├── Test_text_after_wrap_showbreak_06.dump │ │ ├── Test_text_after_wrap_showbreak_07.dump │ │ ├── Test_text_after_wrap_showbreak_08.dump │ │ ├── Test_text_after_wrap_showbreak_09.dump │ │ ├── Test_text_after_wrap_showbreak_10.dump │ │ ├── Test_text_after_wrap_showbreak_11.dump │ │ ├── Test_text_after_wrap_showbreak_12.dump │ │ ├── Test_text_below_nowrap_1.dump │ │ ├── Test_text_eol_long_wrap_sms_01.dump │ │ ├── Test_text_eol_long_wrap_sms_02.dump │ │ ├── Test_text_eol_long_wrap_sms_03.dump │ │ ├── Test_text_eol_long_wrap_sms_04.dump │ │ ├── Test_text_eol_long_wrap_sms_05.dump │ │ ├── Test_text_eol_long_wrap_sms_06.dump │ │ ├── Test_text_eol_long_wrap_sms_07.dump │ │ ├── Test_text_eol_long_wrap_sms_08.dump │ │ ├── Test_text_eol_long_wrap_sms_09.dump │ │ ├── Test_text_eol_long_wrap_sms_10.dump │ │ ├── Test_text_eol_long_wrap_sms_11.dump │ │ ├── Test_text_eol_long_wrap_sms_12.dump │ │ ├── Test_text_eol_long_wrap_sms_13.dump │ │ ├── Test_text_eol_long_wrap_sms_14.dump │ │ ├── Test_text_eol_long_wrap_sms_15.dump │ │ ├── Test_text_eol_long_wrap_sms_16.dump │ │ ├── Test_text_eol_long_wrap_sms_17.dump │ │ ├── Test_text_eol_long_wrap_sms_18.dump │ │ ├── Test_text_eol_long_wrap_sms_19.dump │ │ ├── Test_text_eol_long_wrap_sms_20.dump │ │ ├── Test_text_eol_long_wrap_sms_21.dump │ │ ├── Test_text_eol_long_wrap_sms_22.dump │ │ ├── Test_textprop_01.dump │ │ ├── Test_textprop_hl_override_1.dump │ │ ├── Test_textprop_hl_override_2.dump │ │ ├── Test_textprop_nesting.dump │ │ ├── Test_textprop_nowrap_01.dump │ │ ├── Test_textprop_nowrap_02.dump │ │ ├── Test_textprop_syn_1.dump │ │ ├── Test_textprop_tab.dump │ │ ├── Test_textprop_vis_01.dump │ │ ├── Test_textprop_vis_02.dump │ │ ├── Test_tselect_1.dump │ │ ├── Test_undo_after_write_1.dump │ │ ├── Test_undo_after_write_1.vim │ │ ├── Test_undo_after_write_2.dump │ │ ├── Test_undo_after_write_2.vim │ │ ├── Test_update_screen_wildtrigger_1.dump │ │ ├── Test_verbose_option_1.dump │ │ ├── Test_verbose_system_1.dump │ │ ├── Test_verbose_system_1.vim │ │ ├── Test_verbose_system_2.dump │ │ ├── Test_verbose_system_2.vim │ │ ├── Test_vim9_closure_fails.dump │ │ ├── Test_vim9_no_redraw.dump │ │ ├── Test_vim9_reject_declaration_1.dump │ │ ├── Test_vim9_reject_declaration_2.dump │ │ ├── Test_vim9_silent_echo.dump │ │ ├── Test_virtual_text_in_popup_highlight_1.dump │ │ ├── Test_virtual_text_overlap_with_highlight_1.dump │ │ ├── Test_visual_block_with_virtualedit.dump │ │ ├── Test_visual_block_with_virtualedit2.dump │ │ ├── Test_visual_ends_before_showbreak.dump │ │ ├── Test_visual_hl_with_showbreak.dump │ │ ├── Test_visual_sbr_1.dump │ │ ├── Test_visual_starts_before_skipcol_1.dump │ │ ├── Test_visual_starts_before_skipcol_2.dump │ │ ├── Test_visual_starts_before_skipcol_3.dump │ │ ├── Test_visual_starts_before_skipcol_4.dump │ │ ├── Test_wildmenu_1.dump │ │ ├── Test_wildmenu_2.dump │ │ ├── Test_wildmenu_3.dump │ │ ├── Test_wildmenu_4.dump │ │ ├── Test_wildmenu_5.dump │ │ ├── Test_wildmenu_6.dump │ │ ├── Test_wildmenu_input_func_1.dump │ │ ├── Test_wildmenu_input_func_2.dump │ │ ├── Test_wildmenu_input_func_3.dump │ │ ├── Test_wildmenu_input_func_4.dump │ │ ├── Test_wildmenu_input_func_5.dump │ │ ├── Test_wildmenu_input_func_6.dump │ │ ├── Test_wildmenu_input_func_7.dump │ │ ├── Test_wildmenu_input_func_8.dump │ │ ├── Test_wildmenu_pum_01.dump │ │ ├── Test_wildmenu_pum_02.dump │ │ ├── Test_wildmenu_pum_03.dump │ │ ├── Test_wildmenu_pum_04.dump │ │ ├── Test_wildmenu_pum_05.dump │ │ ├── Test_wildmenu_pum_06.dump │ │ ├── Test_wildmenu_pum_07.dump │ │ ├── Test_wildmenu_pum_08.dump │ │ ├── Test_wildmenu_pum_09.dump │ │ ├── Test_wildmenu_pum_10.dump │ │ ├── Test_wildmenu_pum_11.dump │ │ ├── Test_wildmenu_pum_12.dump │ │ ├── Test_wildmenu_pum_13.dump │ │ ├── Test_wildmenu_pum_14.dump │ │ ├── Test_wildmenu_pum_15.dump │ │ ├── Test_wildmenu_pum_16.dump │ │ ├── Test_wildmenu_pum_17.dump │ │ ├── Test_wildmenu_pum_18.dump │ │ ├── Test_wildmenu_pum_19.dump │ │ ├── Test_wildmenu_pum_20.dump │ │ ├── Test_wildmenu_pum_21.dump │ │ ├── Test_wildmenu_pum_22.dump │ │ ├── Test_wildmenu_pum_23.dump │ │ ├── Test_wildmenu_pum_24.dump │ │ ├── Test_wildmenu_pum_25.dump │ │ ├── Test_wildmenu_pum_26.dump │ │ ├── Test_wildmenu_pum_27.dump │ │ ├── Test_wildmenu_pum_28.dump │ │ ├── Test_wildmenu_pum_29.dump │ │ ├── Test_wildmenu_pum_30.dump │ │ ├── Test_wildmenu_pum_31.dump │ │ ├── Test_wildmenu_pum_32.dump │ │ ├── Test_wildmenu_pum_33.dump │ │ ├── Test_wildmenu_pum_34.dump │ │ ├── Test_wildmenu_pum_35.dump │ │ ├── Test_wildmenu_pum_36.dump │ │ ├── Test_wildmenu_pum_37.dump │ │ ├── Test_wildmenu_pum_38.dump │ │ ├── Test_wildmenu_pum_39.dump │ │ ├── Test_wildmenu_pum_40.dump │ │ ├── Test_wildmenu_pum_41.dump │ │ ├── Test_wildmenu_pum_42.dump │ │ ├── Test_wildmenu_pum_43.dump │ │ ├── Test_wildmenu_pum_44.dump │ │ ├── Test_wildmenu_pum_45.dump │ │ ├── Test_wildmenu_pum_46.dump │ │ ├── Test_wildmenu_pum_47.dump │ │ ├── Test_wildmenu_pum_48.dump │ │ ├── Test_wildmenu_pum_49.dump │ │ ├── Test_wildmenu_pum_50.dump │ │ ├── Test_wildmenu_pum_51.dump │ │ ├── Test_wildmenu_pum_52.dump │ │ ├── Test_wildmenu_pum_53.dump │ │ ├── Test_wildmenu_pum_55.dump │ │ ├── Test_wildmenu_pum_56.dump │ │ ├── Test_wildmenu_pum_57.dump │ │ ├── Test_wildmenu_pum_58.dump │ │ ├── Test_wildmenu_pum_59.dump │ │ ├── Test_wildmenu_pum_60.dump │ │ ├── Test_wildmenu_pum_61.dump │ │ ├── Test_wildmenu_pum_62.dump │ │ ├── Test_wildmenu_pum_63.dump │ │ ├── Test_wildmenu_pum_64.dump │ │ ├── Test_wildmenu_pum_65.dump │ │ ├── Test_wildmenu_pum_hl_match_1.dump │ │ ├── Test_wildmenu_pum_hl_match_2.dump │ │ ├── Test_wildmenu_pum_hl_match_3.dump │ │ ├── Test_wildmenu_pum_hl_match_4.dump │ │ ├── Test_wildmenu_pum_hl_match_5.dump │ │ ├── Test_wildmenu_pum_hl_match_6.dump │ │ ├── Test_wildmenu_pum_hl_match_find_1.dump │ │ ├── Test_wildmenu_pum_hl_match_find_2.dump │ │ ├── Test_wildmenu_pum_hl_match_list_1.dump │ │ ├── Test_wildmenu_pum_hl_match_list_2.dump │ │ ├── Test_wildmenu_pum_hl_match_nonf.dump │ │ ├── Test_wildmenu_pum_odd_wildchar_1.dump │ │ ├── Test_wildmenu_pum_odd_wildchar_2.dump │ │ ├── Test_wildmenu_pum_odd_wildchar_3.dump │ │ ├── Test_wildmenu_pum_rl.dump │ │ ├── Test_wildmenu_pum_term_01.dump │ │ ├── Test_wildmenu_with_pum_foldexpr_1.dump │ │ ├── Test_wildmenu_with_pum_foldexpr_2.dump │ │ ├── Test_wildtrigger_update_screen_1.dump │ │ ├── Test_wildtrigger_update_screen_2.dump │ │ ├── Test_wildtrigger_update_screen_3.dump │ │ ├── Test_wildtrigger_update_screen_4.dump │ │ ├── Test_win_gotoid_1.dump │ │ ├── Test_win_gotoid_2.dump │ │ ├── Test_win_gotoid_3.dump │ │ ├── Test_winbar_not_visible.dump │ │ ├── Test_winbar_not_visible_custom_statusline.dump │ │ ├── Test_wincolor_01.dump │ │ ├── Test_wincolor_lcs.dump │ │ ├── Test_winfixsize_vsep_statusline_1.dump │ │ ├── Test_winfixsize_vsep_statusline_2.dump │ │ ├── Test_winline_rnu.dump │ │ ├── Test_winscrolled_not_when_defined_1.dump │ │ ├── Test_winscrolled_not_when_defined_2.dump │ │ ├── Test_winscrolled_once_only_1.dump │ │ ├── Test_xxd_color_0.dump │ │ ├── Test_xxd_color_0.vim │ │ ├── Test_xxd_color_1.dump │ │ └── Test_xxd_color_1.vim │ ├── keycode_check.json │ ├── keycode_check.vim │ ├── lsan-suppress.txt │ ├── python2 │ │ └── module.py │ ├── python3 │ │ └── module.py │ ├── python_after │ │ └── after.py │ ├── python_before │ │ ├── before.py │ │ ├── before_1.py │ │ └── before_2.py │ ├── pythonx │ │ ├── failing.py │ │ ├── failing_import.py │ │ ├── module.py │ │ ├── modulex.py │ │ └── topmodule │ │ │ ├── __init__.py │ │ │ └── submodule │ │ │ ├── __init__.py │ │ │ └── subsubmodule │ │ │ ├── __init__.py │ │ │ └── subsubsubmodule.py │ ├── pyxfile │ │ ├── py2_magic.py │ │ ├── py2_shebang.py │ │ ├── py3_magic.py │ │ ├── py3_shebang.py │ │ └── pyx.py │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── Makefile │ │ │ ├── __PACKAGE__.mo │ │ │ └── __PACKAGE__.po │ ├── runtest.vim │ ├── samples │ │ ├── Test_tohtml_basic.c.html │ │ ├── Test_tohtml_basic_no_css.c.html │ │ ├── box.txt │ │ ├── crypt_sodium_invalid.txt │ │ ├── evil.tar │ │ ├── evil.zip │ │ ├── matchparen.vim │ │ ├── poc.zip │ │ ├── quickfix.txt │ │ ├── re.freeze.txt │ │ ├── sample.tar │ │ ├── test.zip │ │ ├── test000 │ │ ├── test_undo.txt │ │ ├── test_undo.txt.undo │ │ └── testa.zip │ ├── sautest │ │ └── autoload │ │ │ ├── Test104.vim │ │ │ ├── auto9.vim │ │ │ ├── foo.vim │ │ │ ├── footest.vim │ │ │ ├── globone.vim │ │ │ ├── globtwo.vim │ │ │ └── sourced.vim │ ├── silent.wav │ ├── test10.in │ ├── test10.ok │ ├── test20.in │ ├── test20.ok │ ├── test21.in │ ├── test21.ok │ ├── test22.in │ ├── test22.ok │ ├── test23.in │ ├── test23.ok │ ├── test24.in │ ├── test24.ok │ ├── test25.in │ ├── test25.ok │ ├── test26.in │ ├── test26.ok │ ├── test27.in │ ├── test27.ok │ ├── test28.in │ ├── test28.ok │ ├── test29.in │ ├── test29.ok │ ├── test77a.com │ ├── test77a.in │ ├── test77a.ok │ ├── test_alot.vim │ ├── test_alot_latin.vim │ ├── test_alot_utf8.vim │ ├── test_arabic.vim │ ├── test_arglist.vim │ ├── test_assert.vim │ ├── test_autochdir.vim │ ├── test_autocmd.vim │ ├── test_autoload.vim │ ├── test_backspace_opt.vim │ ├── test_backup.vim │ ├── test_balloon.vim │ ├── test_balloon_gui.vim │ ├── test_behave.vim │ ├── test_bench_regexp.vim │ ├── test_blob.vim │ ├── test_blockedit.vim │ ├── test_breakindent.vim │ ├── test_buffer.vim │ ├── test_bufline.vim │ ├── test_bufwintabinfo.vim │ ├── test_cd.vim │ ├── test_cdo.vim │ ├── test_changedtick.vim │ ├── test_changelist.vim │ ├── test_channel.py │ ├── test_channel.vim │ ├── test_channel_6.py │ ├── test_channel_lsp.py │ ├── test_channel_pipe.py │ ├── test_channel_unix.py │ ├── test_channel_write.py │ ├── test_charsearch.vim │ ├── test_charsearch_utf8.vim │ ├── test_checkpath.vim │ ├── test_cindent.vim │ ├── test_cjk_linebreak.vim │ ├── test_clientserver.vim │ ├── test_clipmethod.vim │ ├── test_close_count.vim │ ├── test_cmd_lists.vim │ ├── test_cmdline.vim │ ├── test_cmdmods.vim │ ├── test_cmdwin.vim │ ├── test_codestyle.vim │ ├── test_command_count.vim │ ├── test_comments.vim │ ├── test_comparators.vim │ ├── test_compiler.vim │ ├── test_conceal.vim │ ├── test_const.vim │ ├── test_cpoptions.vim │ ├── test_crash.vim │ ├── test_crypt.vim │ ├── test_cscope.vim │ ├── test_cursor_func.vim │ ├── test_cursorline.vim │ ├── test_curswant.vim │ ├── test_debugger.vim │ ├── test_delete.vim │ ├── test_diffmode.vim │ ├── test_digraph.vim │ ├── test_display.vim │ ├── test_edit.vim │ ├── test_environ.vim │ ├── test_erasebackword.vim │ ├── test_escaped_glob.vim │ ├── test_eval_stuff.vim │ ├── test_ex_equal.vim │ ├── test_ex_mode.vim │ ├── test_ex_undo.vim │ ├── test_ex_z.vim │ ├── test_excmd.vim │ ├── test_exec_while_if.vim │ ├── test_execute_func.vim │ ├── test_exists.vim │ ├── test_exists_autocmd.vim │ ├── test_exit.vim │ ├── test_expand.vim │ ├── test_expand_dllpath.vim │ ├── test_expand_func.vim │ ├── test_expr.vim │ ├── test_expr_utf8.vim │ ├── test_file_perm.vim │ ├── test_file_size.vim │ ├── test_filechanged.vim │ ├── test_filecopy.vim │ ├── test_fileformat.vim │ ├── test_filetype.vim │ ├── test_filter_cmd.vim │ ├── test_filter_map.vim │ ├── test_find_complete.vim │ ├── test_findfile.vim │ ├── test_fixeol.vim │ ├── test_flatten.vim │ ├── test_float_func.vim │ ├── test_fnameescape.vim │ ├── test_fnamemodify.vim │ ├── test_fold.vim │ ├── test_format.vim │ ├── test_function_lists.vim │ ├── test_functions.vim │ ├── test_ga.vim │ ├── test_getcwd.vim │ ├── test_gettext.vim │ ├── test_gettext_cp1251.vim │ ├── test_gettext_make.vim │ ├── test_gettext_makefile_in1.vim │ ├── test_gettext_makefile_in2.vim │ ├── test_gettext_makefile_in3.vim │ ├── test_gettext_makefile_in4.vim │ ├── test_gettext_utf8.vim │ ├── test_getvar.vim │ ├── test_gf.vim │ ├── test_glob2regpat.vim │ ├── test_global.vim │ ├── test_gn.vim │ ├── test_goto.vim │ ├── test_gui.vim │ ├── test_gui_init.vim │ ├── test_hardcopy.vim │ ├── test_help.vim │ ├── test_help_tagjump.vim │ ├── test_hide.vim │ ├── test_highlight.vim │ ├── test_history.vim │ ├── test_hlsearch.vim │ ├── test_iminsert.vim │ ├── test_increment.vim │ ├── test_increment_dbcs.vim │ ├── test_indent.vim │ ├── test_input.vim │ ├── test_ins_complete.vim │ ├── test_ins_complete_no_halt.vim │ ├── test_interrupt.vim │ ├── test_job_fails.vim │ ├── test_join.vim │ ├── test_json.vim │ ├── test_jumplist.vim │ ├── test_lambda.vim │ ├── test_langmap.vim │ ├── test_largefile.vim │ ├── test_let.vim │ ├── test_lineending.vim │ ├── test_lispindent.vim │ ├── test_listchars.vim │ ├── test_listdict.vim │ ├── test_listener.vim │ ├── test_listlbr.vim │ ├── test_listlbr_utf8.vim │ ├── test_lua.vim │ ├── test_macvim.vim │ ├── test_makeencoding.py │ ├── test_makeencoding.vim │ ├── test_map_functions.vim │ ├── test_mapping.vim │ ├── test_marks.vim │ ├── test_match.vim │ ├── test_matchadd_conceal.vim │ ├── test_matchadd_conceal_utf8.vim │ ├── test_matchfuzzy.vim │ ├── test_memory_usage.vim │ ├── test_menu.vim │ ├── test_messages.vim │ ├── test_method.vim │ ├── test_mksession.vim │ ├── test_mksession_utf8.vim │ ├── test_modeless.vim │ ├── test_modeline.vim │ ├── test_move.vim │ ├── test_mswin_event.vim │ ├── test_mzscheme.vim │ ├── test_nested_function.vim │ ├── test_netbeans.py │ ├── test_netbeans.vim │ ├── test_normal.vim │ ├── test_number.vim │ ├── test_options.vim │ ├── test_options_all.vim │ ├── test_packadd.vim │ ├── test_partial.vim │ ├── test_paste.vim │ ├── test_perl.vim │ ├── test_plugin_comment.vim │ ├── test_plugin_glvs.vim │ ├── test_plugin_helptoc.vim │ ├── test_plugin_man.vim │ ├── test_plugin_matchparen.vim │ ├── test_plugin_netrw.vim │ ├── test_plugin_tar.vim │ ├── test_plugin_termdebug.vim │ ├── test_plugin_tohtml.vim │ ├── test_plugin_tutor.vim │ ├── test_plugin_zip.vim │ ├── test_plus_arg_edit.vim │ ├── test_popup.vim │ ├── test_popupwin.vim │ ├── test_popupwin_textprop.vim │ ├── test_preview.vim │ ├── test_profile.vim │ ├── test_prompt_buffer.vim │ ├── test_put.vim │ ├── test_python2.vim │ ├── test_python3.vim │ ├── test_pyx2.vim │ ├── test_pyx3.vim │ ├── test_quickfix.vim │ ├── test_quotestar.vim │ ├── test_random.vim │ ├── test_recover.vim │ ├── test_regex_char_classes.vim │ ├── test_regexp_latin.vim │ ├── test_regexp_utf8.vim │ ├── test_registers.vim │ ├── test_reltime.vim │ ├── test_remote.vim │ ├── test_rename.vim │ ├── test_restricted.vim │ ├── test_retab.vim │ ├── test_ruby.vim │ ├── test_scriptnames.vim │ ├── test_scroll_opt.vim │ ├── test_scrollbind.vim │ ├── test_search.vim │ ├── test_search_stat.vim │ ├── test_searchpos.vim │ ├── test_selectmode.vim │ ├── test_set.vim │ ├── test_sha256.vim │ ├── test_shell.vim │ ├── test_shift.vim │ ├── test_short_sleep.py │ ├── test_shortpathname.vim │ ├── test_signals.vim │ ├── test_signs.vim │ ├── test_sleep.vim │ ├── test_smartindent.vim │ ├── test_sort.vim │ ├── test_sound.vim │ ├── test_source.vim │ ├── test_source_utf8.vim │ ├── test_spell.vim │ ├── test_spell_utf8.vim │ ├── test_spellfile.vim │ ├── test_spellrare.vim │ ├── test_stacktrace.vim │ ├── test_startup.vim │ ├── test_startup_utf8.vim │ ├── test_stat.vim │ ├── test_statusline.vim │ ├── test_substitute.vim │ ├── test_suspend.vim │ ├── test_swap.vim │ ├── test_syn_attr.vim │ ├── test_syntax.vim │ ├── test_system.vim │ ├── test_tab.vim │ ├── test_tabline.vim │ ├── test_tabpage.vim │ ├── test_tabpanel.vim │ ├── test_tagcase.vim │ ├── test_tagfunc.vim │ ├── test_tagjump.vim │ ├── test_taglist.vim │ ├── test_tcl.vim │ ├── test_termcodes.vim │ ├── test_termencoding.vim │ ├── test_terminal.vim │ ├── test_terminal2.vim │ ├── test_terminal3.vim │ ├── test_terminal_fail.vim │ ├── test_textformat.vim │ ├── test_textobjects.vim │ ├── test_textprop.vim │ ├── test_timers.vim │ ├── test_true_false.vim │ ├── test_trycatch.vim │ ├── test_tuple.vim │ ├── test_undo.vim │ ├── test_uniq.vim │ ├── test_unlet.vim │ ├── test_user_func.vim │ ├── test_usercommands.vim │ ├── test_utf8.vim │ ├── test_utf8_comparisons.vim │ ├── test_vartabs.vim │ ├── test_version.vim │ ├── test_vim9_assign.vim │ ├── test_vim9_builtin.vim │ ├── test_vim9_class.vim │ ├── test_vim9_cmd.vim │ ├── test_vim9_disassemble.vim │ ├── test_vim9_enum.vim │ ├── test_vim9_expr.vim │ ├── test_vim9_fails.vim │ ├── test_vim9_func.vim │ ├── test_vim9_generics.vim │ ├── test_vim9_import.vim │ ├── test_vim9_python3.vim │ ├── test_vim9_script.vim │ ├── test_vim9_typealias.vim │ ├── test_viminfo.vim │ ├── test_vimscript.vim │ ├── test_virtualedit.vim │ ├── test_visual.vim │ ├── test_wayland.vim │ ├── test_winbar.vim │ ├── test_winbuf_close.vim │ ├── test_window_cmd.vim │ ├── test_window_id.vim │ ├── test_windows_home.vim │ ├── test_winfixbuf.vim │ ├── test_wnext.vim │ ├── test_wordcount.vim │ ├── test_writefile.vim │ ├── test_xdg.vim │ ├── test_xxd.vim │ ├── testluaplugin │ │ └── lua │ │ │ └── testluaplugin │ │ │ ├── hello.lua │ │ │ └── init.lua │ ├── thread_util.py │ ├── util │ │ ├── amiga.vim │ │ ├── check.vim │ │ ├── color_ramp.vim │ │ ├── dos.vim │ │ ├── gen_opt_test.vim │ │ ├── gui_init.vim │ │ ├── gui_preinit.vim │ │ ├── mouse.vim │ │ ├── popupbounce.vim │ │ ├── screendump.vim │ │ ├── script_util.vim │ │ ├── setup.vim │ │ ├── setup_gui.vim │ │ ├── shared.vim │ │ ├── summarize.vim │ │ ├── term_util.vim │ │ ├── unix.vim │ │ ├── view_util.vim │ │ ├── vim9.vim │ │ ├── vms.vim │ │ └── window_manager.vim │ └── viewdumps.vim ├── testing.c ├── textformat.c ├── textobject.c ├── textprop.c ├── time.c ├── toolbar.phi ├── toolcheck ├── tools.bmp ├── tuple.c ├── typemap ├── typval.c ├── ui.c ├── undo.c ├── uninstall.c ├── usercmd.c ├── userfunc.c ├── version.c ├── version.h ├── vim.h ├── vim.ico ├── vim.manifest ├── vim.rc ├── vim.tlb ├── vim9.h ├── vim9class.c ├── vim9cmds.c ├── vim9compile.c ├── vim9execute.c ├── vim9expr.c ├── vim9generics.c ├── vim9instr.c ├── vim9script.c ├── vim9type.c ├── vim_alert.ico ├── vim_error.ico ├── vim_icon.xbm ├── vim_info.ico ├── vim_mask.xbm ├── vim_quest.ico ├── viminfo.c ├── vimrun.c ├── vimtutor ├── wayland.c ├── wayland.h ├── which.sh ├── winclip.c ├── window.c ├── xdiff │ ├── COPYING │ ├── README.txt │ ├── xdiff.h │ ├── xdiffi.c │ ├── xdiffi.h │ ├── xemit.c │ ├── xemit.h │ ├── xhistogram.c │ ├── xinclude.h │ ├── xmacros.h │ ├── xpatience.c │ ├── xprepare.c │ ├── xprepare.h │ ├── xtypes.h │ ├── xutils.c │ └── xutils.h ├── xpm │ ├── COPYRIGHT │ ├── README.txt │ ├── arm64 │ │ └── lib-vc14 │ │ │ └── libXpm.lib │ ├── include │ │ ├── simx.h │ │ └── xpm.h │ ├── x64 │ │ ├── lib-vc14 │ │ │ └── libXpm.lib │ │ └── lib │ │ │ └── libXpm.a │ └── x86 │ │ ├── lib-vc14 │ │ └── libXpm.lib │ │ └── lib │ │ └── libXpm.a ├── xpm_w32.c ├── xpm_w32.h └── xxd │ ├── Make_amiga.mak │ ├── Make_ming.mak │ ├── Make_mvc.mak │ ├── Make_vms.mms │ ├── Makefile │ └── xxd.c ├── tools └── rename.bat ├── uninstall.txt ├── vimtutor.bat └── vimtutor.com /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/MAINTAINERS -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/.hgignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/Filelist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/README.txt -------------------------------------------------------------------------------- /README_VIM9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/README_VIM9.md -------------------------------------------------------------------------------- /README_vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/README_vim.md -------------------------------------------------------------------------------- /READMEdir/Contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/Contents -------------------------------------------------------------------------------- /READMEdir/Vim.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/Vim.info -------------------------------------------------------------------------------- /READMEdir/Xxd.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/Xxd.info -------------------------------------------------------------------------------- /READMEdir/runtime.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/runtime.info -------------------------------------------------------------------------------- /READMEdir/src.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/src.info -------------------------------------------------------------------------------- /READMEdir/vimdir.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/READMEdir/vimdir.info -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ci/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/appveyor.bat -------------------------------------------------------------------------------- /ci/config.mk.clang.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/config.mk.clang.sed -------------------------------------------------------------------------------- /ci/config.mk.gcc.sed: -------------------------------------------------------------------------------- 1 | /^CFLAGS[[:blank:]]*=/s/$/ -Wno-error=maybe-uninitialized/ 2 | -------------------------------------------------------------------------------- /ci/config.mk.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/config.mk.sed -------------------------------------------------------------------------------- /ci/config.mk.xcode.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/config.mk.xcode.sed -------------------------------------------------------------------------------- /ci/ddebs.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/ddebs.list -------------------------------------------------------------------------------- /ci/hlgroups.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/hlgroups.ignore -------------------------------------------------------------------------------- /ci/hlgroups.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/hlgroups.make -------------------------------------------------------------------------------- /ci/if_feat_check.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/if_feat_check.vim -------------------------------------------------------------------------------- /ci/if_ver-1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/if_ver-1.vim -------------------------------------------------------------------------------- /ci/if_ver-2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/if_ver-2.vim -------------------------------------------------------------------------------- /ci/if_ver-cmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/if_ver-cmd.vim -------------------------------------------------------------------------------- /ci/lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/lychee.toml -------------------------------------------------------------------------------- /ci/pinned-pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/pinned-pkgs -------------------------------------------------------------------------------- /ci/remove_snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/remove_snap.sh -------------------------------------------------------------------------------- /ci/setup-xvfb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/setup-xvfb.sh -------------------------------------------------------------------------------- /ci/unlisted.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/ci/unlisted.make -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/configure -------------------------------------------------------------------------------- /lang/LICENSE.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/LICENSE.it.txt -------------------------------------------------------------------------------- /lang/LICENSE.pt_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/LICENSE.pt_br.txt -------------------------------------------------------------------------------- /lang/LICENSE.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/LICENSE.ru.txt -------------------------------------------------------------------------------- /lang/README.it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/README.it.txt -------------------------------------------------------------------------------- /lang/README.pt_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/README.pt_br.txt -------------------------------------------------------------------------------- /lang/README.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/lang/README.ru.txt -------------------------------------------------------------------------------- /nsis/Make_mvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/Make_mvc.mak -------------------------------------------------------------------------------- /nsis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/Makefile -------------------------------------------------------------------------------- /nsis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/README.txt -------------------------------------------------------------------------------- /nsis/auxiliary.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/auxiliary.nsh -------------------------------------------------------------------------------- /nsis/gvim.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/gvim.nsi -------------------------------------------------------------------------------- /nsis/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/icons.zip -------------------------------------------------------------------------------- /nsis/lang/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/README.txt -------------------------------------------------------------------------------- /nsis/lang/danish.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/danish.nsi -------------------------------------------------------------------------------- /nsis/lang/dutch.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/dutch.nsi -------------------------------------------------------------------------------- /nsis/lang/english.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/english.nsi -------------------------------------------------------------------------------- /nsis/lang/german.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/german.nsi -------------------------------------------------------------------------------- /nsis/lang/greek.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/greek.nsi -------------------------------------------------------------------------------- /nsis/lang/italian.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/italian.nsi -------------------------------------------------------------------------------- /nsis/lang/japanese.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/japanese.nsi -------------------------------------------------------------------------------- /nsis/lang/russian.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/russian.nsi -------------------------------------------------------------------------------- /nsis/lang/serbian.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/serbian.nsi -------------------------------------------------------------------------------- /nsis/lang/turkish.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/nsis/lang/turkish.nsi -------------------------------------------------------------------------------- /pixmaps/alert.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/alert.xpm -------------------------------------------------------------------------------- /pixmaps/error.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/error.xpm -------------------------------------------------------------------------------- /pixmaps/generic.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/generic.xpm -------------------------------------------------------------------------------- /pixmaps/info.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/info.xpm -------------------------------------------------------------------------------- /pixmaps/quest.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/quest.xpm -------------------------------------------------------------------------------- /pixmaps/stock_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/stock_icons.h -------------------------------------------------------------------------------- /pixmaps/tb_blank.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_blank.xpm -------------------------------------------------------------------------------- /pixmaps/tb_close.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_close.xpm -------------------------------------------------------------------------------- /pixmaps/tb_copy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_copy.xpm -------------------------------------------------------------------------------- /pixmaps/tb_ctags.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_ctags.xpm -------------------------------------------------------------------------------- /pixmaps/tb_cut.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_cut.xpm -------------------------------------------------------------------------------- /pixmaps/tb_exit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_exit.xpm -------------------------------------------------------------------------------- /pixmaps/tb_find.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_find.xpm -------------------------------------------------------------------------------- /pixmaps/tb_help.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_help.xpm -------------------------------------------------------------------------------- /pixmaps/tb_jump.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_jump.xpm -------------------------------------------------------------------------------- /pixmaps/tb_macro.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_macro.xpm -------------------------------------------------------------------------------- /pixmaps/tb_make.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_make.xpm -------------------------------------------------------------------------------- /pixmaps/tb_new.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_new.xpm -------------------------------------------------------------------------------- /pixmaps/tb_open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_open.xpm -------------------------------------------------------------------------------- /pixmaps/tb_paste.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_paste.xpm -------------------------------------------------------------------------------- /pixmaps/tb_print.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_print.xpm -------------------------------------------------------------------------------- /pixmaps/tb_redo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_redo.xpm -------------------------------------------------------------------------------- /pixmaps/tb_replace.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_replace.xpm -------------------------------------------------------------------------------- /pixmaps/tb_save.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_save.xpm -------------------------------------------------------------------------------- /pixmaps/tb_shell.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_shell.xpm -------------------------------------------------------------------------------- /pixmaps/tb_split.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_split.xpm -------------------------------------------------------------------------------- /pixmaps/tb_undo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_undo.xpm -------------------------------------------------------------------------------- /pixmaps/tb_vsplit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/pixmaps/tb_vsplit.xpm -------------------------------------------------------------------------------- /runtime/bugreport.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/bugreport.vim -------------------------------------------------------------------------------- /runtime/colors/ron.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/colors/ron.vim -------------------------------------------------------------------------------- /runtime/defaults.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/defaults.vim -------------------------------------------------------------------------------- /runtime/delmenu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/delmenu.vim -------------------------------------------------------------------------------- /runtime/doc.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc.info -------------------------------------------------------------------------------- /runtime/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/Makefile -------------------------------------------------------------------------------- /runtime/doc/arabic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/arabic.txt -------------------------------------------------------------------------------- /runtime/doc/change.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/change.txt -------------------------------------------------------------------------------- /runtime/doc/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/debug.txt -------------------------------------------------------------------------------- /runtime/doc/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/diff.txt -------------------------------------------------------------------------------- /runtime/doc/doctags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/doctags.c -------------------------------------------------------------------------------- /runtime/doc/eval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/eval.txt -------------------------------------------------------------------------------- /runtime/doc/evim-fr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim-fr.1 -------------------------------------------------------------------------------- /runtime/doc/evim-it.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim-it.1 -------------------------------------------------------------------------------- /runtime/doc/evim-pl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim-pl.1 -------------------------------------------------------------------------------- /runtime/doc/evim-ru.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim-ru.1 -------------------------------------------------------------------------------- /runtime/doc/evim-tr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim-tr.1 -------------------------------------------------------------------------------- /runtime/doc/evim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim.1 -------------------------------------------------------------------------------- /runtime/doc/evim.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/evim.man -------------------------------------------------------------------------------- /runtime/doc/farsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/farsi.txt -------------------------------------------------------------------------------- /runtime/doc/fold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/fold.txt -------------------------------------------------------------------------------- /runtime/doc/ft_ada.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/ft_ada.txt -------------------------------------------------------------------------------- /runtime/doc/ft_mp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/ft_mp.txt -------------------------------------------------------------------------------- /runtime/doc/ft_ps1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/ft_ps1.txt -------------------------------------------------------------------------------- /runtime/doc/ft_sql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/ft_sql.txt -------------------------------------------------------------------------------- /runtime/doc/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/gui.txt -------------------------------------------------------------------------------- /runtime/doc/hebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/hebrew.txt -------------------------------------------------------------------------------- /runtime/doc/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/help.txt -------------------------------------------------------------------------------- /runtime/doc/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/howto.txt -------------------------------------------------------------------------------- /runtime/doc/if_lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/if_lua.txt -------------------------------------------------------------------------------- /runtime/doc/if_ole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/if_ole.txt -------------------------------------------------------------------------------- /runtime/doc/if_tcl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/if_tcl.txt -------------------------------------------------------------------------------- /runtime/doc/indent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/indent.txt -------------------------------------------------------------------------------- /runtime/doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/index.txt -------------------------------------------------------------------------------- /runtime/doc/insert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/insert.txt -------------------------------------------------------------------------------- /runtime/doc/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/intro.txt -------------------------------------------------------------------------------- /runtime/doc/map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/map.txt -------------------------------------------------------------------------------- /runtime/doc/mbyte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/mbyte.txt -------------------------------------------------------------------------------- /runtime/doc/mlang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/mlang.txt -------------------------------------------------------------------------------- /runtime/doc/motion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/motion.txt -------------------------------------------------------------------------------- /runtime/doc/os_390.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_390.txt -------------------------------------------------------------------------------- /runtime/doc/os_dos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_dos.txt -------------------------------------------------------------------------------- /runtime/doc/os_mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_mac.txt -------------------------------------------------------------------------------- /runtime/doc/os_os2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_os2.txt -------------------------------------------------------------------------------- /runtime/doc/os_qnx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_qnx.txt -------------------------------------------------------------------------------- /runtime/doc/os_vms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/os_vms.txt -------------------------------------------------------------------------------- /runtime/doc/pi_tar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/pi_tar.txt -------------------------------------------------------------------------------- /runtime/doc/pi_zip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/pi_zip.txt -------------------------------------------------------------------------------- /runtime/doc/popup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/popup.txt -------------------------------------------------------------------------------- /runtime/doc/print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/print.txt -------------------------------------------------------------------------------- /runtime/doc/quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/quotes.txt -------------------------------------------------------------------------------- /runtime/doc/remote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/remote.txt -------------------------------------------------------------------------------- /runtime/doc/repeat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/repeat.txt -------------------------------------------------------------------------------- /runtime/doc/rileft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/rileft.txt -------------------------------------------------------------------------------- /runtime/doc/scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/scroll.txt -------------------------------------------------------------------------------- /runtime/doc/sign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/sign.txt -------------------------------------------------------------------------------- /runtime/doc/spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/spell.txt -------------------------------------------------------------------------------- /runtime/doc/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/syntax.txt -------------------------------------------------------------------------------- /runtime/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/tags -------------------------------------------------------------------------------- /runtime/doc/term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/term.txt -------------------------------------------------------------------------------- /runtime/doc/tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/tips.txt -------------------------------------------------------------------------------- /runtime/doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/todo.txt -------------------------------------------------------------------------------- /runtime/doc/uganda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/uganda.txt -------------------------------------------------------------------------------- /runtime/doc/undo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/undo.txt -------------------------------------------------------------------------------- /runtime/doc/usr_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_01.txt -------------------------------------------------------------------------------- /runtime/doc/usr_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_02.txt -------------------------------------------------------------------------------- /runtime/doc/usr_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_03.txt -------------------------------------------------------------------------------- /runtime/doc/usr_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_04.txt -------------------------------------------------------------------------------- /runtime/doc/usr_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_05.txt -------------------------------------------------------------------------------- /runtime/doc/usr_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_06.txt -------------------------------------------------------------------------------- /runtime/doc/usr_07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_07.txt -------------------------------------------------------------------------------- /runtime/doc/usr_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_08.txt -------------------------------------------------------------------------------- /runtime/doc/usr_09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_09.txt -------------------------------------------------------------------------------- /runtime/doc/usr_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_10.txt -------------------------------------------------------------------------------- /runtime/doc/usr_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_11.txt -------------------------------------------------------------------------------- /runtime/doc/usr_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_12.txt -------------------------------------------------------------------------------- /runtime/doc/usr_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_20.txt -------------------------------------------------------------------------------- /runtime/doc/usr_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_21.txt -------------------------------------------------------------------------------- /runtime/doc/usr_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_22.txt -------------------------------------------------------------------------------- /runtime/doc/usr_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_23.txt -------------------------------------------------------------------------------- /runtime/doc/usr_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_24.txt -------------------------------------------------------------------------------- /runtime/doc/usr_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_25.txt -------------------------------------------------------------------------------- /runtime/doc/usr_26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_26.txt -------------------------------------------------------------------------------- /runtime/doc/usr_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_27.txt -------------------------------------------------------------------------------- /runtime/doc/usr_28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_28.txt -------------------------------------------------------------------------------- /runtime/doc/usr_29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_29.txt -------------------------------------------------------------------------------- /runtime/doc/usr_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_30.txt -------------------------------------------------------------------------------- /runtime/doc/usr_31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_31.txt -------------------------------------------------------------------------------- /runtime/doc/usr_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_32.txt -------------------------------------------------------------------------------- /runtime/doc/usr_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_40.txt -------------------------------------------------------------------------------- /runtime/doc/usr_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_41.txt -------------------------------------------------------------------------------- /runtime/doc/usr_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_42.txt -------------------------------------------------------------------------------- /runtime/doc/usr_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_43.txt -------------------------------------------------------------------------------- /runtime/doc/usr_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_44.txt -------------------------------------------------------------------------------- /runtime/doc/usr_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_45.txt -------------------------------------------------------------------------------- /runtime/doc/usr_50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_50.txt -------------------------------------------------------------------------------- /runtime/doc/usr_51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_51.txt -------------------------------------------------------------------------------- /runtime/doc/usr_52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_52.txt -------------------------------------------------------------------------------- /runtime/doc/usr_90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/usr_90.txt -------------------------------------------------------------------------------- /runtime/doc/vim-da.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-da.1 -------------------------------------------------------------------------------- /runtime/doc/vim-de.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-de.1 -------------------------------------------------------------------------------- /runtime/doc/vim-fr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-fr.1 -------------------------------------------------------------------------------- /runtime/doc/vim-it.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-it.1 -------------------------------------------------------------------------------- /runtime/doc/vim-pl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-pl.1 -------------------------------------------------------------------------------- /runtime/doc/vim-ru.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-ru.1 -------------------------------------------------------------------------------- /runtime/doc/vim-tr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim-tr.1 -------------------------------------------------------------------------------- /runtime/doc/vim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim.1 -------------------------------------------------------------------------------- /runtime/doc/vim.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim.man -------------------------------------------------------------------------------- /runtime/doc/vim9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vim9.txt -------------------------------------------------------------------------------- /runtime/doc/vimdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vimdiff.1 -------------------------------------------------------------------------------- /runtime/doc/vimtutor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/vimtutor.1 -------------------------------------------------------------------------------- /runtime/doc/visual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/visual.txt -------------------------------------------------------------------------------- /runtime/doc/xxd-fr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd-fr.1 -------------------------------------------------------------------------------- /runtime/doc/xxd-it.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd-it.1 -------------------------------------------------------------------------------- /runtime/doc/xxd-pl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd-pl.1 -------------------------------------------------------------------------------- /runtime/doc/xxd-ru.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd-ru.1 -------------------------------------------------------------------------------- /runtime/doc/xxd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd.1 -------------------------------------------------------------------------------- /runtime/doc/xxd.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/doc/xxd.man -------------------------------------------------------------------------------- /runtime/evim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/evim.vim -------------------------------------------------------------------------------- /runtime/filetype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/filetype.vim -------------------------------------------------------------------------------- /runtime/ftoff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftoff.vim -------------------------------------------------------------------------------- /runtime/ftplugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugin.vim -------------------------------------------------------------------------------- /runtime/ftplugin/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugin/c.vim -------------------------------------------------------------------------------- /runtime/ftplugin/j.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugin/j.vim -------------------------------------------------------------------------------- /runtime/ftplugin/objcpp.vim: -------------------------------------------------------------------------------- 1 | runtime! ftplugin/objc.vim 2 | -------------------------------------------------------------------------------- /runtime/ftplugin/quarto.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/rmd.vim 2 | -------------------------------------------------------------------------------- /runtime/ftplugin/r.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugin/r.vim -------------------------------------------------------------------------------- /runtime/ftplugin/v.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugin/v.vim -------------------------------------------------------------------------------- /runtime/ftplugof.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/ftplugof.vim -------------------------------------------------------------------------------- /runtime/gvim.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/gvim.desktop -------------------------------------------------------------------------------- /runtime/icons.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/icons.info -------------------------------------------------------------------------------- /runtime/indent.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent.vim -------------------------------------------------------------------------------- /runtime/indent/aap.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/aap.vim -------------------------------------------------------------------------------- /runtime/indent/ada.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/ada.vim -------------------------------------------------------------------------------- /runtime/indent/ant.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/ant.vim -------------------------------------------------------------------------------- /runtime/indent/awk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/awk.vim -------------------------------------------------------------------------------- /runtime/indent/bib.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/bib.vim -------------------------------------------------------------------------------- /runtime/indent/bst.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/bst.vim -------------------------------------------------------------------------------- /runtime/indent/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/bzl.vim -------------------------------------------------------------------------------- /runtime/indent/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/c.vim -------------------------------------------------------------------------------- /runtime/indent/cdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/cdl.vim -------------------------------------------------------------------------------- /runtime/indent/ch.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/ch.vim -------------------------------------------------------------------------------- /runtime/indent/cpp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/cpp.vim -------------------------------------------------------------------------------- /runtime/indent/cs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/cs.vim -------------------------------------------------------------------------------- /runtime/indent/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/css.vim -------------------------------------------------------------------------------- /runtime/indent/d.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/d.vim -------------------------------------------------------------------------------- /runtime/indent/dtd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/dtd.vim -------------------------------------------------------------------------------- /runtime/indent/dts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/dts.vim -------------------------------------------------------------------------------- /runtime/indent/elm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/elm.vim -------------------------------------------------------------------------------- /runtime/indent/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/go.vim -------------------------------------------------------------------------------- /runtime/indent/gyp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/gyp.vim -------------------------------------------------------------------------------- /runtime/indent/hcl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/hcl.vim -------------------------------------------------------------------------------- /runtime/indent/hog.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/hog.vim -------------------------------------------------------------------------------- /runtime/indent/j.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/j.vim -------------------------------------------------------------------------------- /runtime/indent/jsp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/jsp.vim -------------------------------------------------------------------------------- /runtime/indent/kdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/kdl.vim -------------------------------------------------------------------------------- /runtime/indent/krl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/krl.vim -------------------------------------------------------------------------------- /runtime/indent/ld.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/ld.vim -------------------------------------------------------------------------------- /runtime/indent/lua.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/lua.vim -------------------------------------------------------------------------------- /runtime/indent/mf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/mf.vim -------------------------------------------------------------------------------- /runtime/indent/mma.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/mma.vim -------------------------------------------------------------------------------- /runtime/indent/mp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/mp.vim -------------------------------------------------------------------------------- /runtime/indent/nu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/nu.vim -------------------------------------------------------------------------------- /runtime/indent/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/php.vim -------------------------------------------------------------------------------- /runtime/indent/pov.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/pov.vim -------------------------------------------------------------------------------- /runtime/indent/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/ps1.vim -------------------------------------------------------------------------------- /runtime/indent/qml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/qml.vim -------------------------------------------------------------------------------- /runtime/indent/quarto.vim: -------------------------------------------------------------------------------- 1 | runtime indent/rmd.vim 2 | -------------------------------------------------------------------------------- /runtime/indent/r.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/r.vim -------------------------------------------------------------------------------- /runtime/indent/rmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/rmd.vim -------------------------------------------------------------------------------- /runtime/indent/rpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/rpl.vim -------------------------------------------------------------------------------- /runtime/indent/rst.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/rst.vim -------------------------------------------------------------------------------- /runtime/indent/sas.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/sas.vim -------------------------------------------------------------------------------- /runtime/indent/sdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/sdl.vim -------------------------------------------------------------------------------- /runtime/indent/sh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/sh.vim -------------------------------------------------------------------------------- /runtime/indent/sml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/sml.vim -------------------------------------------------------------------------------- /runtime/indent/sql.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/sql.vim -------------------------------------------------------------------------------- /runtime/indent/tcl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/tcl.vim -------------------------------------------------------------------------------- /runtime/indent/tex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/tex.vim -------------------------------------------------------------------------------- /runtime/indent/tf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/tf.vim -------------------------------------------------------------------------------- /runtime/indent/vb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/vb.vim -------------------------------------------------------------------------------- /runtime/indent/vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/vim.vim -------------------------------------------------------------------------------- /runtime/indent/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/vue.vim -------------------------------------------------------------------------------- /runtime/indent/wat.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/wat.vim -------------------------------------------------------------------------------- /runtime/indent/xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/xml.vim -------------------------------------------------------------------------------- /runtime/indent/xsd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/xsd.vim -------------------------------------------------------------------------------- /runtime/indent/zig.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/zig.vim -------------------------------------------------------------------------------- /runtime/indent/zsh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indent/zsh.vim -------------------------------------------------------------------------------- /runtime/indoff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/indoff.vim -------------------------------------------------------------------------------- /runtime/keymap/czech.vim: -------------------------------------------------------------------------------- 1 | source :p:h/czech_utf-8.vim 2 | -------------------------------------------------------------------------------- /runtime/keymap/esperanto.vim: -------------------------------------------------------------------------------- 1 | source :p:h/esperanto_utf-8.vim 2 | -------------------------------------------------------------------------------- /runtime/keymap/serbian-latin.vim: -------------------------------------------------------------------------------- 1 | source :p:h/serbian-latin_utf-8.vim 2 | -------------------------------------------------------------------------------- /runtime/lang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/lang/Makefile -------------------------------------------------------------------------------- /runtime/lang/menu_spanish_spain.850.vim: -------------------------------------------------------------------------------- 1 | source :p:h/menu_es_es.latin1.vim 2 | -------------------------------------------------------------------------------- /runtime/macmap.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/macmap.vim -------------------------------------------------------------------------------- /runtime/macros.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/macros.info -------------------------------------------------------------------------------- /runtime/macros/less.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/macros/less.sh -------------------------------------------------------------------------------- /runtime/macros/urm/urm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/macros/urm/urm -------------------------------------------------------------------------------- /runtime/makemenu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/makemenu.vim -------------------------------------------------------------------------------- /runtime/menu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/menu.vim -------------------------------------------------------------------------------- /runtime/mswin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/mswin.vim -------------------------------------------------------------------------------- /runtime/optwin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/optwin.vim -------------------------------------------------------------------------------- /runtime/print/ascii.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/print/ascii.ps -------------------------------------------------------------------------------- /runtime/scripts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/scripts.vim -------------------------------------------------------------------------------- /runtime/spell/br/br_FR.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/spell/eo/eo_l3.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/spell/he.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/spell/he.vim -------------------------------------------------------------------------------- /runtime/spell/lt/lt_LT.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/spell/lv/lv_LV.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/spell/main.aap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/spell/main.aap -------------------------------------------------------------------------------- /runtime/spell/ny/ny_MW.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/spell/yi.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/spell/yi.vim -------------------------------------------------------------------------------- /runtime/synmenu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/synmenu.vim -------------------------------------------------------------------------------- /runtime/syntax/8th.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/8th.vim -------------------------------------------------------------------------------- /runtime/syntax/a65.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/a65.vim -------------------------------------------------------------------------------- /runtime/syntax/aap.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/aap.vim -------------------------------------------------------------------------------- /runtime/syntax/abc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/abc.vim -------------------------------------------------------------------------------- /runtime/syntax/ada.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ada.vim -------------------------------------------------------------------------------- /runtime/syntax/aml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/aml.vim -------------------------------------------------------------------------------- /runtime/syntax/ant.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ant.vim -------------------------------------------------------------------------------- /runtime/syntax/art.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/art.vim -------------------------------------------------------------------------------- /runtime/syntax/asm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/asm.vim -------------------------------------------------------------------------------- /runtime/syntax/asn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/asn.vim -------------------------------------------------------------------------------- /runtime/syntax/asy.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/asy.vim -------------------------------------------------------------------------------- /runtime/syntax/ave.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ave.vim -------------------------------------------------------------------------------- /runtime/syntax/awk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/awk.vim -------------------------------------------------------------------------------- /runtime/syntax/b.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/b.vim -------------------------------------------------------------------------------- /runtime/syntax/bc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bc.vim -------------------------------------------------------------------------------- /runtime/syntax/bdf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bdf.vim -------------------------------------------------------------------------------- /runtime/syntax/bib.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bib.vim -------------------------------------------------------------------------------- /runtime/syntax/bst.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bst.vim -------------------------------------------------------------------------------- /runtime/syntax/btm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/btm.vim -------------------------------------------------------------------------------- /runtime/syntax/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bzl.vim -------------------------------------------------------------------------------- /runtime/syntax/bzr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/bzr.vim -------------------------------------------------------------------------------- /runtime/syntax/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/c.vim -------------------------------------------------------------------------------- /runtime/syntax/cdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cdl.vim -------------------------------------------------------------------------------- /runtime/syntax/cf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cf.vim -------------------------------------------------------------------------------- /runtime/syntax/cfg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cfg.vim -------------------------------------------------------------------------------- /runtime/syntax/ch.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ch.vim -------------------------------------------------------------------------------- /runtime/syntax/cl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cl.vim -------------------------------------------------------------------------------- /runtime/syntax/cpp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cpp.vim -------------------------------------------------------------------------------- /runtime/syntax/crm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/crm.vim -------------------------------------------------------------------------------- /runtime/syntax/cs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cs.vim -------------------------------------------------------------------------------- /runtime/syntax/csc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/csc.vim -------------------------------------------------------------------------------- /runtime/syntax/csh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/csh.vim -------------------------------------------------------------------------------- /runtime/syntax/csp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/csp.vim -------------------------------------------------------------------------------- /runtime/syntax/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/css.vim -------------------------------------------------------------------------------- /runtime/syntax/csv.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/csv.vim -------------------------------------------------------------------------------- /runtime/syntax/cvs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/cvs.vim -------------------------------------------------------------------------------- /runtime/syntax/d.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/d.vim -------------------------------------------------------------------------------- /runtime/syntax/dax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dax.vim -------------------------------------------------------------------------------- /runtime/syntax/dcd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dcd.vim -------------------------------------------------------------------------------- /runtime/syntax/dcl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dcl.vim -------------------------------------------------------------------------------- /runtime/syntax/def.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/def.vim -------------------------------------------------------------------------------- /runtime/syntax/dns.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dns.vim -------------------------------------------------------------------------------- /runtime/syntax/dot.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dot.vim -------------------------------------------------------------------------------- /runtime/syntax/dsl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dsl.vim -------------------------------------------------------------------------------- /runtime/syntax/dtd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dtd.vim -------------------------------------------------------------------------------- /runtime/syntax/dts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/dts.vim -------------------------------------------------------------------------------- /runtime/syntax/ecd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ecd.vim -------------------------------------------------------------------------------- /runtime/syntax/elf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/elf.vim -------------------------------------------------------------------------------- /runtime/syntax/elm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/elm.vim -------------------------------------------------------------------------------- /runtime/syntax/fan.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/fan.vim -------------------------------------------------------------------------------- /runtime/syntax/fgl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/fgl.vim -------------------------------------------------------------------------------- /runtime/syntax/gdb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gdb.vim -------------------------------------------------------------------------------- /runtime/syntax/gel.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gel.vim -------------------------------------------------------------------------------- /runtime/syntax/git.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/git.vim -------------------------------------------------------------------------------- /runtime/syntax/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/go.vim -------------------------------------------------------------------------------- /runtime/syntax/gp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gp.vim -------------------------------------------------------------------------------- /runtime/syntax/gpg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gpg.vim -------------------------------------------------------------------------------- /runtime/syntax/gsp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gsp.vim -------------------------------------------------------------------------------- /runtime/syntax/gyp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/gyp.vim -------------------------------------------------------------------------------- /runtime/syntax/hb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/hb.vim -------------------------------------------------------------------------------- /runtime/syntax/hcl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/hcl.vim -------------------------------------------------------------------------------- /runtime/syntax/hex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/hex.vim -------------------------------------------------------------------------------- /runtime/syntax/hog.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/hog.vim -------------------------------------------------------------------------------- /runtime/syntax/idl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/idl.vim -------------------------------------------------------------------------------- /runtime/syntax/iss.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/iss.vim -------------------------------------------------------------------------------- /runtime/syntax/ist.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ist.vim -------------------------------------------------------------------------------- /runtime/syntax/j.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/j.vim -------------------------------------------------------------------------------- /runtime/syntax/jal.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/jal.vim -------------------------------------------------------------------------------- /runtime/syntax/jam.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/jam.vim -------------------------------------------------------------------------------- /runtime/syntax/jq.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/jq.vim -------------------------------------------------------------------------------- /runtime/syntax/jsp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/jsp.vim -------------------------------------------------------------------------------- /runtime/syntax/kdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/kdl.vim -------------------------------------------------------------------------------- /runtime/syntax/kix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/kix.vim -------------------------------------------------------------------------------- /runtime/syntax/krl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/krl.vim -------------------------------------------------------------------------------- /runtime/syntax/kwt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/kwt.vim -------------------------------------------------------------------------------- /runtime/syntax/lc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lc.vim -------------------------------------------------------------------------------- /runtime/syntax/ld.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ld.vim -------------------------------------------------------------------------------- /runtime/syntax/lex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lex.vim -------------------------------------------------------------------------------- /runtime/syntax/lf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lf.vim -------------------------------------------------------------------------------- /runtime/syntax/lnk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lnk.vim -------------------------------------------------------------------------------- /runtime/syntax/log.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/log.vim -------------------------------------------------------------------------------- /runtime/syntax/lpc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lpc.vim -------------------------------------------------------------------------------- /runtime/syntax/lsl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lsl.vim -------------------------------------------------------------------------------- /runtime/syntax/lss.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lss.vim -------------------------------------------------------------------------------- /runtime/syntax/lua.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/lua.vim -------------------------------------------------------------------------------- /runtime/syntax/m4.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/m4.vim -------------------------------------------------------------------------------- /runtime/syntax/man.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/man.vim -------------------------------------------------------------------------------- /runtime/syntax/mel.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mel.vim -------------------------------------------------------------------------------- /runtime/syntax/mf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mf.vim -------------------------------------------------------------------------------- /runtime/syntax/mgl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mgl.vim -------------------------------------------------------------------------------- /runtime/syntax/mgp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mgp.vim -------------------------------------------------------------------------------- /runtime/syntax/mib.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mib.vim -------------------------------------------------------------------------------- /runtime/syntax/mix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mix.vim -------------------------------------------------------------------------------- /runtime/syntax/mma.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mma.vim -------------------------------------------------------------------------------- /runtime/syntax/mmp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mmp.vim -------------------------------------------------------------------------------- /runtime/syntax/moo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/moo.vim -------------------------------------------------------------------------------- /runtime/syntax/mp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mp.vim -------------------------------------------------------------------------------- /runtime/syntax/mss.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/mss.vim -------------------------------------------------------------------------------- /runtime/syntax/ncf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ncf.vim -------------------------------------------------------------------------------- /runtime/syntax/nix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/nix.vim -------------------------------------------------------------------------------- /runtime/syntax/nqc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/nqc.vim -------------------------------------------------------------------------------- /runtime/syntax/nu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/nu.vim -------------------------------------------------------------------------------- /runtime/syntax/obj.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/obj.vim -------------------------------------------------------------------------------- /runtime/syntax/opl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/opl.vim -------------------------------------------------------------------------------- /runtime/syntax/ora.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ora.vim -------------------------------------------------------------------------------- /runtime/syntax/org.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/org.vim -------------------------------------------------------------------------------- /runtime/syntax/pdf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pdf.vim -------------------------------------------------------------------------------- /runtime/syntax/pf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pf.vim -------------------------------------------------------------------------------- /runtime/syntax/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/php.vim -------------------------------------------------------------------------------- /runtime/syntax/pic.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pic.vim -------------------------------------------------------------------------------- /runtime/syntax/pkl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pkl.vim -------------------------------------------------------------------------------- /runtime/syntax/pli.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pli.vim -------------------------------------------------------------------------------- /runtime/syntax/plm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/plm.vim -------------------------------------------------------------------------------- /runtime/syntax/plp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/plp.vim -------------------------------------------------------------------------------- /runtime/syntax/po.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/po.vim -------------------------------------------------------------------------------- /runtime/syntax/pod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pod.vim -------------------------------------------------------------------------------- /runtime/syntax/pov.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pov.vim -------------------------------------------------------------------------------- /runtime/syntax/ppd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ppd.vim -------------------------------------------------------------------------------- /runtime/syntax/pq.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/pq.vim -------------------------------------------------------------------------------- /runtime/syntax/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ps1.vim -------------------------------------------------------------------------------- /runtime/syntax/psf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/psf.vim -------------------------------------------------------------------------------- /runtime/syntax/psl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/psl.vim -------------------------------------------------------------------------------- /runtime/syntax/ptx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/ptx.vim -------------------------------------------------------------------------------- /runtime/syntax/r.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/syntax/r.vim -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/help.vim: -------------------------------------------------------------------------------- 1 | set conceallevel=2 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_blocks.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_comments.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_ex_commands.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_ex_enum.vim: -------------------------------------------------------------------------------- 1 | hi link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_ex_enum2.vim: -------------------------------------------------------------------------------- 1 | hi link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_ex_for.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_ex_import.vim: -------------------------------------------------------------------------------- 1 | hi link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_expressions.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_lambdas.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim9_variables.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_comments.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_call.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_command.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_commands.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_def_nested.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_echo.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_execute.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_for.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_import.vim: -------------------------------------------------------------------------------- 1 | hi link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_loadkeymap.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_map.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_match.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_menu.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_ex_substitute.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_expressions.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_lambdas.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/syntax/testdir/input/setup/vim_variables.vim: -------------------------------------------------------------------------------- 1 | highlight link vimVar Identifier 2 | -------------------------------------------------------------------------------- /runtime/termcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/termcap -------------------------------------------------------------------------------- /runtime/tools.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tools.info -------------------------------------------------------------------------------- /runtime/tools/ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tools/ref -------------------------------------------------------------------------------- /runtime/tools/vim132: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tools/vim132 -------------------------------------------------------------------------------- /runtime/tools/vimm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tools/vimm -------------------------------------------------------------------------------- /runtime/tutor.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tutor.info -------------------------------------------------------------------------------- /runtime/tutor/tutor1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tutor/tutor1 -------------------------------------------------------------------------------- /runtime/tutor/tutor2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/tutor/tutor2 -------------------------------------------------------------------------------- /runtime/vim.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim.desktop -------------------------------------------------------------------------------- /runtime/vim16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim16x16.gif -------------------------------------------------------------------------------- /runtime/vim16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim16x16.png -------------------------------------------------------------------------------- /runtime/vim16x16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim16x16.xpm -------------------------------------------------------------------------------- /runtime/vim32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim32x32.gif -------------------------------------------------------------------------------- /runtime/vim32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim32x32.png -------------------------------------------------------------------------------- /runtime/vim32x32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim32x32.xpm -------------------------------------------------------------------------------- /runtime/vim48x48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim48x48.gif -------------------------------------------------------------------------------- /runtime/vim48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim48x48.png -------------------------------------------------------------------------------- /runtime/vim48x48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vim48x48.xpm -------------------------------------------------------------------------------- /runtime/vimlogo.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.cdr -------------------------------------------------------------------------------- /runtime/vimlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.eps -------------------------------------------------------------------------------- /runtime/vimlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.gif -------------------------------------------------------------------------------- /runtime/vimlogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.pdf -------------------------------------------------------------------------------- /runtime/vimlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.svg -------------------------------------------------------------------------------- /runtime/vimlogo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/runtime/vimlogo.xpm -------------------------------------------------------------------------------- /src/GvimExt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/GvimExt/Makefile -------------------------------------------------------------------------------- /src/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALL -------------------------------------------------------------------------------- /src/INSTALLami.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALLami.txt -------------------------------------------------------------------------------- /src/INSTALLmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALLmac.txt -------------------------------------------------------------------------------- /src/INSTALLpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALLpc.txt -------------------------------------------------------------------------------- /src/INSTALLvms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALLvms.txt -------------------------------------------------------------------------------- /src/INSTALLx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/INSTALLx.txt -------------------------------------------------------------------------------- /src/MacVim/MacVim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/MacVim.h -------------------------------------------------------------------------------- /src/MacVim/MacVim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/MacVim.m -------------------------------------------------------------------------------- /src/MacVim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/README -------------------------------------------------------------------------------- /src/MacVim/Sparkle.framework: -------------------------------------------------------------------------------- 1 | Sparkle_2.framework -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /src/MacVim/Sparkle_1.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Autoupdate: -------------------------------------------------------------------------------- 1 | Versions/Current/Autoupdate -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Updater.app: -------------------------------------------------------------------------------- 1 | Versions/Current/Updater.app -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Versions/B/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /src/MacVim/Sparkle_2.framework/XPCServices: -------------------------------------------------------------------------------- 1 | Versions/Current/XPCServices -------------------------------------------------------------------------------- /src/MacVim/create-dmg/.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | .vscode 3 | 4 | *.dmg 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /src/MacVim/create-dmg/examples/01-main-example/source_folder/Application.app: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MacVim/create-dmg/tests/007-space-in-dir-name/my files/hello.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /src/MacVim/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/gvimrc -------------------------------------------------------------------------------- /src/MacVim/ibeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/ibeam.png -------------------------------------------------------------------------------- /src/MacVim/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/main.m -------------------------------------------------------------------------------- /src/MacVim/mvim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/mvim -------------------------------------------------------------------------------- /src/MacVim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/MacVim/vimrc -------------------------------------------------------------------------------- /src/Make_all.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_all.mak -------------------------------------------------------------------------------- /src/Make_ami.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_ami.mak -------------------------------------------------------------------------------- /src/Make_cyg.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_cyg.mak -------------------------------------------------------------------------------- /src/Make_ming.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_ming.mak -------------------------------------------------------------------------------- /src/Make_mvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_mvc.mak -------------------------------------------------------------------------------- /src/Make_vms.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Make_vms.mms -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/README.md -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/alloc.h -------------------------------------------------------------------------------- /src/arabic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/arabic.c -------------------------------------------------------------------------------- /src/arglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/arglist.c -------------------------------------------------------------------------------- /src/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ascii.h -------------------------------------------------------------------------------- /src/auto/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/auto/configure -------------------------------------------------------------------------------- /src/autocmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/autocmd.c -------------------------------------------------------------------------------- /src/beval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/beval.c -------------------------------------------------------------------------------- /src/beval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/beval.h -------------------------------------------------------------------------------- /src/bigvim.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/bigvim.bat -------------------------------------------------------------------------------- /src/bigvim64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/bigvim64.bat -------------------------------------------------------------------------------- /src/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/blob.c -------------------------------------------------------------------------------- /src/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/blowfish.c -------------------------------------------------------------------------------- /src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/buffer.c -------------------------------------------------------------------------------- /src/bufwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/bufwrite.c -------------------------------------------------------------------------------- /src/change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/change.c -------------------------------------------------------------------------------- /src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/channel.c -------------------------------------------------------------------------------- /src/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/charset.c -------------------------------------------------------------------------------- /src/cindent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/cindent.c -------------------------------------------------------------------------------- /src/clientserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/clientserver.c -------------------------------------------------------------------------------- /src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/clipboard.c -------------------------------------------------------------------------------- /src/cmdexpand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/cmdexpand.c -------------------------------------------------------------------------------- /src/cmdhist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/cmdhist.c -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/config.mk.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/config.mk.dist -------------------------------------------------------------------------------- /src/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/config.mk.in -------------------------------------------------------------------------------- /src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/configure -------------------------------------------------------------------------------- /src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/configure.ac -------------------------------------------------------------------------------- /src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/crypt.c -------------------------------------------------------------------------------- /src/crypt_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/crypt_zip.c -------------------------------------------------------------------------------- /src/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/debugger.c -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/diff.c -------------------------------------------------------------------------------- /src/digraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/digraph.c -------------------------------------------------------------------------------- /src/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/dlldata.c -------------------------------------------------------------------------------- /src/dosinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/dosinst.c -------------------------------------------------------------------------------- /src/dosinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/dosinst.h -------------------------------------------------------------------------------- /src/drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/drawline.c -------------------------------------------------------------------------------- /src/drawscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/drawscreen.c -------------------------------------------------------------------------------- /src/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/edit.c -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/errors.h -------------------------------------------------------------------------------- /src/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/eval.c -------------------------------------------------------------------------------- /src/evalbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/evalbuffer.c -------------------------------------------------------------------------------- /src/evalfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/evalfunc.c -------------------------------------------------------------------------------- /src/evalvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/evalvars.c -------------------------------------------------------------------------------- /src/evalwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/evalwindow.c -------------------------------------------------------------------------------- /src/ex_cmdidxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_cmdidxs.h -------------------------------------------------------------------------------- /src/ex_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_cmds.c -------------------------------------------------------------------------------- /src/ex_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_cmds.h -------------------------------------------------------------------------------- /src/ex_cmds2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_cmds2.c -------------------------------------------------------------------------------- /src/ex_docmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_docmd.c -------------------------------------------------------------------------------- /src/ex_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_eval.c -------------------------------------------------------------------------------- /src/ex_getln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ex_getln.c -------------------------------------------------------------------------------- /src/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/feature.h -------------------------------------------------------------------------------- /src/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/fileio.c -------------------------------------------------------------------------------- /src/filepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/filepath.c -------------------------------------------------------------------------------- /src/findfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/findfile.c -------------------------------------------------------------------------------- /src/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/float.c -------------------------------------------------------------------------------- /src/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/fold.c -------------------------------------------------------------------------------- /src/fuzzy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/fuzzy.c -------------------------------------------------------------------------------- /src/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gc.c -------------------------------------------------------------------------------- /src/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/getchar.c -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui.c -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/gui_beval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_beval.c -------------------------------------------------------------------------------- /src/gui_dwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_dwrite.cpp -------------------------------------------------------------------------------- /src/gui_dwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_dwrite.h -------------------------------------------------------------------------------- /src/gui_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk.c -------------------------------------------------------------------------------- /src/gui_gtk_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk_f.c -------------------------------------------------------------------------------- /src/gui_gtk_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk_f.h -------------------------------------------------------------------------------- /src/gui_gtk_res.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk_res.xml -------------------------------------------------------------------------------- /src/gui_gtk_vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk_vms.h -------------------------------------------------------------------------------- /src/gui_gtk_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_gtk_x11.c -------------------------------------------------------------------------------- /src/gui_haiku.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_haiku.cc -------------------------------------------------------------------------------- /src/gui_haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_haiku.h -------------------------------------------------------------------------------- /src/gui_motif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_motif.c -------------------------------------------------------------------------------- /src/gui_photon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_photon.c -------------------------------------------------------------------------------- /src/gui_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_w32.c -------------------------------------------------------------------------------- /src/gui_w32_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_w32_rc.h -------------------------------------------------------------------------------- /src/gui_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_x11.c -------------------------------------------------------------------------------- /src/gui_x11_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_x11_pm.h -------------------------------------------------------------------------------- /src/gui_xim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_xim.c -------------------------------------------------------------------------------- /src/gui_xmdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_xmdlg.c -------------------------------------------------------------------------------- /src/gui_xmebw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_xmebw.c -------------------------------------------------------------------------------- /src/gui_xmebw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_xmebw.h -------------------------------------------------------------------------------- /src/gui_xmebwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gui_xmebwp.h -------------------------------------------------------------------------------- /src/gvimtutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/gvimtutor -------------------------------------------------------------------------------- /src/hardcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/hardcopy.c -------------------------------------------------------------------------------- /src/hashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/hashtab.c -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/help.c -------------------------------------------------------------------------------- /src/highlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/highlight.c -------------------------------------------------------------------------------- /src/if_cscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_cscope.c -------------------------------------------------------------------------------- /src/if_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_lua.c -------------------------------------------------------------------------------- /src/if_mzsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_mzsch.c -------------------------------------------------------------------------------- /src/if_mzsch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_mzsch.h -------------------------------------------------------------------------------- /src/if_ole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_ole.cpp -------------------------------------------------------------------------------- /src/if_ole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_ole.h -------------------------------------------------------------------------------- /src/if_ole.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_ole.idl -------------------------------------------------------------------------------- /src/if_perl.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_perl.xs -------------------------------------------------------------------------------- /src/if_py_both.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_py_both.h -------------------------------------------------------------------------------- /src/if_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_python.c -------------------------------------------------------------------------------- /src/if_python3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_python3.c -------------------------------------------------------------------------------- /src/if_ruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_ruby.c -------------------------------------------------------------------------------- /src/if_tcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_tcl.c -------------------------------------------------------------------------------- /src/if_xcmdsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/if_xcmdsrv.c -------------------------------------------------------------------------------- /src/iid_ole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/iid_ole.c -------------------------------------------------------------------------------- /src/indent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/indent.c -------------------------------------------------------------------------------- /src/insexpand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/insexpand.c -------------------------------------------------------------------------------- /src/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/install-sh -------------------------------------------------------------------------------- /src/installman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/installman.sh -------------------------------------------------------------------------------- /src/installml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/installml.sh -------------------------------------------------------------------------------- /src/iscygpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/iscygpty.c -------------------------------------------------------------------------------- /src/iscygpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/iscygpty.h -------------------------------------------------------------------------------- /src/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/job.c -------------------------------------------------------------------------------- /src/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/json.c -------------------------------------------------------------------------------- /src/json_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/json_test.c -------------------------------------------------------------------------------- /src/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/keymap.h -------------------------------------------------------------------------------- /src/kword_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/kword_test.c -------------------------------------------------------------------------------- /src/libvterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/libvterm/LICENSE -------------------------------------------------------------------------------- /src/libvterm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/libvterm/README -------------------------------------------------------------------------------- /src/libvterm/src/encoding/uk.tbl: -------------------------------------------------------------------------------- 1 | 2/3 = "£" 2 | -------------------------------------------------------------------------------- /src/linematch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/linematch.c -------------------------------------------------------------------------------- /src/link.390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/link.390 -------------------------------------------------------------------------------- /src/link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/link.sh -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/list.c -------------------------------------------------------------------------------- /src/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/locale.c -------------------------------------------------------------------------------- /src/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/logfile.c -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/main.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/map.c -------------------------------------------------------------------------------- /src/mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/mark.c -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/match.c -------------------------------------------------------------------------------- /src/mbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/mbyte.c -------------------------------------------------------------------------------- /src/memfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/memfile.c -------------------------------------------------------------------------------- /src/memfile_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/memfile_test.c -------------------------------------------------------------------------------- /src/memline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/memline.c -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/message.c -------------------------------------------------------------------------------- /src/message_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/message_test.c -------------------------------------------------------------------------------- /src/misc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/misc1.c -------------------------------------------------------------------------------- /src/misc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/misc2.c -------------------------------------------------------------------------------- /src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/mouse.c -------------------------------------------------------------------------------- /src/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/move.c -------------------------------------------------------------------------------- /src/msvc-latest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msvc-latest.bat -------------------------------------------------------------------------------- /src/msvc2015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msvc2015.bat -------------------------------------------------------------------------------- /src/msvc2017.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msvc2017.bat -------------------------------------------------------------------------------- /src/msvc2019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msvc2019.bat -------------------------------------------------------------------------------- /src/msvc2022.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msvc2022.bat -------------------------------------------------------------------------------- /src/msys32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msys32.bat -------------------------------------------------------------------------------- /src/msys64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/msys64.bat -------------------------------------------------------------------------------- /src/mysign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/mysign -------------------------------------------------------------------------------- /src/nbdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/nbdebug.c -------------------------------------------------------------------------------- /src/nbdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/nbdebug.h -------------------------------------------------------------------------------- /src/netbeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/netbeans.c -------------------------------------------------------------------------------- /src/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/normal.c -------------------------------------------------------------------------------- /src/nv_cmdidxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/nv_cmdidxs.h -------------------------------------------------------------------------------- /src/nv_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/nv_cmds.h -------------------------------------------------------------------------------- /src/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ops.c -------------------------------------------------------------------------------- /src/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/option.c -------------------------------------------------------------------------------- /src/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/option.h -------------------------------------------------------------------------------- /src/optiondefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/optiondefs.h -------------------------------------------------------------------------------- /src/optionstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/optionstr.c -------------------------------------------------------------------------------- /src/os_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_amiga.c -------------------------------------------------------------------------------- /src/os_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_amiga.h -------------------------------------------------------------------------------- /src/os_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_dos.h -------------------------------------------------------------------------------- /src/os_haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_haiku.h -------------------------------------------------------------------------------- /src/os_haiku.rdef.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_haiku.rdef.in -------------------------------------------------------------------------------- /src/os_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_mac.h -------------------------------------------------------------------------------- /src/os_mac_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_mac_conv.c -------------------------------------------------------------------------------- /src/os_macosx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_macosx.m -------------------------------------------------------------------------------- /src/os_mswin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_mswin.c -------------------------------------------------------------------------------- /src/os_qnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_qnx.c -------------------------------------------------------------------------------- /src/os_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_qnx.h -------------------------------------------------------------------------------- /src/os_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_unix.c -------------------------------------------------------------------------------- /src/os_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_unix.h -------------------------------------------------------------------------------- /src/os_unixx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_unixx.h -------------------------------------------------------------------------------- /src/os_vms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_vms.c -------------------------------------------------------------------------------- /src/os_vms_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_vms_conf.h -------------------------------------------------------------------------------- /src/os_vms_fix.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_vms_fix.com -------------------------------------------------------------------------------- /src/os_vms_mms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_vms_mms.c -------------------------------------------------------------------------------- /src/os_w32dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_w32dll.c -------------------------------------------------------------------------------- /src/os_w32exe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_w32exe.c -------------------------------------------------------------------------------- /src/os_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_win32.c -------------------------------------------------------------------------------- /src/os_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/os_win32.h -------------------------------------------------------------------------------- /src/osdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/osdef.sh -------------------------------------------------------------------------------- /src/osdef1.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/osdef1.h.in -------------------------------------------------------------------------------- /src/osdef2.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/osdef2.h.in -------------------------------------------------------------------------------- /src/pathdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/pathdef.sh -------------------------------------------------------------------------------- /src/po/Make_all.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/Make_all.mak -------------------------------------------------------------------------------- /src/po/Make_cyg.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/Make_cyg.mak -------------------------------------------------------------------------------- /src/po/Make_ming.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/Make_ming.mak -------------------------------------------------------------------------------- /src/po/Make_mvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/Make_mvc.mak -------------------------------------------------------------------------------- /src/po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/Makefile -------------------------------------------------------------------------------- /src/po/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/README.txt -------------------------------------------------------------------------------- /src/po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/af.po -------------------------------------------------------------------------------- /src/po/big5corr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/big5corr.c -------------------------------------------------------------------------------- /src/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ca.po -------------------------------------------------------------------------------- /src/po/check.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/check.vim -------------------------------------------------------------------------------- /src/po/cleanup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/cleanup.vim -------------------------------------------------------------------------------- /src/po/cs.cp1250.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/cs.cp1250.po -------------------------------------------------------------------------------- /src/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/cs.po -------------------------------------------------------------------------------- /src/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/da.po -------------------------------------------------------------------------------- /src/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/de.po -------------------------------------------------------------------------------- /src/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/en_GB.po -------------------------------------------------------------------------------- /src/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/eo.po -------------------------------------------------------------------------------- /src/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/es.po -------------------------------------------------------------------------------- /src/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/fi.po -------------------------------------------------------------------------------- /src/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/fr.po -------------------------------------------------------------------------------- /src/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ga.po -------------------------------------------------------------------------------- /src/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/hu.po -------------------------------------------------------------------------------- /src/po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/hy.po -------------------------------------------------------------------------------- /src/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/it.po -------------------------------------------------------------------------------- /src/po/ja.euc-jp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ja.euc-jp.po -------------------------------------------------------------------------------- /src/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ja.po -------------------------------------------------------------------------------- /src/po/ja.sjis.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ja.sjis.po -------------------------------------------------------------------------------- /src/po/ko.UTF-8.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ko.UTF-8.po -------------------------------------------------------------------------------- /src/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ko.po -------------------------------------------------------------------------------- /src/po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/lv.po -------------------------------------------------------------------------------- /src/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/nb.po -------------------------------------------------------------------------------- /src/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/nl.po -------------------------------------------------------------------------------- /src/po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/no.po -------------------------------------------------------------------------------- /src/po/pl.UTF-8.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/pl.UTF-8.po -------------------------------------------------------------------------------- /src/po/pl.cp1250.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/pl.cp1250.po -------------------------------------------------------------------------------- /src/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/pl.po -------------------------------------------------------------------------------- /src/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/pt_BR.po -------------------------------------------------------------------------------- /src/po/ru.cp1251.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ru.cp1251.po -------------------------------------------------------------------------------- /src/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/ru.po -------------------------------------------------------------------------------- /src/po/sjiscorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/sjiscorr.c -------------------------------------------------------------------------------- /src/po/sk.cp1250.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/sk.cp1250.po -------------------------------------------------------------------------------- /src/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/sk.po -------------------------------------------------------------------------------- /src/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/sr.po -------------------------------------------------------------------------------- /src/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/sv.po -------------------------------------------------------------------------------- /src/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/tr.po -------------------------------------------------------------------------------- /src/po/uk.cp1251.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/uk.cp1251.po -------------------------------------------------------------------------------- /src/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/uk.po -------------------------------------------------------------------------------- /src/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/vi.po -------------------------------------------------------------------------------- /src/po/vim.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/vim.pot -------------------------------------------------------------------------------- /src/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/zh_CN.po -------------------------------------------------------------------------------- /src/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/po/zh_TW.po -------------------------------------------------------------------------------- /src/popupmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/popupmenu.c -------------------------------------------------------------------------------- /src/popupwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/popupwin.c -------------------------------------------------------------------------------- /src/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/profiler.c -------------------------------------------------------------------------------- /src/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto.h -------------------------------------------------------------------------------- /src/proto/alloc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/alloc.pro -------------------------------------------------------------------------------- /src/proto/arabic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/arabic.pro -------------------------------------------------------------------------------- /src/proto/beval.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/beval.pro -------------------------------------------------------------------------------- /src/proto/blob.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/blob.pro -------------------------------------------------------------------------------- /src/proto/buffer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/buffer.pro -------------------------------------------------------------------------------- /src/proto/change.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/change.pro -------------------------------------------------------------------------------- /src/proto/crypt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/crypt.pro -------------------------------------------------------------------------------- /src/proto/dict.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/dict.pro -------------------------------------------------------------------------------- /src/proto/diff.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/diff.pro -------------------------------------------------------------------------------- /src/proto/edit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/edit.pro -------------------------------------------------------------------------------- /src/proto/eval.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/eval.pro -------------------------------------------------------------------------------- /src/proto/fileio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/fileio.pro -------------------------------------------------------------------------------- /src/proto/float.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/float.pro -------------------------------------------------------------------------------- /src/proto/fold.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/fold.pro -------------------------------------------------------------------------------- /src/proto/fuzzy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/fuzzy.pro -------------------------------------------------------------------------------- /src/proto/gc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/gc.pro -------------------------------------------------------------------------------- /src/proto/gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/gui.pro -------------------------------------------------------------------------------- /src/proto/help.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/help.pro -------------------------------------------------------------------------------- /src/proto/if_lua.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/if_lua.pro -------------------------------------------------------------------------------- /src/proto/if_ole.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/if_ole.pro -------------------------------------------------------------------------------- /src/proto/if_tcl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/if_tcl.pro -------------------------------------------------------------------------------- /src/proto/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/indent.pro -------------------------------------------------------------------------------- /src/proto/job.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/job.pro -------------------------------------------------------------------------------- /src/proto/json.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/json.pro -------------------------------------------------------------------------------- /src/proto/list.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/list.pro -------------------------------------------------------------------------------- /src/proto/locale.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/locale.pro -------------------------------------------------------------------------------- /src/proto/main.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/main.pro -------------------------------------------------------------------------------- /src/proto/map.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/map.pro -------------------------------------------------------------------------------- /src/proto/mark.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/mark.pro -------------------------------------------------------------------------------- /src/proto/match.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/match.pro -------------------------------------------------------------------------------- /src/proto/mbyte.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/mbyte.pro -------------------------------------------------------------------------------- /src/proto/menu.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/menu.pro -------------------------------------------------------------------------------- /src/proto/misc1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/misc1.pro -------------------------------------------------------------------------------- /src/proto/misc2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/misc2.pro -------------------------------------------------------------------------------- /src/proto/mouse.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/mouse.pro -------------------------------------------------------------------------------- /src/proto/move.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/move.pro -------------------------------------------------------------------------------- /src/proto/normal.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/normal.pro -------------------------------------------------------------------------------- /src/proto/ops.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/ops.pro -------------------------------------------------------------------------------- /src/proto/option.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/option.pro -------------------------------------------------------------------------------- /src/proto/os_qnx.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/os_qnx.pro -------------------------------------------------------------------------------- /src/proto/os_vms.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/os_vms.pro -------------------------------------------------------------------------------- /src/proto/pty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/pty.pro -------------------------------------------------------------------------------- /src/proto/regexp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/regexp.pro -------------------------------------------------------------------------------- /src/proto/screen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/screen.pro -------------------------------------------------------------------------------- /src/proto/search.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/search.pro -------------------------------------------------------------------------------- /src/proto/sha256.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/sha256.pro -------------------------------------------------------------------------------- /src/proto/sign.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/sign.pro -------------------------------------------------------------------------------- /src/proto/sound.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/sound.pro -------------------------------------------------------------------------------- /src/proto/spell.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/spell.pro -------------------------------------------------------------------------------- /src/proto/syntax.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/syntax.pro -------------------------------------------------------------------------------- /src/proto/tag.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/tag.pro -------------------------------------------------------------------------------- /src/proto/term.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/term.pro -------------------------------------------------------------------------------- /src/proto/time.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/time.pro -------------------------------------------------------------------------------- /src/proto/tuple.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/tuple.pro -------------------------------------------------------------------------------- /src/proto/typval.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/typval.pro -------------------------------------------------------------------------------- /src/proto/ui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/ui.pro -------------------------------------------------------------------------------- /src/proto/undo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/undo.pro -------------------------------------------------------------------------------- /src/proto/window.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/proto/window.pro -------------------------------------------------------------------------------- /src/protodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/protodef.h -------------------------------------------------------------------------------- /src/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/pty.c -------------------------------------------------------------------------------- /src/quickfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/quickfix.c -------------------------------------------------------------------------------- /src/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/regexp.c -------------------------------------------------------------------------------- /src/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/regexp.h -------------------------------------------------------------------------------- /src/regexp_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/regexp_bt.c -------------------------------------------------------------------------------- /src/regexp_nfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/regexp_nfa.c -------------------------------------------------------------------------------- /src/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/register.c -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/scriptfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/scriptfile.c -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/search.c -------------------------------------------------------------------------------- /src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/session.c -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/sign.c -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/spell.c -------------------------------------------------------------------------------- /src/spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/spell.h -------------------------------------------------------------------------------- /src/spellfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/spellfile.c -------------------------------------------------------------------------------- /src/spellsuggest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/spellsuggest.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/structs.h -------------------------------------------------------------------------------- /src/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/syntax.c -------------------------------------------------------------------------------- /src/tabpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tabpanel.c -------------------------------------------------------------------------------- /src/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tag.c -------------------------------------------------------------------------------- /src/tearoff.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tearoff.bmp -------------------------------------------------------------------------------- /src/tee/Make_mvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tee/Make_mvc.mak -------------------------------------------------------------------------------- /src/tee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tee/Makefile -------------------------------------------------------------------------------- /src/tee/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tee/tee.c -------------------------------------------------------------------------------- /src/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/term.c -------------------------------------------------------------------------------- /src/termdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/termdefs.h -------------------------------------------------------------------------------- /src/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/terminal.c -------------------------------------------------------------------------------- /src/termlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/termlib.c -------------------------------------------------------------------------------- /src/testdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/testdir/Makefile -------------------------------------------------------------------------------- /src/testdir/python2/module.py: -------------------------------------------------------------------------------- 1 | import before_1 2 | dir = '2' 3 | -------------------------------------------------------------------------------- /src/testdir/python3/module.py: -------------------------------------------------------------------------------- 1 | import before_1 2 | dir = '3' 3 | -------------------------------------------------------------------------------- /src/testdir/python_after/after.py: -------------------------------------------------------------------------------- 1 | import before_2 2 | dir = "after" 3 | -------------------------------------------------------------------------------- /src/testdir/python_before/before.py: -------------------------------------------------------------------------------- 1 | dir = "before" 2 | -------------------------------------------------------------------------------- /src/testdir/python_before/before_1.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /src/testdir/python_before/before_2.py: -------------------------------------------------------------------------------- 1 | # empty file 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/failing.py: -------------------------------------------------------------------------------- 1 | raise NotImplementedError 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/failing_import.py: -------------------------------------------------------------------------------- 1 | raise ImportError 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/module.py: -------------------------------------------------------------------------------- 1 | dir = 'x' 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/modulex.py: -------------------------------------------------------------------------------- 1 | ddir = 'xx' 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/topmodule/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/topmodule/submodule/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/topmodule/submodule/subsubmodule/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/testdir/pythonx/topmodule/submodule/subsubmodule/subsubsubmodule.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/testdir/pyxfile/pyx.py: -------------------------------------------------------------------------------- 1 | import sys 2 | print(sys.version) 3 | -------------------------------------------------------------------------------- /src/testdir/samples/test_undo.txt: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three 4 | -------------------------------------------------------------------------------- /src/testdir/sautest/autoload/Test104.vim: -------------------------------------------------------------------------------- 1 | let Test104#numvar = 123 2 | -------------------------------------------------------------------------------- /src/testdir/sautest/autoload/globone.vim: -------------------------------------------------------------------------------- 1 | " used by Test_globpath() 2 | -------------------------------------------------------------------------------- /src/testdir/sautest/autoload/globtwo.vim: -------------------------------------------------------------------------------- 1 | " used by Test_globpath() 2 | -------------------------------------------------------------------------------- /src/testdir/test29.ok: -------------------------------------------------------------------------------- 1 | I'm alive! 2 | -------------------------------------------------------------------------------- /src/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/testing.c -------------------------------------------------------------------------------- /src/textformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/textformat.c -------------------------------------------------------------------------------- /src/textobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/textobject.c -------------------------------------------------------------------------------- /src/textprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/textprop.c -------------------------------------------------------------------------------- /src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/time.c -------------------------------------------------------------------------------- /src/toolbar.phi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/toolbar.phi -------------------------------------------------------------------------------- /src/toolcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/toolcheck -------------------------------------------------------------------------------- /src/tools.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tools.bmp -------------------------------------------------------------------------------- /src/tuple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/tuple.c -------------------------------------------------------------------------------- /src/typemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/typemap -------------------------------------------------------------------------------- /src/typval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/typval.c -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/undo.c -------------------------------------------------------------------------------- /src/uninstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/uninstall.c -------------------------------------------------------------------------------- /src/usercmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/usercmd.c -------------------------------------------------------------------------------- /src/userfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/userfunc.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/version.c -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/version.h -------------------------------------------------------------------------------- /src/vim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim.h -------------------------------------------------------------------------------- /src/vim.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim.ico -------------------------------------------------------------------------------- /src/vim.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim.manifest -------------------------------------------------------------------------------- /src/vim.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim.rc -------------------------------------------------------------------------------- /src/vim.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim.tlb -------------------------------------------------------------------------------- /src/vim9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9.h -------------------------------------------------------------------------------- /src/vim9class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9class.c -------------------------------------------------------------------------------- /src/vim9cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9cmds.c -------------------------------------------------------------------------------- /src/vim9compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9compile.c -------------------------------------------------------------------------------- /src/vim9execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9execute.c -------------------------------------------------------------------------------- /src/vim9expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9expr.c -------------------------------------------------------------------------------- /src/vim9generics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9generics.c -------------------------------------------------------------------------------- /src/vim9instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9instr.c -------------------------------------------------------------------------------- /src/vim9script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9script.c -------------------------------------------------------------------------------- /src/vim9type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim9type.c -------------------------------------------------------------------------------- /src/vim_alert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_alert.ico -------------------------------------------------------------------------------- /src/vim_error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_error.ico -------------------------------------------------------------------------------- /src/vim_icon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_icon.xbm -------------------------------------------------------------------------------- /src/vim_info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_info.ico -------------------------------------------------------------------------------- /src/vim_mask.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_mask.xbm -------------------------------------------------------------------------------- /src/vim_quest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vim_quest.ico -------------------------------------------------------------------------------- /src/viminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/viminfo.c -------------------------------------------------------------------------------- /src/vimrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vimrun.c -------------------------------------------------------------------------------- /src/vimtutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/vimtutor -------------------------------------------------------------------------------- /src/wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/wayland.c -------------------------------------------------------------------------------- /src/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/wayland.h -------------------------------------------------------------------------------- /src/which.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/which.sh -------------------------------------------------------------------------------- /src/winclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/winclip.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/window.c -------------------------------------------------------------------------------- /src/xdiff/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/COPYING -------------------------------------------------------------------------------- /src/xdiff/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/README.txt -------------------------------------------------------------------------------- /src/xdiff/xdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xdiff.h -------------------------------------------------------------------------------- /src/xdiff/xdiffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xdiffi.c -------------------------------------------------------------------------------- /src/xdiff/xdiffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xdiffi.h -------------------------------------------------------------------------------- /src/xdiff/xemit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xemit.c -------------------------------------------------------------------------------- /src/xdiff/xemit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xemit.h -------------------------------------------------------------------------------- /src/xdiff/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xinclude.h -------------------------------------------------------------------------------- /src/xdiff/xmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xmacros.h -------------------------------------------------------------------------------- /src/xdiff/xprepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xprepare.c -------------------------------------------------------------------------------- /src/xdiff/xprepare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xprepare.h -------------------------------------------------------------------------------- /src/xdiff/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xtypes.h -------------------------------------------------------------------------------- /src/xdiff/xutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xutils.c -------------------------------------------------------------------------------- /src/xdiff/xutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xdiff/xutils.h -------------------------------------------------------------------------------- /src/xpm/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xpm/COPYRIGHT -------------------------------------------------------------------------------- /src/xpm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xpm/README.txt -------------------------------------------------------------------------------- /src/xpm_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xpm_w32.c -------------------------------------------------------------------------------- /src/xpm_w32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xpm_w32.h -------------------------------------------------------------------------------- /src/xxd/Make_mvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xxd/Make_mvc.mak -------------------------------------------------------------------------------- /src/xxd/Make_vms.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xxd/Make_vms.mms -------------------------------------------------------------------------------- /src/xxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xxd/Makefile -------------------------------------------------------------------------------- /src/xxd/xxd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/src/xxd/xxd.c -------------------------------------------------------------------------------- /tools/rename.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/tools/rename.bat -------------------------------------------------------------------------------- /uninstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/uninstall.txt -------------------------------------------------------------------------------- /vimtutor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/vimtutor.bat -------------------------------------------------------------------------------- /vimtutor.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macvim-dev/macvim/HEAD/vimtutor.com --------------------------------------------------------------------------------