├── .gitignore ├── README.adoc ├── UltiSnips └── go.snippets ├── after └── syntax │ ├── epl.vim │ ├── ferm.vim │ ├── go.vim │ ├── html.vim │ ├── htmlperl.vim │ ├── markdown.vim │ ├── nftables.vim │ ├── perl.vim │ └── zsh.vim ├── bundle ├── AnsiEsc │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.md │ ├── autoload │ │ └── AnsiEsc.vim │ ├── doc │ │ └── AnsiEsc.txt │ ├── plugin │ │ ├── AnsiEscPlugin.vim │ │ └── cecutil.vim │ └── t │ │ ├── 01_files.t │ │ ├── bin │ │ ├── colordiff │ │ └── vimcat │ │ ├── data │ │ └── files │ │ │ ├── README │ │ │ ├── bull11.ans │ │ │ ├── bull12.ans │ │ │ ├── bull1_old.ans │ │ │ ├── bull2.ans │ │ │ ├── bull7.ans │ │ │ ├── bull8.ans │ │ │ ├── paws_js_pg1_w_extra_markup.ansi │ │ │ ├── simple.ansi │ │ │ └── vimcat_doc.ansi │ │ └── lib │ │ └── File │ │ └── Slurp.pm ├── UltiSnips │ ├── .github │ │ ├── FUNDING.yml │ │ ├── issue_template.md │ │ └── workflows │ │ │ └── main.yml │ ├── .gitignore │ ├── .gitrepo │ ├── CONTRIBUTING.md │ ├── COPYING.txt │ ├── ChangeLog │ ├── Dockerfile │ ├── Dockerfile.repro │ ├── Makefile │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── after │ │ └── plugin │ │ │ └── UltiSnips_after.vim │ ├── autoload │ │ ├── UltiSnips.vim │ │ ├── UltiSnips │ │ │ └── map_keys.vim │ │ ├── neocomplete │ │ │ └── sources │ │ │ │ └── ultisnips.vim │ │ └── unite │ │ │ └── sources │ │ │ └── ultisnips.vim │ ├── ctags │ │ └── UltiSnips.cnf │ ├── doc │ │ ├── UltiSnips-advanced.txt │ │ ├── UltiSnips.txt │ │ ├── demo.gif │ │ └── examples │ │ │ ├── autojump-if-empty │ │ │ ├── README.md │ │ │ ├── demo.gif │ │ │ └── snippet.gif │ │ │ ├── snippets-aliasing │ │ │ ├── README.md │ │ │ └── demo.gif │ │ │ └── tabstop-generation │ │ │ ├── README.md │ │ │ ├── demo.gif │ │ │ └── demo1.gif │ ├── docker │ │ ├── build_vim.sh │ │ ├── docker_vimrc.vim │ │ ├── download_vim.sh │ │ ├── install_packages.sh │ │ ├── run_tests.sh │ │ └── snippets │ │ │ └── all.snippets │ ├── ftdetect │ │ └── snippets.vim │ ├── ftplugin │ │ └── snippets.vim │ ├── mypy.ini │ ├── plugin │ │ └── UltiSnips.vim │ ├── pylintrc │ ├── pythonx │ │ └── UltiSnips │ │ │ ├── __init__.py │ │ │ ├── buffer_proxy.py │ │ │ ├── compatibility.py │ │ │ ├── debug.py │ │ │ ├── diff.py │ │ │ ├── err_to_scratch_buffer.py │ │ │ ├── error.py │ │ │ ├── indent_util.py │ │ │ ├── position.py │ │ │ ├── remote_pdb.py │ │ │ ├── snippet │ │ │ ├── __init__.py │ │ │ ├── definition │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── snipmate.py │ │ │ │ └── ulti_snips.py │ │ │ ├── parsing │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── lexer.py │ │ │ │ ├── snipmate.py │ │ │ │ └── ulti_snips.py │ │ │ └── source │ │ │ │ ├── __init__.py │ │ │ │ ├── added.py │ │ │ │ ├── base.py │ │ │ │ ├── file │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── common.py │ │ │ │ ├── snipmate.py │ │ │ │ └── ulti_snips.py │ │ │ │ └── snippet_dictionary.py │ │ │ ├── snippet_manager.py │ │ │ ├── test_diff.py │ │ │ ├── test_position.py │ │ │ ├── text.py │ │ │ ├── text_objects │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── choices.py │ │ │ ├── escaped_char.py │ │ │ ├── mirror.py │ │ │ ├── python_code.py │ │ │ ├── shell_code.py │ │ │ ├── snippet_instance.py │ │ │ ├── tabstop.py │ │ │ ├── transformation.py │ │ │ ├── viml_code.py │ │ │ └── visual.py │ │ │ ├── vim_helper.py │ │ │ └── vim_state.py │ ├── rplugin │ │ └── python3 │ │ │ └── deoplete │ │ │ └── sources │ │ │ └── ultisnips.py │ ├── syntax │ │ ├── snippets.vim │ │ └── snippets_snipmate.vim │ ├── test │ │ ├── __init__.py │ │ ├── constant.py │ │ ├── test_AnonymousExpansion.py │ │ ├── test_Autocommands.py │ │ ├── test_Autotrigger.py │ │ ├── test_Chars.py │ │ ├── test_Choices.py │ │ ├── test_Completion.py │ │ ├── test_ContextSnippets.py │ │ ├── test_Editing.py │ │ ├── test_Expand.py │ │ ├── test_Fixes.py │ │ ├── test_Folding.py │ │ ├── test_Format.py │ │ ├── test_Interpolation.py │ │ ├── test_ListSnippets.py │ │ ├── test_Mirror.py │ │ ├── test_Movement.py │ │ ├── test_MultipleMatches.py │ │ ├── test_ParseSnippets.py │ │ ├── test_Plugin.py │ │ ├── test_Recursive.py │ │ ├── test_Selection.py │ │ ├── test_SnipMate.py │ │ ├── test_SnippetActions.py │ │ ├── test_SnippetOptions.py │ │ ├── test_SnippetPriorities.py │ │ ├── test_TabStop.py │ │ ├── test_Transformation.py │ │ ├── test_UltiSnipFunc.py │ │ ├── test_Visual.py │ │ ├── util.py │ │ ├── vim_interface.py │ │ └── vim_test_case.py │ └── test_all.py ├── abolish │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .gitrepo │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── doc │ │ └── abolish.txt │ └── plugin │ │ └── abolish.vim ├── ack │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── ack.vim │ ├── doc │ │ ├── ack.txt │ │ └── ack_quick_help.txt │ ├── ftplugin │ │ └── qf.vim │ └── plugin │ │ └── ack.vim ├── ansible │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── UltiSnips │ │ ├── .gitignore │ │ ├── README.md │ │ ├── generate.py │ │ └── generate.sh │ ├── ftdetect │ │ └── ansible.vim │ ├── ftplugin │ │ ├── ansible.vim │ │ └── ansible_hosts.vim │ ├── indent │ │ └── ansible.vim │ └── syntax │ │ ├── ansible.vim │ │ ├── ansible_hosts.vim │ │ ├── jinja2.vim │ │ └── jinja2.vim_LICENSE ├── autosess │ ├── .gitrepo │ ├── Makefile │ ├── README.asciidoc │ ├── doc │ │ └── autosess.txt │ └── plugin │ │ └── autosess.vim ├── caddyfile │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── caddyfile.vim │ ├── ftplugin │ │ └── caddyfile.vim │ ├── indent │ │ └── caddyfile.vim │ └── syntax │ │ └── caddyfile.vim ├── conflict-marker │ ├── .codecov.yml │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── .gitrepo │ ├── README.md │ ├── autoload │ │ ├── conflict_marker.vim │ │ ├── conflict_marker │ │ │ └── detect.vim │ │ └── unite │ │ │ └── sources │ │ │ └── conflict.vim │ ├── doc │ │ └── conflict-marker.txt │ ├── plugin │ │ └── conflict_marker.vim │ └── test │ │ ├── .coveragerc │ │ ├── .gitignore │ │ ├── .themisrc │ │ ├── README.md │ │ ├── test_default.vimspec │ │ ├── test_hooks.vimspec │ │ ├── test_jump.vimspec │ │ ├── test_matchit.vimspec │ │ ├── test_resolve.vimspec │ │ └── test_syntax.vimspec ├── context_filetype │ ├── .github │ │ └── FUNDING.yml │ ├── .gitrepo │ ├── LICENSE │ ├── autoload │ │ ├── context_filetype.vim │ │ └── context_filetype │ │ │ └── defaults.vim │ ├── doc │ │ ├── context_filetype.jax │ │ └── context_filetype.txt │ └── test │ │ ├── test.vim │ │ └── test_files │ │ ├── test.html │ │ ├── test.md │ │ ├── test.ny │ │ └── test.vim ├── css3-syntax │ ├── .gitrepo │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── css │ │ │ ├── align-3.vim │ │ │ ├── anchor-position-1.vim │ │ │ ├── animation-worklet-1.vim │ │ │ ├── animations-1.vim │ │ │ ├── animations-2.vim │ │ │ ├── backgrounds-3.vim │ │ │ ├── backgrounds-4.vim │ │ │ ├── box-3.vim │ │ │ ├── box-4.vim │ │ │ ├── break-3.vim │ │ │ ├── break-4.vim │ │ │ ├── cascade-3.vim │ │ │ ├── cascade-4.vim │ │ │ ├── cascade-5.vim │ │ │ ├── cascade-6.vim │ │ │ ├── color-3.vim │ │ │ ├── color-4.vim │ │ │ ├── color-5.vim │ │ │ ├── color-adjust-1.vim │ │ │ ├── color-hdr-1.vim │ │ │ ├── compositing-1.vim │ │ │ ├── conditional-3.vim │ │ │ ├── conditional-4.vim │ │ │ ├── conditional-5.vim │ │ │ ├── contain-1.vim │ │ │ ├── contain-2.vim │ │ │ ├── contain-3.vim │ │ │ ├── content-3.vim │ │ │ ├── counter-styles-3.vim │ │ │ ├── cssom-1.vim │ │ │ ├── cssom-view-1.vim │ │ │ ├── device-adapt-1.vim │ │ │ ├── display-3.vim │ │ │ ├── display-4.vim │ │ │ ├── easing-1.vim │ │ │ ├── easing-2.vim │ │ │ ├── exclusions-3.vim │ │ │ ├── fill-stroke-3.vim │ │ │ ├── filter-effects-1.vim │ │ │ ├── flexbox-1.vim │ │ │ ├── font-loading-3.vim │ │ │ ├── fonts-3.vim │ │ │ ├── fonts-4.vim │ │ │ ├── forms-1.vim │ │ │ ├── gaps-1.vim │ │ │ ├── gcpm-3.vim │ │ │ ├── geometry-1.vim │ │ │ ├── grid-1.vim │ │ │ ├── grid-2.vim │ │ │ ├── grid-3.vim │ │ │ ├── highlight-api-1.vim │ │ │ ├── html5.vim │ │ │ ├── images-3.vim │ │ │ ├── images-4.vim │ │ │ ├── inline-3.vim │ │ │ ├── layout-api-1.vim │ │ │ ├── line-grid-1.vim │ │ │ ├── lists-3.vim │ │ │ ├── logical-1.vim │ │ │ ├── masking-1.vim │ │ │ ├── mixins-1.vim │ │ │ ├── motion-1.vim │ │ │ ├── multicol-1.vim │ │ │ ├── multicol-2.vim │ │ │ ├── namespace-3.vim │ │ │ ├── nav-1.vim │ │ │ ├── overflow-3.vim │ │ │ ├── overflow-4.vim │ │ │ ├── overflow-5.vim │ │ │ ├── overscroll-1.vim │ │ │ ├── page-3.vim │ │ │ ├── page-floats-3.vim │ │ │ ├── paint-api-1.vim │ │ │ ├── pointerevents.vim │ │ │ ├── position-3.vim │ │ │ ├── properties-values-api-1.vim │ │ │ ├── pseudo-4.vim │ │ │ ├── regions-1.vim │ │ │ ├── resize-observer-1.vim │ │ │ ├── rhythm-1.vim │ │ │ ├── round-display-1.vim │ │ │ ├── ruby-1.vim │ │ │ ├── scoping-1.vim │ │ │ ├── scroll-anchoring-1.vim │ │ │ ├── scroll-animations-1.vim │ │ │ ├── scroll-snap-1.vim │ │ │ ├── scroll-snap-2.vim │ │ │ ├── scrollbars-1.vim │ │ │ ├── selectors-3.vim │ │ │ ├── selectors-4.vim │ │ │ ├── shadow-parts-1.vim │ │ │ ├── shapes-1.vim │ │ │ ├── sizing-3.vim │ │ │ ├── sizing-4.vim │ │ │ ├── speech-1.vim │ │ │ ├── style-attr.vim │ │ │ ├── svg2.vim │ │ │ ├── syntax-3.vim │ │ │ ├── tables-3.vim │ │ │ ├── text-3.vim │ │ │ ├── text-4.vim │ │ │ ├── text-decor-3.vim │ │ │ ├── text-decor-4.vim │ │ │ ├── timing-1.vim │ │ │ ├── transforms-1.vim │ │ │ ├── transforms-2.vim │ │ │ ├── transitions-1.vim │ │ │ ├── transitions-2.vim │ │ │ ├── typed-om-1.vim │ │ │ ├── ui-3.vim │ │ │ ├── ui-4.vim │ │ │ ├── unofficials.vim │ │ │ ├── values-3.vim │ │ │ ├── values-4.vim │ │ │ ├── values-5.vim │ │ │ ├── variables-1.vim │ │ │ ├── view-transitions-1.vim │ │ │ ├── view-transitions-2.vim │ │ │ ├── web-animations-1.vim │ │ │ ├── web-animations-2.vim │ │ │ ├── webvtt1.vim │ │ │ ├── will-change-1.vim │ │ │ ├── writing-modes-3.vim │ │ │ └── writing-modes-4.vim │ └── test │ │ └── test.css ├── ctrlp │ ├── .gitignore │ ├── .gitrepo │ ├── autoload │ │ ├── ctrlp.vim │ │ └── ctrlp │ │ │ ├── bookmarkdir.vim │ │ │ ├── buffertag.vim │ │ │ ├── changes.vim │ │ │ ├── dir.vim │ │ │ ├── line.vim │ │ │ ├── mixed.vim │ │ │ ├── mrufiles.vim │ │ │ ├── quickfix.vim │ │ │ ├── rtscript.vim │ │ │ ├── tag.vim │ │ │ ├── undo.vim │ │ │ └── utils.vim │ ├── doc │ │ └── ctrlp.txt │ ├── plugin │ │ └── ctrlp.vim │ └── readme.md ├── deoplete-emoji │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── doc │ │ └── deoplete_emoji.txt │ ├── rplugin │ │ └── python3 │ │ │ └── deoplete │ │ │ ├── filter │ │ │ └── converter_emoji.py │ │ │ └── sources │ │ │ ├── emoji.py │ │ │ └── emoji │ │ │ └── data.py │ └── tools │ │ └── generate-emoji.py ├── deoplete │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── autoload │ │ ├── deoplete.vim │ │ ├── deoplete │ │ │ ├── _main.py │ │ │ ├── custom.vim │ │ │ ├── handler.vim │ │ │ ├── init.vim │ │ │ ├── mapping.vim │ │ │ └── util.vim │ │ └── health │ │ │ └── deoplete.vim │ ├── doc │ │ └── deoplete.txt │ ├── plugin │ │ └── deoplete.vim │ ├── rplugin │ │ └── python3 │ │ │ └── deoplete │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── filter.py │ │ │ └── source.py │ │ │ ├── child.py │ │ │ ├── context.py │ │ │ ├── deoplete.py │ │ │ ├── exceptions.py │ │ │ ├── filter │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── converter_auto_delimiter.py │ │ │ ├── converter_auto_paren.py │ │ │ ├── converter_case.py │ │ │ ├── converter_remove_overlap.py │ │ │ ├── converter_remove_paren.py │ │ │ ├── converter_reorder_attr.py │ │ │ ├── converter_truncate_abbr.py │ │ │ ├── converter_truncate_info.py │ │ │ ├── converter_truncate_kind.py │ │ │ ├── converter_truncate_menu.py │ │ │ ├── converter_word_abbr.py │ │ │ ├── matcher_cpsm.py │ │ │ ├── matcher_full_fuzzy.py │ │ │ ├── matcher_fuzzy.py │ │ │ ├── matcher_head.py │ │ │ ├── matcher_length.py │ │ │ ├── matcher_matchfuzzy.py │ │ │ ├── sorter_rank.py │ │ │ └── sorter_word.py │ │ │ ├── logger.py │ │ │ ├── parent.py │ │ │ ├── process.py │ │ │ ├── source │ │ │ ├── __init__.py │ │ │ ├── around.py │ │ │ ├── base.py │ │ │ ├── buffer.py │ │ │ ├── file.py │ │ │ ├── member.py │ │ │ └── omni.py │ │ │ └── util.py │ └── test │ │ ├── autoload │ │ └── deoplete │ │ │ ├── custom.vim │ │ │ └── util.vim │ │ ├── conftest.py │ │ ├── requirements.txt │ │ └── rplugin │ │ └── python3 │ │ └── deoplete │ │ ├── test_converter_reorder_attr.py │ │ ├── test_filter.py │ │ ├── test_matcher_full_fuzzy.py │ │ ├── test_matcher_fuzzy.py │ │ └── test_util.py ├── ferm │ ├── .gitrepo │ ├── README.md │ ├── ftdetect │ │ └── ferm.vim │ └── syntax │ │ └── ferm.vim ├── fixtermkeys │ ├── .gitrepo │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── plugin │ │ └── fixtermkeys.vim ├── foldutil │ ├── .gitrepo │ ├── README │ └── plugin │ │ └── foldutil.vim ├── fugitive-github │ ├── LICENSE │ ├── autoload │ │ └── rhubarb.vim │ ├── doc │ │ └── rhubarb.txt │ └── plugin │ │ └── rhubarb.vim ├── fugitive │ ├── autoload │ │ └── fugitive.vim │ ├── doc │ │ └── fugitive.txt │ ├── ftdetect │ │ └── fugitive.vim │ ├── ftplugin │ │ └── fugitiveblame.vim │ ├── plugin │ │ └── fugitive.vim │ └── syntax │ │ ├── fugitive.vim │ │ └── fugitiveblame.vim ├── genutils │ ├── .gitrepo │ ├── README │ ├── autoload │ │ └── genutils.vim │ └── plugin │ │ └── genutils.vim ├── gnupg │ ├── .gitrepo │ ├── README.md │ ├── autoload │ │ └── gnupg.vim │ ├── doc │ │ └── gnupg.txt │ └── plugin │ │ └── gnupg.vim ├── go │ ├── .codecov.yml │ ├── .coveragerc │ ├── .dockerignore │ ├── .editorconfig │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── config.yml │ │ │ └── default.md │ │ ├── issue_template.md │ │ └── workflows │ │ │ ├── git.yml │ │ │ └── test.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .vintrc.yaml │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── addon-info.json │ ├── assets │ │ ├── vim-go.png │ │ └── vim-go.svg │ ├── autoload │ │ ├── ctrlp │ │ │ └── decls.vim │ │ ├── fzf │ │ │ └── decls.vim │ │ ├── go │ │ │ ├── alternate.vim │ │ │ ├── asmfmt.vim │ │ │ ├── auto.vim │ │ │ ├── calls.vim │ │ │ ├── calls_test.vim │ │ │ ├── cmd.vim │ │ │ ├── cmd_test.vim │ │ │ ├── complete.vim │ │ │ ├── complete_test.vim │ │ │ ├── config.vim │ │ │ ├── config_test.vim │ │ │ ├── coverage.vim │ │ │ ├── debug.vim │ │ │ ├── debug_test.vim │ │ │ ├── decls.vim │ │ │ ├── def.vim │ │ │ ├── def_test.vim │ │ │ ├── doc.vim │ │ │ ├── extract.vim │ │ │ ├── extract_test.vim │ │ │ ├── fillstruct.vim │ │ │ ├── fillstruct_test.vim │ │ │ ├── fmt.vim │ │ │ ├── fmt_test.vim │ │ │ ├── highlight_test.vim │ │ │ ├── iferr.vim │ │ │ ├── impl.vim │ │ │ ├── impl_test.vim │ │ │ ├── implements.vim │ │ │ ├── import.vim │ │ │ ├── import_test.vim │ │ │ ├── indent_test.vim │ │ │ ├── issue.vim │ │ │ ├── job.vim │ │ │ ├── job_test.vim │ │ │ ├── lint.vim │ │ │ ├── lint_test.vim │ │ │ ├── list.vim │ │ │ ├── lsp.vim │ │ │ ├── lsp │ │ │ │ ├── completionitemkind.vim │ │ │ │ ├── filechangetype.vim │ │ │ │ ├── lsp.vim │ │ │ │ ├── lsp_test.vim │ │ │ │ └── message.vim │ │ │ ├── lsp_test.vim │ │ │ ├── mod.vim │ │ │ ├── package.vim │ │ │ ├── package_test.vim │ │ │ ├── path.vim │ │ │ ├── play.vim │ │ │ ├── promise.vim │ │ │ ├── promise_test.vim │ │ │ ├── referrers.vim │ │ │ ├── rename.vim │ │ │ ├── sameids.vim │ │ │ ├── statusline.vim │ │ │ ├── tags.vim │ │ │ ├── tags_test.vim │ │ │ ├── template.vim │ │ │ ├── template_test.vim │ │ │ ├── term.vim │ │ │ ├── term_test.vim │ │ │ ├── test-fixtures │ │ │ │ ├── cmd │ │ │ │ │ └── bad.go │ │ │ │ ├── complete │ │ │ │ │ └── complete.go │ │ │ │ ├── config │ │ │ │ │ └── buildtags │ │ │ │ │ │ ├── buildtags.go │ │ │ │ │ │ ├── constrainedfoo.go │ │ │ │ │ │ ├── foo.go │ │ │ │ │ │ └── go.mod │ │ │ │ ├── debug │ │ │ │ │ ├── compilerror │ │ │ │ │ │ └── main.go │ │ │ │ │ └── debugmain │ │ │ │ │ │ └── debugmain.go │ │ │ │ ├── def │ │ │ │ │ └── jump.go │ │ │ │ ├── fmt │ │ │ │ │ ├── hello.go │ │ │ │ │ ├── hello_golden.go │ │ │ │ │ └── src │ │ │ │ │ │ └── imports │ │ │ │ │ │ ├── goimports.go │ │ │ │ │ │ ├── goimports_golden.go │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── gh.com │ │ │ │ │ │ └── gi │ │ │ │ │ │ └── foo-logging │ │ │ │ │ │ └── logger.go │ │ │ │ ├── job │ │ │ │ │ └── dir has spaces │ │ │ │ │ │ └── main.go │ │ │ │ ├── lint │ │ │ │ │ └── src │ │ │ │ │ │ ├── errcheck │ │ │ │ │ │ ├── compilererror │ │ │ │ │ │ │ └── compilererror.go │ │ │ │ │ │ ├── errcheck.go │ │ │ │ │ │ ├── errcheck_test.go │ │ │ │ │ │ └── go.mod │ │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── foo.go │ │ │ │ │ │ └── go.mod │ │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── baz.go │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── golangci-lint │ │ │ │ │ │ │ └── problems │ │ │ │ │ │ │ │ ├── importabs │ │ │ │ │ │ │ │ ├── ok.go │ │ │ │ │ │ │ │ └── problems.go │ │ │ │ │ │ │ │ ├── multiple │ │ │ │ │ │ │ │ └── problems.go │ │ │ │ │ │ │ │ └── shadow │ │ │ │ │ │ │ │ └── problems.go │ │ │ │ │ │ ├── lint.go │ │ │ │ │ │ └── quux.go │ │ │ │ │ │ └── vet │ │ │ │ │ │ ├── compilererror │ │ │ │ │ │ └── compilererror.go │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ └── vet.go │ │ │ │ ├── lsp │ │ │ │ │ ├── fmt │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── format_golden.go │ │ │ │ │ │ ├── multibyte.go │ │ │ │ │ │ ├── multibyte_golden.go │ │ │ │ │ │ └── newline.go │ │ │ │ │ └── imports │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ └── imports_golden.go │ │ │ │ ├── package │ │ │ │ │ └── src │ │ │ │ │ │ └── package │ │ │ │ │ │ ├── bar │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── baz │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── package.go │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── tags │ │ │ │ │ ├── add_all_golden.go │ │ │ │ │ ├── add_all_golden_options.go │ │ │ │ │ ├── add_all_input.go │ │ │ │ │ ├── remove_all_golden.go │ │ │ │ │ └── remove_all_input.go │ │ │ │ ├── term │ │ │ │ │ └── term.go │ │ │ │ └── test │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── src │ │ │ │ │ ├── compilerror │ │ │ │ │ ├── compilerror.go │ │ │ │ │ └── go.mod │ │ │ │ │ ├── example │ │ │ │ │ ├── example.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── go.mod │ │ │ │ │ ├── play │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── mock │ │ │ │ │ │ └── controller.go │ │ │ │ │ └── play_test.go │ │ │ │ │ ├── showname │ │ │ │ │ ├── go.mod │ │ │ │ │ └── showname_test.go │ │ │ │ │ ├── testcompilerror │ │ │ │ │ ├── go.mod │ │ │ │ │ └── testcompilerror_test.go │ │ │ │ │ ├── timeout │ │ │ │ │ ├── go.mod │ │ │ │ │ └── timeout_test.go │ │ │ │ │ └── veterror │ │ │ │ │ ├── go.mod │ │ │ │ │ └── veterror.go │ │ │ ├── test.vim │ │ │ ├── test_test.vim │ │ │ ├── textobj.vim │ │ │ ├── tool.vim │ │ │ ├── tool_test.vim │ │ │ ├── ui.vim │ │ │ ├── uri.vim │ │ │ ├── uri_test.vim │ │ │ └── util.vim │ │ ├── gotest.vim │ │ └── unite │ │ │ └── sources │ │ │ └── decls.vim │ ├── compiler │ │ └── go.vim │ ├── doc │ │ └── vim-go.txt │ ├── ftdetect │ │ └── gofiletype.vim │ ├── ftplugin │ │ ├── asm.vim │ │ ├── go.vim │ │ ├── go │ │ │ ├── commands.vim │ │ │ ├── mappings.vim │ │ │ ├── snippets.vim │ │ │ └── tagbar.vim │ │ ├── godoc.vim │ │ ├── godoc │ │ │ ├── commands.vim │ │ │ └── mappings.vim │ │ ├── gohtmltmpl.vim │ │ ├── gomod.vim │ │ └── gomod │ │ │ ├── commands.vim │ │ │ └── mappings.vim │ ├── gosnippets │ │ ├── UltiSnips │ │ │ └── go.snippets │ │ ├── minisnip │ │ │ ├── _go_eq │ │ │ ├── _go_err │ │ │ ├── _go_errt │ │ │ ├── _go_errw │ │ │ ├── _go_f │ │ │ ├── _go_ff │ │ │ ├── _go_fori │ │ │ ├── _go_pkg │ │ │ ├── _go_sp │ │ │ └── _go_tt │ │ └── snippets │ │ │ └── go.snip │ ├── indent │ │ ├── go.vim │ │ └── gohtmltmpl.vim │ ├── plugin │ │ └── go.vim │ ├── rplugin │ │ └── python3 │ │ │ └── denite │ │ │ └── source │ │ │ └── decls.py │ ├── scripts │ │ ├── bench-syntax │ │ ├── docker-test │ │ ├── install-tools │ │ ├── install-vim │ │ ├── lint │ │ ├── run-vim │ │ ├── runbench.vim │ │ ├── runtest.vim │ │ └── test │ ├── syntax │ │ ├── go.vim │ │ ├── godebugoutput.vim │ │ ├── godebugstacktrace.vim │ │ ├── godebugvariables.vim │ │ ├── godefstack.vim │ │ ├── gohtmltmpl.vim │ │ ├── gomod.vim │ │ ├── gosum.vim │ │ ├── gotexttmpl.vim │ │ ├── gowork.vim │ │ └── vimgo.vim │ ├── templates │ │ ├── hello_world.go │ │ └── hello_world_test.go │ └── test │ │ └── parse.go ├── html5 │ ├── .gitignore │ ├── .gitrepo │ ├── CHANGES.markdown │ ├── Makefile │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── html.vim │ ├── autoload │ │ ├── htmlcomplete.vim │ │ └── xml │ │ │ ├── aria.vim │ │ │ └── html5.vim │ ├── config.mk │ ├── ftplugin │ │ └── html.vim │ ├── indent │ │ └── html.vim │ └── syntax │ │ ├── html.vim │ │ ├── html │ │ ├── aria.vim │ │ ├── electron.vim │ │ └── rdfa.vim │ │ └── javascript │ │ └── html5.vim ├── largefile │ ├── .gitrepo │ ├── README │ ├── doc │ │ └── LargeFile.txt │ └── plugin │ │ └── LargeFile.vim ├── less │ ├── .gitrepo │ ├── README.md │ ├── ftdetect │ │ └── less.vim │ ├── ftplugin │ │ └── less.vim │ ├── indent │ │ └── less.vim │ └── syntax │ │ └── less.vim ├── linediff │ ├── .github │ │ └── workflows │ │ │ └── mirror.yml │ ├── .gitignore │ ├── .gitrepo │ ├── .rspec │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.markdown │ ├── Rakefile │ ├── _project.vim │ ├── autoload │ │ ├── linediff.vim │ │ └── linediff │ │ │ ├── controller.vim │ │ │ └── differ.vim │ ├── doc │ │ └── linediff.txt │ ├── example │ │ ├── one.rb │ │ └── two.rb │ ├── plugin │ │ └── linediff.vim │ └── spec │ │ ├── plugin │ │ ├── basic_spec.rb │ │ ├── closing_diff_buffers_spec.rb │ │ ├── merge_conflict_spec.rb │ │ ├── multiple_diffs_spec.rb │ │ └── multiple_lines_spec.rb │ │ ├── spec_helper.rb │ │ └── support │ │ └── vim.rb ├── maildrop │ ├── .gitrepo │ ├── README.md │ ├── ftdetect │ │ └── maildrop.vim │ ├── ftplugin │ │ └── maildrop.vim │ └── syntax │ │ └── maildrop.vim ├── markdown-toc │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── ftplugin │ │ └── markdown.vim │ ├── screenshots │ │ ├── chinese.gif │ │ └── english.gif │ └── test │ │ ├── GFM.md │ │ ├── Marked.md │ │ └── test.vim ├── mojo │ ├── .gitrepo │ ├── Changes │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── after │ │ └── syntax │ │ │ └── perl │ │ │ └── MojoliciousLite.vim │ ├── ftdetect │ │ └── epl.vim │ ├── snippets │ │ └── epl.snippets │ ├── syntax │ │ └── epl.vim │ └── t │ │ ├── 01_epl.t │ │ ├── 02_lite.t │ │ ├── 03_helpers.t │ │ ├── 04_tag_helpers.t │ │ ├── 05_javascript.t │ │ ├── 06_css.t │ │ ├── 07_perl_braces.t │ │ └── lib │ │ └── Test │ │ └── VimSyntax.pm ├── neco-vim │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── autoload │ │ ├── cm │ │ │ └── sources │ │ │ │ └── necovim.vim │ │ ├── necovim.vim │ │ ├── necovim │ │ │ └── helper.vim │ │ └── neocomplete │ │ │ └── sources │ │ │ └── vim.vim │ ├── denops │ │ └── @ddc-sources │ │ │ └── necovim.ts │ ├── doc │ │ └── necovim.txt │ ├── plugin │ │ └── necovim.vim │ └── rplugin │ │ └── python3 │ │ └── deoplete │ │ └── source │ │ └── vim.py ├── nftables │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── nftables.vim │ ├── ftplugin │ │ └── nftables.vim │ ├── indent │ │ └── nftables.vim │ └── syntax │ │ └── nftables.vim ├── nvim-yarp │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── yarp.vim │ │ └── yarp │ │ │ ├── core.vim │ │ │ └── pyx.vim │ ├── pythonx │ │ └── yarp.py │ └── requirements.txt ├── pathogen │ ├── .github │ │ └── FUNDING.yml │ ├── .gitrepo │ ├── CONTRIBUTING.markdown │ ├── LICENSE │ ├── README.markdown │ └── autoload │ │ └── pathogen.vim ├── ruscmd │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.asciidoc │ └── plugin │ │ └── ruscmd.vim ├── shfmt │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── shfmt.vim │ └── plugin │ │ └── shfmt.vim ├── snippets │ ├── .gitignore │ ├── .gitrepo │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── UltiSnips │ │ ├── README │ │ ├── ada.snippets │ │ ├── all.snippets │ │ ├── bib.snippets │ │ ├── bindzone.snippets │ │ ├── blade.snippets │ │ ├── c.snippets │ │ ├── coffee-jasmine.snippets │ │ ├── coffee-react.snippets │ │ ├── coffee.snippets │ │ ├── cpp.snippets │ │ ├── crystal.snippets │ │ ├── cs.snippets │ │ ├── css.snippets │ │ ├── cuda.snippets │ │ ├── d.snippets │ │ ├── django.snippets │ │ ├── eelixir.snippets │ │ ├── ejs.snippets │ │ ├── elm.snippets │ │ ├── erlang.snippets │ │ ├── eruby.snippets │ │ ├── gitcommit.snippets │ │ ├── go.snippets │ │ ├── haskell.snippets │ │ ├── help.snippets │ │ ├── html.snippets │ │ ├── html_minimal.snippets │ │ ├── htmldjango.snippets │ │ ├── htmljinja.snippets │ │ ├── java.snippets │ │ ├── javascript-angular.snippets │ │ ├── javascript-ember.snippets │ │ ├── javascript-jasmine-arrow.snippets │ │ ├── javascript-jsdoc.snippets │ │ ├── javascript-node.snippets │ │ ├── javascript.snippets │ │ ├── javascript_react.snippets │ │ ├── jinja2.snippets │ │ ├── json.snippets │ │ ├── julia.snippets │ │ ├── ledger.snippets │ │ ├── lhaskell.snippets │ │ ├── lua.snippets │ │ ├── mako.snippets │ │ ├── markdown.snippets │ │ ├── matlab.snippets │ │ ├── objc.snippets │ │ ├── ocaml.snippets │ │ ├── octave.snippets │ │ ├── pandoc.snippets │ │ ├── perl.snippets │ │ ├── php-laravel.snippets │ │ ├── php-phpspec.snippets │ │ ├── php-symfony2.snippets │ │ ├── php.snippets │ │ ├── plsql.snippets │ │ ├── proto.snippets │ │ ├── puppet.snippets │ │ ├── python.snippets │ │ ├── r.snippets │ │ ├── rails.snippets │ │ ├── rnoweb.snippets │ │ ├── robot.snippets │ │ ├── rst.snippets │ │ ├── ruby.snippets │ │ ├── rust.snippets │ │ ├── sh.snippets │ │ ├── smarty.snippets │ │ ├── snippets.snippets │ │ ├── soy.snippets │ │ ├── supercollider.snippets │ │ ├── svelte.snippets │ │ ├── tcl.snippets │ │ ├── tex.snippets │ │ ├── texmath.snippets │ │ ├── typescript.snippets │ │ ├── typescript_react.snippets │ │ ├── vim.snippets │ │ ├── vue.snippets │ │ ├── xhtml.snippets │ │ ├── xml.snippets │ │ └── zsh.snippets │ ├── addon-info.json │ ├── autoload │ │ └── vim_snippets.vim │ ├── plugin │ │ └── vimsnippets.vim │ ├── pythonx │ │ ├── javascript_snippets.py │ │ └── vimsnippets.py │ ├── snippets │ │ ├── _.snippets │ │ ├── actionscript.snippets │ │ ├── ada.snippets │ │ ├── all.snippets │ │ ├── alpaca.snippets │ │ ├── apache.snippets │ │ ├── arduino.snippets │ │ ├── asm.snippets │ │ ├── autoit.snippets │ │ ├── awk.snippets │ │ ├── bash.snippets │ │ ├── c.snippets │ │ ├── chef.snippets │ │ ├── clojure.snippets │ │ ├── cmake.snippets │ │ ├── codeigniter.snippets │ │ ├── coffee │ │ │ ├── angular_coffee.snippets │ │ │ ├── coffee.snippets │ │ │ ├── jquery_coffee.snippets │ │ │ └── requirejs_coffee.snippets │ │ ├── cpp.snippets │ │ ├── crystal.snippets │ │ ├── cs.snippets │ │ ├── css.snippets │ │ ├── cuda.snippets │ │ ├── d.snippets │ │ ├── dart-flutter.snippets │ │ ├── dart.snippets │ │ ├── diff.snippets │ │ ├── django.snippets │ │ ├── dosini.snippets │ │ ├── eelixir.snippets │ │ ├── elixir.snippets │ │ ├── elm.snippets │ │ ├── erlang.snippets │ │ ├── eruby.snippets │ │ ├── falcon.snippets │ │ ├── fortran.snippets │ │ ├── freemarker.snippets │ │ ├── fsharp.snippets │ │ ├── gdscript.snippets │ │ ├── gitcommit.snippets │ │ ├── gleam.snippets │ │ ├── go.snippets │ │ ├── haml.snippets │ │ ├── handlebars.snippets │ │ ├── haskell.snippets │ │ ├── heex.snippets │ │ ├── helm.snippets │ │ ├── html.snippets │ │ ├── htmldjango.snippets │ │ ├── htmltornado.snippets │ │ ├── idris.snippets │ │ ├── jade.snippets │ │ ├── java.snippets │ │ ├── javascript-bemjson.snippets │ │ ├── javascript-d3.snippets │ │ ├── javascript-jasmine.snippets │ │ ├── javascript-mocha.snippets │ │ ├── javascript-openui5.snippets │ │ ├── javascript │ │ │ ├── javascript-jquery.snippets │ │ │ ├── javascript-react.snippets │ │ │ ├── javascript-redux.snippets │ │ │ ├── javascript-requirejs.snippets │ │ │ ├── javascript.node.snippets │ │ │ └── javascript.snippets │ │ ├── jenkins.snippets │ │ ├── jinja.snippets │ │ ├── jsp.snippets │ │ ├── julia.snippets │ │ ├── kotlin.snippets │ │ ├── laravel.snippets │ │ ├── ledger.snippets │ │ ├── lfe.snippets │ │ ├── liquid.snippets │ │ ├── lpc.snippets │ │ ├── ls.snippets │ │ ├── lua.snippets │ │ ├── make.snippets │ │ ├── mako.snippets │ │ ├── markdown.snippets │ │ ├── matlab.snippets │ │ ├── mustache.snippets │ │ ├── objc.snippets │ │ ├── ocaml.snippets │ │ ├── octave.snippets │ │ ├── openfoam.snippets │ │ ├── org.snippets │ │ ├── pandoc.snippets │ │ ├── perl.snippets │ │ ├── perl6.snippets │ │ ├── phoenix.snippets │ │ ├── php.snippets │ │ ├── plsql.snippets │ │ ├── po.snippets │ │ ├── processing.snippets │ │ ├── progress.snippets │ │ ├── ps1.snippets │ │ ├── puppet.snippets │ │ ├── purescript.snippets │ │ ├── python.snippets │ │ ├── r.snippets │ │ ├── racket.snippets │ │ ├── rails.snippets │ │ ├── reason.snippets │ │ ├── rmd.snippets │ │ ├── rst.snippets │ │ ├── ruby.snippets │ │ ├── rust.snippets │ │ ├── sass.snippets │ │ ├── scala.snippets │ │ ├── scheme.snippets │ │ ├── scss.snippets │ │ ├── sh.snippets │ │ ├── simplemvcf.snippets │ │ ├── slim.snippets │ │ ├── smarty.snippets │ │ ├── snippets.snippets │ │ ├── sql.snippets │ │ ├── stylus.snippets │ │ ├── supercollider.snippets │ │ ├── svelte.snippets │ │ ├── systemverilog.snippets │ │ ├── tcl.snippets │ │ ├── tex.snippets │ │ ├── textile.snippets │ │ ├── twig.snippets │ │ ├── typescript.snippets │ │ ├── typescriptreact.snippets │ │ ├── verilog.snippets │ │ ├── vhdl.snippets │ │ ├── vim.snippets │ │ ├── vue.snippets │ │ ├── xml.snippets │ │ ├── xslt.snippets │ │ ├── yii-chtml.snippets │ │ ├── yii.snippets │ │ └── zsh.snippets │ └── tests.sh ├── sparkup │ ├── README.txt │ └── ftplugin │ │ └── html │ │ ├── sparkup.py │ │ └── sparkup.vim ├── splitjoin │ ├── .github │ │ └── workflows │ │ │ └── mirror.yml │ ├── .gitignore │ ├── .gitmodules │ ├── .gitrepo │ ├── .rspec │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Gemfile │ ├── Guardfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── autoload │ │ ├── sj.vim │ │ └── sj │ │ │ ├── argparser │ │ │ ├── clojure.vim │ │ │ ├── common.vim │ │ │ ├── elixir.vim │ │ │ ├── go_vars.vim │ │ │ ├── html_args.vim │ │ │ ├── js.vim │ │ │ ├── json.vim │ │ │ ├── ruby.vim │ │ │ ├── rust_list.vim │ │ │ ├── rust_struct.vim │ │ │ └── sh.vim │ │ │ ├── c.vim │ │ │ ├── clojure.vim │ │ │ ├── coffee.vim │ │ │ ├── css.vim │ │ │ ├── cue.vim │ │ │ ├── elixir.vim │ │ │ ├── elm.vim │ │ │ ├── eruby.vim │ │ │ ├── fasta.vim │ │ │ ├── go.vim │ │ │ ├── haml.vim │ │ │ ├── handlebars.vim │ │ │ ├── hare.vim │ │ │ ├── html.vim │ │ │ ├── java.vim │ │ │ ├── js.vim │ │ │ ├── jsx.vim │ │ │ ├── lua.vim │ │ │ ├── perl.vim │ │ │ ├── php.vim │ │ │ ├── python.vim │ │ │ ├── r.vim │ │ │ ├── ruby.vim │ │ │ ├── rust.vim │ │ │ ├── scss.vim │ │ │ ├── settings.vim │ │ │ ├── sh.vim │ │ │ ├── tex.vim │ │ │ ├── vim.vim │ │ │ ├── vue.vim │ │ │ └── yaml.vim │ ├── doc │ │ └── splitjoin.txt │ ├── ftplugin │ │ ├── c │ │ │ └── splitjoin.vim │ │ ├── clojure │ │ │ └── splitjoin.vim │ │ ├── coffee │ │ │ └── splitjoin.vim │ │ ├── cs │ │ │ └── splitjoin.vim │ │ ├── css │ │ │ └── splitjoin.vim │ │ ├── cue │ │ │ └── splitjoin.vim │ │ ├── elixir │ │ │ └── splitjoin.vim │ │ ├── elm │ │ │ └── splitjoin.vim │ │ ├── eruby │ │ │ └── splitjoin.vim │ │ ├── fasta │ │ │ └── splitjoin.vim │ │ ├── go │ │ │ └── splitjoin.vim │ │ ├── haml │ │ │ └── splitjoin.vim │ │ ├── handlebars │ │ │ └── splitjoin.vim │ │ ├── hare │ │ │ └── splitjoin.vim │ │ ├── html │ │ │ └── splitjoin.vim │ │ ├── htmldjango │ │ │ └── splitjoin.vim │ │ ├── java │ │ │ └── splitjoin.vim │ │ ├── javascript │ │ │ └── splitjoin.vim │ │ ├── javascriptreact │ │ │ └── splitjoin.vim │ │ ├── json │ │ │ └── splitjoin.vim │ │ ├── jsx │ │ │ └── splitjoin.vim │ │ ├── less │ │ │ └── splitjoin.vim │ │ ├── lua │ │ │ └── splitjoin.vim │ │ ├── perl │ │ │ └── splitjoin.vim │ │ ├── php │ │ │ └── splitjoin.vim │ │ ├── python │ │ │ └── splitjoin.vim │ │ ├── r │ │ │ └── splitjoin.vim │ │ ├── ruby │ │ │ └── splitjoin.vim │ │ ├── rust │ │ │ └── splitjoin.vim │ │ ├── scss │ │ │ └── splitjoin.vim │ │ ├── sh │ │ │ └── splitjoin.vim │ │ ├── snakemake │ │ │ └── splitjoin.vim │ │ ├── svelte │ │ │ └── splitjoin.vim │ │ ├── tex │ │ │ └── splitjoin.vim │ │ ├── tsx │ │ │ └── splitjoin.vim │ │ ├── typescript │ │ │ └── splitjoin.vim │ │ ├── typescriptreact │ │ │ └── splitjoin.vim │ │ ├── vim │ │ │ └── splitjoin.vim │ │ ├── vue │ │ │ └── splitjoin.vim │ │ ├── xml │ │ │ └── splitjoin.vim │ │ ├── yaml │ │ │ └── splitjoin.vim │ │ └── zsh │ │ │ └── splitjoin.vim │ ├── plugin │ │ └── splitjoin.vim │ └── spec │ │ ├── plugin │ │ ├── c_spec.rb │ │ ├── clojure_spec.rb │ │ ├── coffee_spec.rb │ │ ├── css_spec.rb │ │ ├── elixir_spec.rb │ │ ├── elm_spec.rb │ │ ├── eruby_spec.rb │ │ ├── fasta_spec.rb │ │ ├── go_spec.rb │ │ ├── haml_spec.rb │ │ ├── handlebars_spec.rb │ │ ├── hare_spec.rb │ │ ├── html_spec.rb │ │ ├── java_spec.rb │ │ ├── js_spec.rb │ │ ├── jsx_spec.rb │ │ ├── lua_spec.rb │ │ ├── perl_spec.rb │ │ ├── php_spec.rb │ │ ├── python_spec.rb │ │ ├── r_spec.rb │ │ ├── ruby_spec.rb │ │ ├── rust_spec.rb │ │ ├── scss_spec.rb │ │ ├── settings_spec.rb │ │ ├── sh_spec.rb │ │ ├── tex_spec.rb │ │ ├── vim_spec.rb │ │ └── yaml_spec.rb │ │ ├── spec_helper.rb │ │ └── support │ │ └── vim.rb ├── swift │ ├── .gitrepo │ ├── README.md │ ├── ftdetect │ │ └── swift.vim │ ├── indent │ │ └── swift.vim │ ├── syntax │ │ └── swift.vim │ └── test │ │ ├── comments.swift │ │ ├── constants_and_variables.swift │ │ ├── numeric_literals.swift │ │ ├── test.swift │ │ ├── tuples.swift │ │ └── type_annotations.swift ├── syntastic │ ├── .gitignore │ ├── .gitrepo │ ├── CONTRIBUTING.md │ ├── LICENCE │ ├── README.markdown │ ├── _assets │ │ └── screenshot_1.png │ ├── autoload │ │ └── syntastic │ │ │ ├── c.vim │ │ │ ├── log.vim │ │ │ ├── postprocess.vim │ │ │ ├── preprocess.vim │ │ │ └── util.vim │ ├── doc │ │ ├── syntastic-checkers.txt │ │ └── syntastic.txt │ ├── plugin │ │ ├── syntastic.vim │ │ └── syntastic │ │ │ ├── autoloclist.vim │ │ │ ├── balloons.vim │ │ │ ├── checker.vim │ │ │ ├── cursor.vim │ │ │ ├── highlighting.vim │ │ │ ├── loclist.vim │ │ │ ├── modemap.vim │ │ │ ├── notifiers.vim │ │ │ ├── registry.vim │ │ │ └── signs.vim │ └── syntax_checkers │ │ ├── actionscript │ │ └── mxmlc.vim │ │ ├── ada │ │ └── gcc.vim │ │ ├── ansible │ │ └── ansible_lint.vim │ │ ├── apiblueprint │ │ └── drafter.vim │ │ ├── applescript │ │ └── osacompile.vim │ │ ├── asciidoc │ │ ├── asciidoc.vim │ │ └── proselint.vim │ │ ├── asl │ │ └── iasl.vim │ │ ├── asm │ │ └── gcc.vim │ │ ├── bemhtml │ │ └── bemhtmllint.vim │ │ ├── bro │ │ └── bro.vim │ │ ├── c │ │ ├── avrgcc.vim │ │ ├── checkpatch.vim │ │ ├── clang_check.vim │ │ ├── clang_tidy.vim │ │ ├── cppcheck.vim │ │ ├── cppclean.vim │ │ ├── flawfinder.vim │ │ ├── gcc.vim │ │ ├── make.vim │ │ ├── oclint.vim │ │ ├── pc_lint.vim │ │ ├── sparse.vim │ │ └── splint.vim │ │ ├── cabal │ │ └── cabal.vim │ │ ├── chef │ │ └── foodcritic.vim │ │ ├── cmake │ │ └── cmakelint.vim │ │ ├── co │ │ └── coco.vim │ │ ├── cobol │ │ └── cobc.vim │ │ ├── coffee │ │ ├── coffee.vim │ │ ├── coffee_jshint.vim │ │ └── coffeelint.vim │ │ ├── coq │ │ └── coqtop.vim │ │ ├── cpp │ │ ├── avrgcc.vim │ │ ├── clang_check.vim │ │ ├── clang_tidy.vim │ │ ├── cppcheck.vim │ │ ├── cppclean.vim │ │ ├── cpplint.vim │ │ ├── flawfinder.vim │ │ ├── gcc.vim │ │ ├── oclint.vim │ │ ├── pc_lint.vim │ │ └── verapp.vim │ │ ├── cs │ │ └── mcs.vim │ │ ├── css │ │ ├── csslint.vim │ │ ├── mixedindentlint.vim │ │ ├── phpcs.vim │ │ ├── prettycss.vim │ │ ├── recess.vim │ │ └── stylelint.vim │ │ ├── cucumber │ │ └── cucumber.vim │ │ ├── cuda │ │ └── nvcc.vim │ │ ├── d │ │ ├── dmd.vim │ │ └── dscanner.vim │ │ ├── dart │ │ └── dartanalyzer.vim │ │ ├── docbk │ │ ├── igor.vim │ │ └── xmllint.vim │ │ ├── dockerfile │ │ ├── dockerfile_lint.vim │ │ └── hadolint.vim │ │ ├── dustjs │ │ └── swiffer.vim │ │ ├── elixir │ │ └── elixir.vim │ │ ├── erlang │ │ ├── erlang_check_file.erl │ │ ├── escript.vim │ │ └── syntaxerl.vim │ │ ├── eruby │ │ └── ruby.vim │ │ ├── fortran │ │ └── gfortran.vim │ │ ├── glsl │ │ └── cgc.vim │ │ ├── go │ │ ├── go.vim │ │ ├── gofmt.vim │ │ ├── golangci_lint.vim │ │ ├── golint.vim │ │ ├── gometalinter.vim │ │ ├── gotype.vim │ │ └── govet.vim │ │ ├── haml │ │ ├── haml.vim │ │ └── haml_lint.vim │ │ ├── handlebars │ │ └── handlebars.vim │ │ ├── haskell │ │ ├── hdevtools.vim │ │ ├── hlint.vim │ │ └── scan.vim │ │ ├── haxe │ │ └── haxe.vim │ │ ├── help │ │ └── proselint.vim │ │ ├── hss │ │ └── hss.vim │ │ ├── html │ │ ├── eslint.vim │ │ ├── gjslint.vim │ │ ├── htmlhint.vim │ │ ├── jshint.vim │ │ ├── proselint.vim │ │ ├── stylelint.vim │ │ ├── textlint.vim │ │ ├── tidy.vim │ │ ├── validator.vim │ │ └── w3.vim │ │ ├── jade │ │ └── jade_lint.vim │ │ ├── java │ │ ├── checkstyle.vim │ │ └── javac.vim │ │ ├── javascript │ │ ├── closurecompiler.vim │ │ ├── eslint.vim │ │ ├── flow.vim │ │ ├── gjslint.vim │ │ ├── jscs.vim │ │ ├── jshint.vim │ │ ├── jsl.vim │ │ ├── jslint.vim │ │ ├── jsxhint.vim │ │ ├── lynt.vim │ │ ├── mixedindentlint.vim │ │ ├── standard.vim │ │ └── tern_lint.vim │ │ ├── json │ │ ├── jsonlint.vim │ │ └── jsonval.vim │ │ ├── less │ │ ├── less-lint.coffee │ │ ├── less-lint.js │ │ ├── lessc.vim │ │ └── recess.vim │ │ ├── lex │ │ └── flex.vim │ │ ├── limbo │ │ └── limbo.vim │ │ ├── lisp │ │ └── clisp.vim │ │ ├── llvm │ │ └── llvm.vim │ │ ├── lua │ │ ├── luac.vim │ │ └── luacheck.vim │ │ ├── markdown │ │ ├── mdl.vim │ │ ├── proselint.vim │ │ ├── remark_lint.vim │ │ └── textlint.vim │ │ ├── matlab │ │ └── mlint.vim │ │ ├── mercury │ │ └── mmc.vim │ │ ├── nasm │ │ └── nasm.vim │ │ ├── nix │ │ └── nix.vim │ │ ├── nroff │ │ ├── igor.vim │ │ ├── mandoc.vim │ │ └── proselint.vim │ │ ├── objc │ │ ├── gcc.vim │ │ └── oclint.vim │ │ ├── objcpp │ │ ├── gcc.vim │ │ └── oclint.vim │ │ ├── ocaml │ │ └── camlp4o.vim │ │ ├── perl │ │ ├── perl.vim │ │ ├── perlcritic.vim │ │ └── podchecker.vim │ │ ├── perl6 │ │ └── perl6.vim │ │ ├── php │ │ ├── php.vim │ │ ├── phpcs.vim │ │ ├── phplint.vim │ │ ├── phpmd.vim │ │ └── phpstan.vim │ │ ├── po │ │ ├── dennis.vim │ │ └── msgfmt.vim │ │ ├── pod │ │ ├── podchecker.vim │ │ └── proselint.vim │ │ ├── pug │ │ └── pug_lint.vim │ │ ├── puppet │ │ ├── puppet.vim │ │ └── puppetlint.vim │ │ ├── python │ │ ├── bandit.vim │ │ ├── codec.py │ │ ├── compile.py │ │ ├── flake8.vim │ │ ├── frosted.vim │ │ ├── mypy.vim │ │ ├── pep257.vim │ │ ├── pep8.vim │ │ ├── prospector.vim │ │ ├── py3kwarn.vim │ │ ├── pycodestyle.vim │ │ ├── pydocstyle.vim │ │ ├── pyflakes.vim │ │ ├── pylama.vim │ │ ├── pylint.vim │ │ └── python.vim │ │ ├── qml │ │ └── qmllint.vim │ │ ├── r │ │ ├── lint.vim │ │ ├── lintr.vim │ │ └── svtools.vim │ │ ├── racket │ │ ├── code-ayatollah.vim │ │ └── racket.vim │ │ ├── raku │ │ └── raku.vim │ │ ├── rmd │ │ └── lintr.vim │ │ ├── rnc │ │ └── rnv.vim │ │ ├── rst │ │ ├── proselint.vim │ │ ├── rst2pseudoxml.vim │ │ ├── rstcheck.vim │ │ └── sphinx.vim │ │ ├── ruby │ │ ├── flog.vim │ │ ├── jruby.vim │ │ ├── macruby.vim │ │ ├── mri.vim │ │ ├── reek.vim │ │ ├── rubocop.vim │ │ ├── rubylint.vim │ │ └── sorbet.vim │ │ ├── sass │ │ ├── sass.vim │ │ ├── sass_lint.vim │ │ └── sassc.vim │ │ ├── scala │ │ ├── fsc.vim │ │ ├── scalac.vim │ │ └── scalastyle.vim │ │ ├── scss │ │ ├── mixedindentlint.vim │ │ ├── sass.vim │ │ ├── sass_lint.vim │ │ ├── sassc.vim │ │ └── scss_lint.vim │ │ ├── sh │ │ ├── bashate.vim │ │ ├── checkbashisms.vim │ │ ├── sh.vim │ │ ├── shellcheck.vim │ │ └── shfmt.vim │ │ ├── slim │ │ ├── slim_lint.vim │ │ └── slimrb.vim │ │ ├── sml │ │ └── smlnj.vim │ │ ├── solidity │ │ ├── solc.vim │ │ ├── solhint.vim │ │ └── solium.vim │ │ ├── spec │ │ └── rpmlint.vim │ │ ├── sql │ │ ├── sqlint.vim │ │ └── tsqllint.vim │ │ ├── stylus │ │ └── stylint.vim │ │ ├── svg │ │ ├── validator.vim │ │ └── w3.vim │ │ ├── tcl │ │ └── nagelfar.vim │ │ ├── tex │ │ ├── chktex.vim │ │ ├── lacheck.vim │ │ └── proselint.vim │ │ ├── texinfo │ │ ├── makeinfo.vim │ │ └── proselint.vim │ │ ├── text │ │ ├── atdtool.vim │ │ ├── igor.vim │ │ ├── language_check.vim │ │ ├── proselint.vim │ │ └── textlint.vim │ │ ├── trig │ │ └── rapper.vim │ │ ├── turtle │ │ ├── rapper.vim │ │ └── ttl.vim │ │ ├── twig │ │ ├── twigcs.vim │ │ └── twiglint.vim │ │ ├── typescript │ │ ├── eslint.vim │ │ ├── lynt.vim │ │ └── tslint.vim │ │ ├── verilog │ │ ├── iverilog.vim │ │ └── verilator.vim │ │ ├── vhdl │ │ ├── ghdl.vim │ │ └── vcom.vim │ │ ├── vim │ │ ├── vimlint.vim │ │ └── vint.vim │ │ ├── vue │ │ ├── eslint.vim │ │ ├── pug_lint_vue.vim │ │ └── stylelint.vim │ │ ├── xhtml │ │ ├── jshint.vim │ │ ├── proselint.vim │ │ ├── tidy.vim │ │ ├── validator.vim │ │ └── w3.vim │ │ ├── xml │ │ ├── plutil.vim │ │ └── xmllint.vim │ │ ├── xquery │ │ └── basex.vim │ │ ├── xslt │ │ └── xmllint.vim │ │ ├── yacc │ │ └── bison.vim │ │ ├── yaml │ │ ├── jsyaml.vim │ │ ├── yamllint.vim │ │ └── yamlxs.vim │ │ ├── yang │ │ └── pyang.vim │ │ ├── yara │ │ └── yara.vim │ │ ├── z80 │ │ └── z80syntaxchecker.vim │ │ ├── zpt │ │ └── zptlint.vim │ │ └── zsh │ │ └── zsh.vim ├── tabular │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE.md │ ├── README.md │ ├── after │ │ └── plugin │ │ │ └── TabularMaps.vim │ ├── autoload │ │ └── tabular.vim │ ├── doc │ │ └── Tabular.txt │ └── plugin │ │ └── Tabular.vim ├── tagbar │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── check.yml │ │ │ ├── reviewdog.yml │ │ │ └── vint.yml │ ├── .gitrepo │ ├── .vintrc.yaml │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── tagbar.vim │ │ └── tagbar │ │ │ ├── debug.vim │ │ │ ├── prototypes │ │ │ ├── basetag.vim │ │ │ ├── fileinfo.vim │ │ │ ├── kindheadertag.vim │ │ │ ├── normaltag.vim │ │ │ ├── pseudotag.vim │ │ │ ├── splittag.vim │ │ │ └── typeinfo.vim │ │ │ ├── sorting.vim │ │ │ ├── state.vim │ │ │ └── types │ │ │ ├── ctags.vim │ │ │ └── uctags.vim │ ├── doc │ │ └── tagbar.txt │ ├── plugin │ │ └── tagbar.vim │ └── syntax │ │ └── tagbar.vim ├── tcomment │ ├── .gitignore │ ├── .gitrepo │ ├── CHANGES.TXT │ ├── LICENSE.TXT │ ├── README │ ├── addon-info.json │ ├── autoload │ │ ├── tcomment.vim │ │ └── tcomment │ │ │ ├── commentdef.vim │ │ │ ├── commentmode.vim │ │ │ ├── compatibility.vim │ │ │ ├── complete.vim │ │ │ ├── cursor.vim │ │ │ ├── debug.vim │ │ │ ├── deprecated.vim │ │ │ ├── filetype.vim │ │ │ ├── format.vim │ │ │ ├── operator.vim │ │ │ ├── regex.vim │ │ │ ├── syntax.vim │ │ │ ├── textobject.vim │ │ │ ├── type.vim │ │ │ ├── types │ │ │ └── default.vim │ │ │ └── vimoptions.vim │ ├── doc │ │ ├── tags │ │ └── tcomment.txt │ ├── etc │ │ └── tpl_tcomment.txt │ ├── plugin │ │ └── tcomment.vim │ └── spec │ │ └── tcomment │ │ ├── issue30.vim │ │ ├── issue30_sel=exclusive.vim │ │ ├── issue30_sel=inclusive.vim │ │ ├── issue30_test.c │ │ ├── issue30_test_1.c │ │ ├── issue30_test_2.c │ │ └── issue30_test_3.c ├── textobj-comment │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.markdown │ ├── VimFlavor │ ├── addon-info.json │ ├── autoload │ │ └── textobj │ │ │ └── comment.vim │ ├── doc │ │ └── textobj-comment.txt │ ├── plugin │ │ └── textobj │ │ │ └── comment.vim │ └── t │ │ ├── fixtures │ │ ├── Inline.java │ │ ├── paired.c │ │ └── simple.py │ │ ├── inline.vim │ │ ├── leaders.vim │ │ ├── paired.vim │ │ ├── plugin.vim │ │ ├── simple.vim │ │ └── util │ │ └── helpers.vim ├── textobj-user │ ├── .gitignore │ ├── .gitrepo │ ├── .travis.yml │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── autoload │ │ └── textobj │ │ │ └── user.vim │ ├── doc │ │ └── textobj-user.txt │ └── t │ │ ├── failed-selection.vim │ │ ├── keep-marks.vim │ │ ├── map.vim │ │ ├── move.vim │ │ ├── old-property-names.vim │ │ ├── plugin.vim │ │ ├── region-type.vim │ │ ├── scan.vim │ │ ├── script-local.vim │ │ ├── select-x-function-countability.vim │ │ ├── selection.vim │ │ ├── single-character-objects.vim │ │ └── snr-prefix.vim ├── undotree │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── undotree.vim │ ├── doc │ │ ├── _static │ │ │ └── undotree.png │ │ └── undotree.txt │ ├── plugin │ │ └── undotree.vim │ └── syntax │ │ └── undotree.vim ├── viewdoc │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.asciidoc │ ├── doc │ │ └── viewdoc.txt │ ├── ftplugin │ │ ├── css_viewdoc.vim │ │ ├── help_viewdoc.vim │ │ ├── infman_viewdoc.vim │ │ ├── make_viewdoc.vim │ │ ├── man_viewdoc.vim │ │ ├── perl_viewdoc.vim │ │ ├── perldoc_ansi_viewdoc.vim │ │ ├── perldoc_text_viewdoc.vim │ │ ├── pman_viewdoc.vim │ │ ├── ri_ansi_viewdoc.vim │ │ ├── ri_markdown_viewdoc.vim │ │ ├── ri_rdoc_viewdoc.vim │ │ ├── tex_viewdoc.vim │ │ └── vim_viewdoc.vim │ ├── plugin │ │ ├── viewdoc.vim │ │ ├── viewdoc_bashhelp.vim │ │ ├── viewdoc_godoc.vim │ │ ├── viewdoc_help.vim │ │ ├── viewdoc_infman.vim │ │ ├── viewdoc_info.vim │ │ ├── viewdoc_man.vim │ │ ├── viewdoc_perldoc.vim │ │ ├── viewdoc_pman.vim │ │ ├── viewdoc_pydoc.vim │ │ └── viewdoc_ri.vim │ └── syntax │ │ └── info.vim ├── vim-hug-neovim-rpc │ ├── .gitignore │ ├── .gitrepo │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── neovim_rpc.vim │ └── pythonx │ │ ├── neovim_rpc_methods.py │ │ ├── neovim_rpc_protocol.py │ │ ├── neovim_rpc_server.py │ │ └── neovim_rpc_server_api_info.py └── wmgraphviz │ ├── .gitignore │ ├── .gitrepo │ ├── Makefile │ ├── README.md │ ├── UltiSnips │ └── dot.snippets │ ├── doc │ └── wmgraphviz.txt │ ├── ftdetect │ └── dot.vim │ ├── ftplugin │ └── dot.vim │ ├── snippets │ └── dot.snippets │ └── test │ ├── simple with spaces.dot │ └── simple.dot ├── colors ├── colortest.vim └── powerman.vim ├── ftdetect ├── infsh.vim ├── limbo.vim ├── markdown.vim ├── mkfile.vim └── tmpl.vim ├── ftdoc ├── css │ └── css21.txt └── tex │ └── latexhelp.txt ├── ftplugin ├── asciidoc.vim └── markdown.vim ├── snippets ├── limbo.snippets └── tmpl.snippets ├── syntax ├── asciidoc.vim ├── cheatsheet.vim ├── fluxkeys.vim ├── gocaddyfiletmpl.vim ├── goconftmpl.vim ├── gonftablestmpl.vim ├── gonginxtmpl.vim ├── gopfmaintmpl.vim ├── goyamltmpl.vim ├── htmlperl.vim ├── infsh.vim ├── limbo.vim ├── mkfile.vim ├── rc.vim ├── tmpl.vim └── tmpljavascript.vim ├── themes └── airline-powerman.vim └── vimrc /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | tags-* 3 | spell/ 4 | .VimballRecord 5 | .netrwhist 6 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/README.adoc -------------------------------------------------------------------------------- /UltiSnips/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/UltiSnips/go.snippets -------------------------------------------------------------------------------- /after/syntax/epl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/epl.vim -------------------------------------------------------------------------------- /after/syntax/ferm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/ferm.vim -------------------------------------------------------------------------------- /after/syntax/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/go.vim -------------------------------------------------------------------------------- /after/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/html.vim -------------------------------------------------------------------------------- /after/syntax/htmlperl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/htmlperl.vim -------------------------------------------------------------------------------- /after/syntax/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/markdown.vim -------------------------------------------------------------------------------- /after/syntax/nftables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/nftables.vim -------------------------------------------------------------------------------- /after/syntax/perl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/perl.vim -------------------------------------------------------------------------------- /after/syntax/zsh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/after/syntax/zsh.vim -------------------------------------------------------------------------------- /bundle/AnsiEsc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/.gitignore -------------------------------------------------------------------------------- /bundle/AnsiEsc/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/.gitrepo -------------------------------------------------------------------------------- /bundle/AnsiEsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/Makefile -------------------------------------------------------------------------------- /bundle/AnsiEsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/README.md -------------------------------------------------------------------------------- /bundle/AnsiEsc/autoload/AnsiEsc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/autoload/AnsiEsc.vim -------------------------------------------------------------------------------- /bundle/AnsiEsc/doc/AnsiEsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/doc/AnsiEsc.txt -------------------------------------------------------------------------------- /bundle/AnsiEsc/plugin/AnsiEscPlugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/plugin/AnsiEscPlugin.vim -------------------------------------------------------------------------------- /bundle/AnsiEsc/plugin/cecutil.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/plugin/cecutil.vim -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/01_files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/01_files.t -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/bin/colordiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/bin/colordiff -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/bin/vimcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/bin/vimcat -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/README -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull11.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull11.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull12.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull12.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull1_old.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull1_old.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull2.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull2.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull7.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull7.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/bull8.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/bull8.ans -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/data/files/simple.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/data/files/simple.ansi -------------------------------------------------------------------------------- /bundle/AnsiEsc/t/lib/File/Slurp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/AnsiEsc/t/lib/File/Slurp.pm -------------------------------------------------------------------------------- /bundle/UltiSnips/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SirVer 2 | -------------------------------------------------------------------------------- /bundle/UltiSnips/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | doc/tags 4 | /.ropeproject/ 5 | /.mypy_cache/ 6 | -------------------------------------------------------------------------------- /bundle/UltiSnips/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/.gitrepo -------------------------------------------------------------------------------- /bundle/UltiSnips/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/CONTRIBUTING.md -------------------------------------------------------------------------------- /bundle/UltiSnips/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/COPYING.txt -------------------------------------------------------------------------------- /bundle/UltiSnips/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/ChangeLog -------------------------------------------------------------------------------- /bundle/UltiSnips/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/Dockerfile -------------------------------------------------------------------------------- /bundle/UltiSnips/Dockerfile.repro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/Dockerfile.repro -------------------------------------------------------------------------------- /bundle/UltiSnips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/Makefile -------------------------------------------------------------------------------- /bundle/UltiSnips/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/Pipfile -------------------------------------------------------------------------------- /bundle/UltiSnips/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/Pipfile.lock -------------------------------------------------------------------------------- /bundle/UltiSnips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/README.md -------------------------------------------------------------------------------- /bundle/UltiSnips/autoload/UltiSnips.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/autoload/UltiSnips.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/ctags/UltiSnips.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/ctags/UltiSnips.cnf -------------------------------------------------------------------------------- /bundle/UltiSnips/doc/UltiSnips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/doc/UltiSnips.txt -------------------------------------------------------------------------------- /bundle/UltiSnips/doc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/doc/demo.gif -------------------------------------------------------------------------------- /bundle/UltiSnips/docker/build_vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/docker/build_vim.sh -------------------------------------------------------------------------------- /bundle/UltiSnips/docker/docker_vimrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/docker/docker_vimrc.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/docker/download_vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/docker/download_vim.sh -------------------------------------------------------------------------------- /bundle/UltiSnips/docker/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/docker/run_tests.sh -------------------------------------------------------------------------------- /bundle/UltiSnips/ftdetect/snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/ftdetect/snippets.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/ftplugin/snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/ftplugin/snippets.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/mypy.ini -------------------------------------------------------------------------------- /bundle/UltiSnips/plugin/UltiSnips.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/plugin/UltiSnips.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/pylintrc -------------------------------------------------------------------------------- /bundle/UltiSnips/pythonx/UltiSnips/snippet/__init__.py: -------------------------------------------------------------------------------- 1 | """Code related to snippets.""" 2 | -------------------------------------------------------------------------------- /bundle/UltiSnips/pythonx/UltiSnips/snippet/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | """Code related to turning text into snippets.""" 2 | -------------------------------------------------------------------------------- /bundle/UltiSnips/pythonx/UltiSnips/snippet/source/file/__init__.py: -------------------------------------------------------------------------------- 1 | """Snippet sources that are file based.""" 2 | -------------------------------------------------------------------------------- /bundle/UltiSnips/syntax/snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/syntax/snippets.vim -------------------------------------------------------------------------------- /bundle/UltiSnips/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/UltiSnips/test/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/constant.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Autotrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Autotrigger.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Chars.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Choices.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Completion.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Editing.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Expand.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Fixes.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Folding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Folding.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Format.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Mirror.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Movement.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Plugin.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Recursive.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Selection.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_SnipMate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_SnipMate.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_TabStop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_TabStop.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/test_Visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/test_Visual.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/util.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/vim_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/vim_interface.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test/vim_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test/vim_test_case.py -------------------------------------------------------------------------------- /bundle/UltiSnips/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/UltiSnips/test_all.py -------------------------------------------------------------------------------- /bundle/abolish/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tpope 2 | custom: ["https://www.paypal.me/vimpope"] 3 | -------------------------------------------------------------------------------- /bundle/abolish/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /bundle/abolish/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/abolish/.gitrepo -------------------------------------------------------------------------------- /bundle/abolish/CONTRIBUTING.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/abolish/CONTRIBUTING.markdown -------------------------------------------------------------------------------- /bundle/abolish/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/abolish/README.markdown -------------------------------------------------------------------------------- /bundle/abolish/doc/abolish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/abolish/doc/abolish.txt -------------------------------------------------------------------------------- /bundle/abolish/plugin/abolish.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/abolish/plugin/abolish.vim -------------------------------------------------------------------------------- /bundle/ack/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /bundle/ack/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/.gitrepo -------------------------------------------------------------------------------- /bundle/ack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/LICENSE -------------------------------------------------------------------------------- /bundle/ack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/README.md -------------------------------------------------------------------------------- /bundle/ack/autoload/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/autoload/ack.vim -------------------------------------------------------------------------------- /bundle/ack/doc/ack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/doc/ack.txt -------------------------------------------------------------------------------- /bundle/ack/doc/ack_quick_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/doc/ack_quick_help.txt -------------------------------------------------------------------------------- /bundle/ack/ftplugin/qf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/ftplugin/qf.vim -------------------------------------------------------------------------------- /bundle/ack/plugin/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ack/plugin/ack.vim -------------------------------------------------------------------------------- /bundle/ansible/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/.gitrepo -------------------------------------------------------------------------------- /bundle/ansible/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/LICENSE -------------------------------------------------------------------------------- /bundle/ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/README.md -------------------------------------------------------------------------------- /bundle/ansible/UltiSnips/.gitignore: -------------------------------------------------------------------------------- 1 | ansible.snippets 2 | -------------------------------------------------------------------------------- /bundle/ansible/UltiSnips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/UltiSnips/README.md -------------------------------------------------------------------------------- /bundle/ansible/UltiSnips/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/UltiSnips/generate.py -------------------------------------------------------------------------------- /bundle/ansible/UltiSnips/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/UltiSnips/generate.sh -------------------------------------------------------------------------------- /bundle/ansible/ftdetect/ansible.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/ftdetect/ansible.vim -------------------------------------------------------------------------------- /bundle/ansible/ftplugin/ansible.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/ftplugin/ansible.vim -------------------------------------------------------------------------------- /bundle/ansible/ftplugin/ansible_hosts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/ftplugin/ansible_hosts.vim -------------------------------------------------------------------------------- /bundle/ansible/indent/ansible.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/indent/ansible.vim -------------------------------------------------------------------------------- /bundle/ansible/syntax/ansible.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/syntax/ansible.vim -------------------------------------------------------------------------------- /bundle/ansible/syntax/ansible_hosts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/syntax/ansible_hosts.vim -------------------------------------------------------------------------------- /bundle/ansible/syntax/jinja2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/syntax/jinja2.vim -------------------------------------------------------------------------------- /bundle/ansible/syntax/jinja2.vim_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ansible/syntax/jinja2.vim_LICENSE -------------------------------------------------------------------------------- /bundle/autosess/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/autosess/.gitrepo -------------------------------------------------------------------------------- /bundle/autosess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/autosess/Makefile -------------------------------------------------------------------------------- /bundle/autosess/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/autosess/README.asciidoc -------------------------------------------------------------------------------- /bundle/autosess/doc/autosess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/autosess/doc/autosess.txt -------------------------------------------------------------------------------- /bundle/autosess/plugin/autosess.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/autosess/plugin/autosess.vim -------------------------------------------------------------------------------- /bundle/caddyfile/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/.gitrepo -------------------------------------------------------------------------------- /bundle/caddyfile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/LICENSE -------------------------------------------------------------------------------- /bundle/caddyfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/README.md -------------------------------------------------------------------------------- /bundle/caddyfile/ftdetect/caddyfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/ftdetect/caddyfile.vim -------------------------------------------------------------------------------- /bundle/caddyfile/ftplugin/caddyfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/ftplugin/caddyfile.vim -------------------------------------------------------------------------------- /bundle/caddyfile/indent/caddyfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/indent/caddyfile.vim -------------------------------------------------------------------------------- /bundle/caddyfile/syntax/caddyfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/caddyfile/syntax/caddyfile.vim -------------------------------------------------------------------------------- /bundle/conflict-marker/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/.codecov.yml -------------------------------------------------------------------------------- /bundle/conflict-marker/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/.gitattributes -------------------------------------------------------------------------------- /bundle/conflict-marker/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /bundle/conflict-marker/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/.gitrepo -------------------------------------------------------------------------------- /bundle/conflict-marker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/README.md -------------------------------------------------------------------------------- /bundle/conflict-marker/test/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/test/.coveragerc -------------------------------------------------------------------------------- /bundle/conflict-marker/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/test/.gitignore -------------------------------------------------------------------------------- /bundle/conflict-marker/test/.themisrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/test/.themisrc -------------------------------------------------------------------------------- /bundle/conflict-marker/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/conflict-marker/test/README.md -------------------------------------------------------------------------------- /bundle/context_filetype/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/context_filetype/.gitrepo -------------------------------------------------------------------------------- /bundle/context_filetype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/context_filetype/LICENSE -------------------------------------------------------------------------------- /bundle/context_filetype/test/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/context_filetype/test/test.vim -------------------------------------------------------------------------------- /bundle/css3-syntax/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/css3-syntax/.gitrepo -------------------------------------------------------------------------------- /bundle/css3-syntax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/css3-syntax/README.md -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/animation-worklet-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/animations-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/backgrounds-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/box-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/break-3.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontAttr contained recto verso 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/cascade-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/cascade-5.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontAttr contained revert-layer 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/cascade-6.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/color-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/conditional-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/conditional-4.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/contain-2.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontProp content-visibility 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/contain-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/cssom-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/easing-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/flexbox-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/font-loading-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/geometry-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/grid-2.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/html5.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssTagName rb rtc slot template 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/layout-api-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/namespace-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/resize-observer-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/scroll-anchoring-1.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontProp contained overflow-anchor 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/sizing-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/style-attr.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/syntax-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/tables-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/transforms-1.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontProp contained transform-box 2 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/transitions-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/typed-om-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/variables-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/web-animations-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/after/syntax/css/web-animations-2.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/css3-syntax/test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/css3-syntax/test/test.css -------------------------------------------------------------------------------- /bundle/ctrlp/.gitignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.zip 3 | note.txt 4 | tags 5 | .hg* 6 | tmp/* 7 | -------------------------------------------------------------------------------- /bundle/ctrlp/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/.gitrepo -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/buffertag.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/buffertag.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/changes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/changes.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/dir.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/dir.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/line.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/line.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/mixed.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/mixed.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/mrufiles.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/mrufiles.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/quickfix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/quickfix.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/rtscript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/rtscript.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/tag.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/tag.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/undo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/undo.vim -------------------------------------------------------------------------------- /bundle/ctrlp/autoload/ctrlp/utils.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/autoload/ctrlp/utils.vim -------------------------------------------------------------------------------- /bundle/ctrlp/doc/ctrlp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/doc/ctrlp.txt -------------------------------------------------------------------------------- /bundle/ctrlp/plugin/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/plugin/ctrlp.vim -------------------------------------------------------------------------------- /bundle/ctrlp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ctrlp/readme.md -------------------------------------------------------------------------------- /bundle/deoplete-emoji/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete-emoji/.gitignore -------------------------------------------------------------------------------- /bundle/deoplete-emoji/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete-emoji/.gitrepo -------------------------------------------------------------------------------- /bundle/deoplete-emoji/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete-emoji/LICENSE -------------------------------------------------------------------------------- /bundle/deoplete-emoji/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete-emoji/README.md -------------------------------------------------------------------------------- /bundle/deoplete/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/.github/FUNDING.yml -------------------------------------------------------------------------------- /bundle/deoplete/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /bundle/deoplete/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/.gitignore -------------------------------------------------------------------------------- /bundle/deoplete/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/.gitrepo -------------------------------------------------------------------------------- /bundle/deoplete/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/LICENSE -------------------------------------------------------------------------------- /bundle/deoplete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/Makefile -------------------------------------------------------------------------------- /bundle/deoplete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/README.md -------------------------------------------------------------------------------- /bundle/deoplete/autoload/deoplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/autoload/deoplete.vim -------------------------------------------------------------------------------- /bundle/deoplete/doc/deoplete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/doc/deoplete.txt -------------------------------------------------------------------------------- /bundle/deoplete/plugin/deoplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/plugin/deoplete.vim -------------------------------------------------------------------------------- /bundle/deoplete/rplugin/python3/deoplete/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/deoplete/rplugin/python3/deoplete/filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/deoplete/rplugin/python3/deoplete/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/deoplete/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/test/conftest.py -------------------------------------------------------------------------------- /bundle/deoplete/test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/deoplete/test/requirements.txt -------------------------------------------------------------------------------- /bundle/ferm/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ferm/.gitrepo -------------------------------------------------------------------------------- /bundle/ferm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ferm/README.md -------------------------------------------------------------------------------- /bundle/ferm/ftdetect/ferm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ferm/ftdetect/ferm.vim -------------------------------------------------------------------------------- /bundle/ferm/syntax/ferm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ferm/syntax/ferm.vim -------------------------------------------------------------------------------- /bundle/fixtermkeys/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fixtermkeys/.gitrepo -------------------------------------------------------------------------------- /bundle/fixtermkeys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fixtermkeys/LICENSE -------------------------------------------------------------------------------- /bundle/fixtermkeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fixtermkeys/Makefile -------------------------------------------------------------------------------- /bundle/fixtermkeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fixtermkeys/README.md -------------------------------------------------------------------------------- /bundle/fixtermkeys/plugin/fixtermkeys.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fixtermkeys/plugin/fixtermkeys.vim -------------------------------------------------------------------------------- /bundle/foldutil/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/foldutil/.gitrepo -------------------------------------------------------------------------------- /bundle/foldutil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/foldutil/README -------------------------------------------------------------------------------- /bundle/foldutil/plugin/foldutil.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/foldutil/plugin/foldutil.vim -------------------------------------------------------------------------------- /bundle/fugitive-github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive-github/LICENSE -------------------------------------------------------------------------------- /bundle/fugitive-github/doc/rhubarb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive-github/doc/rhubarb.txt -------------------------------------------------------------------------------- /bundle/fugitive-github/plugin/rhubarb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive-github/plugin/rhubarb.vim -------------------------------------------------------------------------------- /bundle/fugitive/autoload/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/autoload/fugitive.vim -------------------------------------------------------------------------------- /bundle/fugitive/doc/fugitive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/doc/fugitive.txt -------------------------------------------------------------------------------- /bundle/fugitive/ftdetect/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/ftdetect/fugitive.vim -------------------------------------------------------------------------------- /bundle/fugitive/plugin/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/plugin/fugitive.vim -------------------------------------------------------------------------------- /bundle/fugitive/syntax/fugitive.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/syntax/fugitive.vim -------------------------------------------------------------------------------- /bundle/fugitive/syntax/fugitiveblame.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/fugitive/syntax/fugitiveblame.vim -------------------------------------------------------------------------------- /bundle/genutils/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/genutils/.gitrepo -------------------------------------------------------------------------------- /bundle/genutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/genutils/README -------------------------------------------------------------------------------- /bundle/genutils/autoload/genutils.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/genutils/autoload/genutils.vim -------------------------------------------------------------------------------- /bundle/genutils/plugin/genutils.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/genutils/plugin/genutils.vim -------------------------------------------------------------------------------- /bundle/gnupg/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/gnupg/.gitrepo -------------------------------------------------------------------------------- /bundle/gnupg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/gnupg/README.md -------------------------------------------------------------------------------- /bundle/gnupg/autoload/gnupg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/gnupg/autoload/gnupg.vim -------------------------------------------------------------------------------- /bundle/gnupg/doc/gnupg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/gnupg/doc/gnupg.txt -------------------------------------------------------------------------------- /bundle/gnupg/plugin/gnupg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/gnupg/plugin/gnupg.vim -------------------------------------------------------------------------------- /bundle/go/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.codecov.yml -------------------------------------------------------------------------------- /bundle/go/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.coveragerc -------------------------------------------------------------------------------- /bundle/go/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.dockerignore -------------------------------------------------------------------------------- /bundle/go/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.editorconfig -------------------------------------------------------------------------------- /bundle/go/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /bundle/go/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: bhcleek 2 | -------------------------------------------------------------------------------- /bundle/go/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: false 3 | -------------------------------------------------------------------------------- /bundle/go/.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.github/issue_template.md -------------------------------------------------------------------------------- /bundle/go/.github/workflows/git.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.github/workflows/git.yml -------------------------------------------------------------------------------- /bundle/go/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.github/workflows/test.yml -------------------------------------------------------------------------------- /bundle/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.gitignore -------------------------------------------------------------------------------- /bundle/go/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.gitrepo -------------------------------------------------------------------------------- /bundle/go/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/.vintrc.yaml -------------------------------------------------------------------------------- /bundle/go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/CHANGELOG.md -------------------------------------------------------------------------------- /bundle/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/Dockerfile -------------------------------------------------------------------------------- /bundle/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/LICENSE -------------------------------------------------------------------------------- /bundle/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/Makefile -------------------------------------------------------------------------------- /bundle/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/README.md -------------------------------------------------------------------------------- /bundle/go/addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/addon-info.json -------------------------------------------------------------------------------- /bundle/go/assets/vim-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/assets/vim-go.png -------------------------------------------------------------------------------- /bundle/go/assets/vim-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/assets/vim-go.svg -------------------------------------------------------------------------------- /bundle/go/autoload/ctrlp/decls.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/ctrlp/decls.vim -------------------------------------------------------------------------------- /bundle/go/autoload/fzf/decls.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/fzf/decls.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/alternate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/alternate.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/asmfmt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/asmfmt.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/auto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/auto.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/calls.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/calls.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/calls_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/calls_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/cmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/cmd.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/cmd_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/cmd_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/complete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/complete.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/complete_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/complete_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/config.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/config.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/config_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/config_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/coverage.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/coverage.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/debug.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/debug.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/debug_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/debug_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/decls.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/decls.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/def.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/def.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/def_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/def_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/doc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/doc.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/extract.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/extract.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/extract_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/extract_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/fillstruct.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/fillstruct.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/fillstruct_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/fillstruct_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/fmt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/fmt.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/fmt_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/fmt_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/highlight_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/highlight_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/iferr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/iferr.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/impl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/impl.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/impl_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/impl_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/implements.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/implements.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/import.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/import.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/import_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/import_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/indent_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/indent_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/issue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/issue.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/job.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/job.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/job_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/job_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lint.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lint.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lint_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lint_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/list.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/list.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lsp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lsp.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lsp/lsp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lsp/lsp.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lsp/lsp_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lsp/lsp_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lsp/message.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lsp/message.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/lsp_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/lsp_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/mod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/mod.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/package.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/package.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/package_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/package_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/path.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/path.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/play.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/play.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/promise.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/promise.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/promise_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/promise_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/referrers.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/referrers.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/rename.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/rename.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/sameids.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/sameids.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/statusline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/statusline.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/tags.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/tags.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/tags_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/tags_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/template.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/template.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/template_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/template_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/term.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/term.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/term_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/term_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/config/buildtags/buildtags.go: -------------------------------------------------------------------------------- 1 | package config 2 | 3 | func Example() { 4 | foo() 5 | } 6 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/config/buildtags/go.mod: -------------------------------------------------------------------------------- 1 | module config 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/errcheck/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/errcheck 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/foo/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/foo 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/lint/baz.go: -------------------------------------------------------------------------------- 1 | package lint 2 | 3 | func baz() {} 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/lint/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/lint 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/lint/golangci-lint/problems/importabs/ok.go: -------------------------------------------------------------------------------- 1 | package problems 2 | 3 | func bar() {} 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/lint/src/vet/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/vet 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/package/src/package/bar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/package/src/package/baz/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/package/src/package/go.mod: -------------------------------------------------------------------------------- 1 | module package 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/package/src/package/vendor/foo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/compilerror/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/compilerror 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/example/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/example 2 | 3 | go 1.24 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/play/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/play 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/showname/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/showname 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/timeout/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/timeout 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test-fixtures/test/src/veterror/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/veterror 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /bundle/go/autoload/go/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/test_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/test_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/textobj.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/textobj.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/tool.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/tool.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/tool_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/tool_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/ui.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/ui.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/uri.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/uri.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/uri_test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/uri_test.vim -------------------------------------------------------------------------------- /bundle/go/autoload/go/util.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/go/util.vim -------------------------------------------------------------------------------- /bundle/go/autoload/gotest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/autoload/gotest.vim -------------------------------------------------------------------------------- /bundle/go/compiler/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/compiler/go.vim -------------------------------------------------------------------------------- /bundle/go/doc/vim-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/doc/vim-go.txt -------------------------------------------------------------------------------- /bundle/go/ftdetect/gofiletype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftdetect/gofiletype.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/asm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/asm.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/go.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/go/commands.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/go/commands.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/go/mappings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/go/mappings.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/go/snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/go/snippets.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/go/tagbar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/go/tagbar.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/godoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/godoc.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/godoc/commands.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/godoc/commands.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/godoc/mappings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/godoc/mappings.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/gohtmltmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/gohtmltmpl.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/gomod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/gomod.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/gomod/commands.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/ftplugin/gomod/commands.vim -------------------------------------------------------------------------------- /bundle/go/ftplugin/gomod/mappings.vim: -------------------------------------------------------------------------------- 1 | nnoremap (go-mod-fmt) :call go#mod#Format() 2 | -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_eq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_eq -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_err: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | return {{+err+}} 3 | } 4 | -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_errt: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | t.Fatal(err) 3 | } 4 | {{++}} 5 | -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_errw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_errw -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_f -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_ff: -------------------------------------------------------------------------------- 1 | fmt.Printf("%#v\n", {{++}}) 2 | -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_fori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_fori -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_pkg -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_sp -------------------------------------------------------------------------------- /bundle/go/gosnippets/minisnip/_go_tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/minisnip/_go_tt -------------------------------------------------------------------------------- /bundle/go/gosnippets/snippets/go.snip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/gosnippets/snippets/go.snip -------------------------------------------------------------------------------- /bundle/go/indent/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/indent/go.vim -------------------------------------------------------------------------------- /bundle/go/indent/gohtmltmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/indent/gohtmltmpl.vim -------------------------------------------------------------------------------- /bundle/go/plugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/plugin/go.vim -------------------------------------------------------------------------------- /bundle/go/scripts/bench-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/bench-syntax -------------------------------------------------------------------------------- /bundle/go/scripts/docker-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/docker-test -------------------------------------------------------------------------------- /bundle/go/scripts/install-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/install-tools -------------------------------------------------------------------------------- /bundle/go/scripts/install-vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/install-vim -------------------------------------------------------------------------------- /bundle/go/scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/lint -------------------------------------------------------------------------------- /bundle/go/scripts/run-vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/run-vim -------------------------------------------------------------------------------- /bundle/go/scripts/runbench.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/runbench.vim -------------------------------------------------------------------------------- /bundle/go/scripts/runtest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/runtest.vim -------------------------------------------------------------------------------- /bundle/go/scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/scripts/test -------------------------------------------------------------------------------- /bundle/go/syntax/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/go.vim -------------------------------------------------------------------------------- /bundle/go/syntax/godebugoutput.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/godebugoutput.vim -------------------------------------------------------------------------------- /bundle/go/syntax/godebugstacktrace.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/godebugstacktrace.vim -------------------------------------------------------------------------------- /bundle/go/syntax/godebugvariables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/godebugvariables.vim -------------------------------------------------------------------------------- /bundle/go/syntax/godefstack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/godefstack.vim -------------------------------------------------------------------------------- /bundle/go/syntax/gohtmltmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/gohtmltmpl.vim -------------------------------------------------------------------------------- /bundle/go/syntax/gomod.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/gomod.vim -------------------------------------------------------------------------------- /bundle/go/syntax/gosum.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/gosum.vim -------------------------------------------------------------------------------- /bundle/go/syntax/gotexttmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/gotexttmpl.vim -------------------------------------------------------------------------------- /bundle/go/syntax/gowork.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/gowork.vim -------------------------------------------------------------------------------- /bundle/go/syntax/vimgo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/syntax/vimgo.vim -------------------------------------------------------------------------------- /bundle/go/templates/hello_world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/templates/hello_world.go -------------------------------------------------------------------------------- /bundle/go/templates/hello_world_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/templates/hello_world_test.go -------------------------------------------------------------------------------- /bundle/go/test/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/go/test/parse.go -------------------------------------------------------------------------------- /bundle/html5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/.gitignore -------------------------------------------------------------------------------- /bundle/html5/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/.gitrepo -------------------------------------------------------------------------------- /bundle/html5/CHANGES.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/CHANGES.markdown -------------------------------------------------------------------------------- /bundle/html5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/Makefile -------------------------------------------------------------------------------- /bundle/html5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/README.md -------------------------------------------------------------------------------- /bundle/html5/after/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/after/syntax/html.vim -------------------------------------------------------------------------------- /bundle/html5/autoload/htmlcomplete.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/autoload/htmlcomplete.vim -------------------------------------------------------------------------------- /bundle/html5/autoload/xml/aria.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/autoload/xml/aria.vim -------------------------------------------------------------------------------- /bundle/html5/autoload/xml/html5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/autoload/xml/html5.vim -------------------------------------------------------------------------------- /bundle/html5/config.mk: -------------------------------------------------------------------------------- 1 | VERSION=0.26 2 | 3 | -------------------------------------------------------------------------------- /bundle/html5/ftplugin/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/ftplugin/html.vim -------------------------------------------------------------------------------- /bundle/html5/indent/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/indent/html.vim -------------------------------------------------------------------------------- /bundle/html5/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/syntax/html.vim -------------------------------------------------------------------------------- /bundle/html5/syntax/html/aria.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/syntax/html/aria.vim -------------------------------------------------------------------------------- /bundle/html5/syntax/html/electron.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/syntax/html/electron.vim -------------------------------------------------------------------------------- /bundle/html5/syntax/html/rdfa.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/syntax/html/rdfa.vim -------------------------------------------------------------------------------- /bundle/html5/syntax/javascript/html5.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/html5/syntax/javascript/html5.vim -------------------------------------------------------------------------------- /bundle/largefile/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/largefile/.gitrepo -------------------------------------------------------------------------------- /bundle/largefile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/largefile/README -------------------------------------------------------------------------------- /bundle/largefile/doc/LargeFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/largefile/doc/LargeFile.txt -------------------------------------------------------------------------------- /bundle/largefile/plugin/LargeFile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/largefile/plugin/LargeFile.vim -------------------------------------------------------------------------------- /bundle/less/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/.gitrepo -------------------------------------------------------------------------------- /bundle/less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/README.md -------------------------------------------------------------------------------- /bundle/less/ftdetect/less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/ftdetect/less.vim -------------------------------------------------------------------------------- /bundle/less/ftplugin/less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/ftplugin/less.vim -------------------------------------------------------------------------------- /bundle/less/indent/less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/indent/less.vim -------------------------------------------------------------------------------- /bundle/less/syntax/less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/less/syntax/less.vim -------------------------------------------------------------------------------- /bundle/linediff/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /bundle/linediff/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/.gitrepo -------------------------------------------------------------------------------- /bundle/linediff/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /bundle/linediff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/.travis.yml -------------------------------------------------------------------------------- /bundle/linediff/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /bundle/linediff/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/CONTRIBUTING.md -------------------------------------------------------------------------------- /bundle/linediff/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/Gemfile -------------------------------------------------------------------------------- /bundle/linediff/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/Gemfile.lock -------------------------------------------------------------------------------- /bundle/linediff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/LICENSE -------------------------------------------------------------------------------- /bundle/linediff/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/README.markdown -------------------------------------------------------------------------------- /bundle/linediff/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/Rakefile -------------------------------------------------------------------------------- /bundle/linediff/_project.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/linediff/autoload/linediff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/autoload/linediff.vim -------------------------------------------------------------------------------- /bundle/linediff/doc/linediff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/doc/linediff.txt -------------------------------------------------------------------------------- /bundle/linediff/example/one.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/example/one.rb -------------------------------------------------------------------------------- /bundle/linediff/example/two.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/example/two.rb -------------------------------------------------------------------------------- /bundle/linediff/plugin/linediff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/plugin/linediff.vim -------------------------------------------------------------------------------- /bundle/linediff/spec/plugin/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/spec/plugin/basic_spec.rb -------------------------------------------------------------------------------- /bundle/linediff/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/spec/spec_helper.rb -------------------------------------------------------------------------------- /bundle/linediff/spec/support/vim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/linediff/spec/support/vim.rb -------------------------------------------------------------------------------- /bundle/maildrop/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/maildrop/.gitrepo -------------------------------------------------------------------------------- /bundle/maildrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/maildrop/README.md -------------------------------------------------------------------------------- /bundle/maildrop/ftdetect/maildrop.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/maildrop/ftdetect/maildrop.vim -------------------------------------------------------------------------------- /bundle/maildrop/ftplugin/maildrop.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle/maildrop/syntax/maildrop.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/maildrop/syntax/maildrop.vim -------------------------------------------------------------------------------- /bundle/markdown-toc/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/.github/FUNDING.yml -------------------------------------------------------------------------------- /bundle/markdown-toc/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .DS_Store 3 | tags 4 | -------------------------------------------------------------------------------- /bundle/markdown-toc/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/.gitrepo -------------------------------------------------------------------------------- /bundle/markdown-toc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/LICENSE -------------------------------------------------------------------------------- /bundle/markdown-toc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/README.md -------------------------------------------------------------------------------- /bundle/markdown-toc/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/ftplugin/markdown.vim -------------------------------------------------------------------------------- /bundle/markdown-toc/test/GFM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/test/GFM.md -------------------------------------------------------------------------------- /bundle/markdown-toc/test/Marked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/test/Marked.md -------------------------------------------------------------------------------- /bundle/markdown-toc/test/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/markdown-toc/test/test.vim -------------------------------------------------------------------------------- /bundle/mojo/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/.gitrepo -------------------------------------------------------------------------------- /bundle/mojo/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/Changes -------------------------------------------------------------------------------- /bundle/mojo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/LICENSE -------------------------------------------------------------------------------- /bundle/mojo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/Makefile -------------------------------------------------------------------------------- /bundle/mojo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/README -------------------------------------------------------------------------------- /bundle/mojo/ftdetect/epl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/ftdetect/epl.vim -------------------------------------------------------------------------------- /bundle/mojo/snippets/epl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/snippets/epl.snippets -------------------------------------------------------------------------------- /bundle/mojo/syntax/epl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/syntax/epl.vim -------------------------------------------------------------------------------- /bundle/mojo/t/01_epl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/01_epl.t -------------------------------------------------------------------------------- /bundle/mojo/t/02_lite.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/02_lite.t -------------------------------------------------------------------------------- /bundle/mojo/t/03_helpers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/03_helpers.t -------------------------------------------------------------------------------- /bundle/mojo/t/04_tag_helpers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/04_tag_helpers.t -------------------------------------------------------------------------------- /bundle/mojo/t/05_javascript.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/05_javascript.t -------------------------------------------------------------------------------- /bundle/mojo/t/06_css.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/06_css.t -------------------------------------------------------------------------------- /bundle/mojo/t/07_perl_braces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/07_perl_braces.t -------------------------------------------------------------------------------- /bundle/mojo/t/lib/Test/VimSyntax.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/mojo/t/lib/Test/VimSyntax.pm -------------------------------------------------------------------------------- /bundle/neco-vim/.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | doc/tags 3 | -------------------------------------------------------------------------------- /bundle/neco-vim/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/neco-vim/.gitrepo -------------------------------------------------------------------------------- /bundle/neco-vim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/neco-vim/LICENSE -------------------------------------------------------------------------------- /bundle/neco-vim/autoload/necovim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/neco-vim/autoload/necovim.vim -------------------------------------------------------------------------------- /bundle/neco-vim/doc/necovim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/neco-vim/doc/necovim.txt -------------------------------------------------------------------------------- /bundle/neco-vim/plugin/necovim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/neco-vim/plugin/necovim.vim -------------------------------------------------------------------------------- /bundle/nftables/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/.gitrepo -------------------------------------------------------------------------------- /bundle/nftables/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/LICENSE -------------------------------------------------------------------------------- /bundle/nftables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/README.md -------------------------------------------------------------------------------- /bundle/nftables/ftdetect/nftables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/ftdetect/nftables.vim -------------------------------------------------------------------------------- /bundle/nftables/ftplugin/nftables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/ftplugin/nftables.vim -------------------------------------------------------------------------------- /bundle/nftables/indent/nftables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/indent/nftables.vim -------------------------------------------------------------------------------- /bundle/nftables/syntax/nftables.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nftables/syntax/nftables.vim -------------------------------------------------------------------------------- /bundle/nvim-yarp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/.gitignore -------------------------------------------------------------------------------- /bundle/nvim-yarp/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/.gitrepo -------------------------------------------------------------------------------- /bundle/nvim-yarp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/LICENSE -------------------------------------------------------------------------------- /bundle/nvim-yarp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/README.md -------------------------------------------------------------------------------- /bundle/nvim-yarp/autoload/yarp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/autoload/yarp.vim -------------------------------------------------------------------------------- /bundle/nvim-yarp/autoload/yarp/core.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/autoload/yarp/core.vim -------------------------------------------------------------------------------- /bundle/nvim-yarp/autoload/yarp/pyx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/autoload/yarp/pyx.vim -------------------------------------------------------------------------------- /bundle/nvim-yarp/pythonx/yarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/nvim-yarp/pythonx/yarp.py -------------------------------------------------------------------------------- /bundle/nvim-yarp/requirements.txt: -------------------------------------------------------------------------------- 1 | pynvim 2 | -------------------------------------------------------------------------------- /bundle/pathogen/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tpope 2 | custom: ["https://www.paypal.me/vimpope"] 3 | -------------------------------------------------------------------------------- /bundle/pathogen/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/pathogen/.gitrepo -------------------------------------------------------------------------------- /bundle/pathogen/CONTRIBUTING.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/pathogen/CONTRIBUTING.markdown -------------------------------------------------------------------------------- /bundle/pathogen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/pathogen/LICENSE -------------------------------------------------------------------------------- /bundle/pathogen/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/pathogen/README.markdown -------------------------------------------------------------------------------- /bundle/pathogen/autoload/pathogen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/pathogen/autoload/pathogen.vim -------------------------------------------------------------------------------- /bundle/ruscmd/.gitignore: -------------------------------------------------------------------------------- 1 | /*.vmb 2 | /*.zip 3 | -------------------------------------------------------------------------------- /bundle/ruscmd/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ruscmd/.gitrepo -------------------------------------------------------------------------------- /bundle/ruscmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ruscmd/Makefile -------------------------------------------------------------------------------- /bundle/ruscmd/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ruscmd/README.asciidoc -------------------------------------------------------------------------------- /bundle/ruscmd/plugin/ruscmd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/ruscmd/plugin/ruscmd.vim -------------------------------------------------------------------------------- /bundle/shfmt/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/shfmt/.gitrepo -------------------------------------------------------------------------------- /bundle/shfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/shfmt/LICENSE -------------------------------------------------------------------------------- /bundle/shfmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/shfmt/README.md -------------------------------------------------------------------------------- /bundle/shfmt/autoload/shfmt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/shfmt/autoload/shfmt.vim -------------------------------------------------------------------------------- /bundle/shfmt/plugin/shfmt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/shfmt/plugin/shfmt.vim -------------------------------------------------------------------------------- /bundle/snippets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/.gitignore -------------------------------------------------------------------------------- /bundle/snippets/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/.gitrepo -------------------------------------------------------------------------------- /bundle/snippets/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/.travis.yml -------------------------------------------------------------------------------- /bundle/snippets/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/AUTHORS -------------------------------------------------------------------------------- /bundle/snippets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/LICENSE -------------------------------------------------------------------------------- /bundle/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/README.md -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/README -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/ada.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/ada.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/all.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/all.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/bib.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/bib.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/blade.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/blade.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/c.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/coffee.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/cpp.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/cs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/cs.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/css.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/cuda.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends cpp 4 | 5 | # vim:ft=snippets: 6 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/d.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/d.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/django.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/django.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/ejs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/ejs.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/elm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/elm.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/erlang.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/eruby.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/go.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/help.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/help.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/html.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/htmljinja.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends html, jinja2 4 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/java.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/jinja2.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/jinja2.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/json.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/json.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/julia.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/julia.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/ledger.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/ledger.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/lhaskell.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends haskell 4 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/lua.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/lua.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/mako.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/matlab.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/matlab.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/objc.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/ocaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/ocaml.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/octave.snippets: -------------------------------------------------------------------------------- 1 | extends matlab 2 | 3 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/pandoc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/pandoc.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/perl.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/php.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/plsql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/plsql.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/proto.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/proto.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/puppet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/puppet.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/python.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/r.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/r.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/rails.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/rails.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/rnoweb.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends tex, r 4 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/robot.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/robot.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/rst.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/rst.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/ruby.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/rust.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/sh.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/smarty.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/smarty.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/soy.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/soy.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/svelte.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/tcl.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/tex.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/vim.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/vue.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/xhtml.snippets: -------------------------------------------------------------------------------- 1 | priority -50 2 | 3 | extends html 4 | -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/xml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/xml.snippets -------------------------------------------------------------------------------- /bundle/snippets/UltiSnips/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/UltiSnips/zsh.snippets -------------------------------------------------------------------------------- /bundle/snippets/addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/addon-info.json -------------------------------------------------------------------------------- /bundle/snippets/autoload/vim_snippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/autoload/vim_snippets.vim -------------------------------------------------------------------------------- /bundle/snippets/plugin/vimsnippets.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/plugin/vimsnippets.vim -------------------------------------------------------------------------------- /bundle/snippets/pythonx/vimsnippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/pythonx/vimsnippets.py -------------------------------------------------------------------------------- /bundle/snippets/snippets/_.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/_.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ada.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ada.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/all.snippets: -------------------------------------------------------------------------------- 1 | extends _ 2 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/alpaca.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/alpaca.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/apache.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/apache.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/arduino.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/arduino.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/asm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/asm.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/autoit.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/autoit.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/awk.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/awk.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/bash.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/bash.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/c.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/chef.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/chef.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/clojure.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/clojure.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/cmake.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/cmake.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/cpp.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/crystal.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/crystal.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/cs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/cs.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/css.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/cuda.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/cuda.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/d.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/d.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/dart.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/dart.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/diff.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/diff.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/django.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/django.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/dosini.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/dosini.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/eelixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/eelixir.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/elixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/elixir.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/elm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/elm.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/erlang.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/eruby.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/falcon.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/falcon.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/fortran.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/fortran.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/fsharp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/fsharp.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/gitcommit.snippets: -------------------------------------------------------------------------------- 1 | snippet co 2 | Co-authored-by: ${1} <${2}> 3 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/gleam.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/gleam.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/go.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/haml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/haml.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/haskell.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/haskell.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/heex.snippets: -------------------------------------------------------------------------------- 1 | extends eelixir 2 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/helm.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/helm.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/html.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/idris.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/idris.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/jade.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/jade.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/java.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/jenkins.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/jenkins.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/jinja.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/jinja.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/jsp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/jsp.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/julia.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/julia.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/kotlin.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/kotlin.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/laravel.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/laravel.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ledger.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ledger.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/lfe.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/lfe.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/liquid.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/liquid.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/lpc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/lpc.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ls.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ls.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/lua.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/lua.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/make.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/make.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/mako.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/matlab.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/matlab.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/objc.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ocaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ocaml.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/octave.snippets: -------------------------------------------------------------------------------- 1 | extends matlab 2 | 3 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/org.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/org.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/pandoc.snippets: -------------------------------------------------------------------------------- 1 | extends markdown 2 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/perl.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/perl6.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/perl6.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/phoenix.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/phoenix.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/php.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/plsql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/plsql.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/po.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/po.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ps1.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ps1.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/puppet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/puppet.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/python.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/r.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/r.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/racket.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/racket.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/rails.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/rails.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/reason.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/reason.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/rmd.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/rmd.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/rst.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/rst.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/ruby.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/rust.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/sass.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/sass.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/scala.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/scala.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/scheme.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/scheme.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/scss.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/scss.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/sh.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/slim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/slim.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/smarty.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/smarty.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/sql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/sql.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/stylus.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/stylus.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/svelte.snippets: -------------------------------------------------------------------------------- 1 | extends html, javascript, css 2 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/tcl.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/tex.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/textile.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/textile.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/twig.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/twig.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/typescriptreact.snippets: -------------------------------------------------------------------------------- 1 | extends typescript 2 | -------------------------------------------------------------------------------- /bundle/snippets/snippets/verilog.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/verilog.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/vhdl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/vhdl.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/vim.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/vue.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/vue.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/xml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/xml.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/xslt.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/xslt.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/yii.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/yii.snippets -------------------------------------------------------------------------------- /bundle/snippets/snippets/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/snippets/zsh.snippets -------------------------------------------------------------------------------- /bundle/snippets/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/snippets/tests.sh -------------------------------------------------------------------------------- /bundle/sparkup/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/sparkup/README.txt -------------------------------------------------------------------------------- /bundle/sparkup/ftplugin/html/sparkup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/sparkup/ftplugin/html/sparkup.py -------------------------------------------------------------------------------- /bundle/sparkup/ftplugin/html/sparkup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/sparkup/ftplugin/html/sparkup.vim -------------------------------------------------------------------------------- /bundle/splitjoin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/.gitignore -------------------------------------------------------------------------------- /bundle/splitjoin/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/.gitmodules -------------------------------------------------------------------------------- /bundle/splitjoin/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/.gitrepo -------------------------------------------------------------------------------- /bundle/splitjoin/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --exclude-pattern="./spec/support/**/*" 3 | -------------------------------------------------------------------------------- /bundle/splitjoin/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /bundle/splitjoin/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/CONTRIBUTING.md -------------------------------------------------------------------------------- /bundle/splitjoin/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/Gemfile -------------------------------------------------------------------------------- /bundle/splitjoin/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/Guardfile -------------------------------------------------------------------------------- /bundle/splitjoin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/LICENSE -------------------------------------------------------------------------------- /bundle/splitjoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/README.md -------------------------------------------------------------------------------- /bundle/splitjoin/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/Rakefile -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/c.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/clojure.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/clojure.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/coffee.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/coffee.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/css.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/cue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/cue.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/elixir.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/elixir.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/elm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/elm.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/eruby.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/eruby.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/fasta.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/fasta.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/go.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/haml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/haml.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/hare.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/hare.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/html.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/java.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/js.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/js.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/jsx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/jsx.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/lua.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/lua.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/perl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/perl.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/php.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/r.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/r.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/ruby.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/ruby.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/rust.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/rust.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/scss.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/scss.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/sh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/sh.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/tex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/tex.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/vim.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/vue.vim -------------------------------------------------------------------------------- /bundle/splitjoin/autoload/sj/yaml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/autoload/sj/yaml.vim -------------------------------------------------------------------------------- /bundle/splitjoin/doc/splitjoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/doc/splitjoin.txt -------------------------------------------------------------------------------- /bundle/splitjoin/ftplugin/javascriptreact/splitjoin.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/jsx/splitjoin.vim 2 | -------------------------------------------------------------------------------- /bundle/splitjoin/ftplugin/svelte/splitjoin.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/vue/splitjoin.vim 2 | -------------------------------------------------------------------------------- /bundle/splitjoin/ftplugin/typescript/splitjoin.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/javascript/splitjoin.vim 2 | -------------------------------------------------------------------------------- /bundle/splitjoin/ftplugin/typescriptreact/splitjoin.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/tsx/splitjoin.vim 2 | -------------------------------------------------------------------------------- /bundle/splitjoin/plugin/splitjoin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/plugin/splitjoin.vim -------------------------------------------------------------------------------- /bundle/splitjoin/spec/plugin/c_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/spec/plugin/c_spec.rb -------------------------------------------------------------------------------- /bundle/splitjoin/spec/plugin/r_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/spec/plugin/r_spec.rb -------------------------------------------------------------------------------- /bundle/splitjoin/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/spec/spec_helper.rb -------------------------------------------------------------------------------- /bundle/splitjoin/spec/support/vim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/splitjoin/spec/support/vim.rb -------------------------------------------------------------------------------- /bundle/swift/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/.gitrepo -------------------------------------------------------------------------------- /bundle/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/README.md -------------------------------------------------------------------------------- /bundle/swift/ftdetect/swift.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/ftdetect/swift.vim -------------------------------------------------------------------------------- /bundle/swift/indent/swift.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/indent/swift.vim -------------------------------------------------------------------------------- /bundle/swift/syntax/swift.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/syntax/swift.vim -------------------------------------------------------------------------------- /bundle/swift/test/comments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/test/comments.swift -------------------------------------------------------------------------------- /bundle/swift/test/test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/test/test.swift -------------------------------------------------------------------------------- /bundle/swift/test/tuples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/swift/test/tuples.swift -------------------------------------------------------------------------------- /bundle/swift/test/type_annotations.swift: -------------------------------------------------------------------------------- 1 | var welcomeMessage: String 2 | -------------------------------------------------------------------------------- /bundle/syntastic/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | tags 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /bundle/syntastic/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/.gitrepo -------------------------------------------------------------------------------- /bundle/syntastic/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/CONTRIBUTING.md -------------------------------------------------------------------------------- /bundle/syntastic/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/LICENCE -------------------------------------------------------------------------------- /bundle/syntastic/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/README.markdown -------------------------------------------------------------------------------- /bundle/syntastic/doc/syntastic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/doc/syntastic.txt -------------------------------------------------------------------------------- /bundle/syntastic/plugin/syntastic.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/syntastic/plugin/syntastic.vim -------------------------------------------------------------------------------- /bundle/tabular/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /bundle/tabular/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/.gitrepo -------------------------------------------------------------------------------- /bundle/tabular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/LICENSE.md -------------------------------------------------------------------------------- /bundle/tabular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/README.md -------------------------------------------------------------------------------- /bundle/tabular/autoload/tabular.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/autoload/tabular.vim -------------------------------------------------------------------------------- /bundle/tabular/doc/Tabular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/doc/Tabular.txt -------------------------------------------------------------------------------- /bundle/tabular/plugin/Tabular.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tabular/plugin/Tabular.vim -------------------------------------------------------------------------------- /bundle/tagbar/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/.github/FUNDING.yml -------------------------------------------------------------------------------- /bundle/tagbar/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/.gitrepo -------------------------------------------------------------------------------- /bundle/tagbar/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/.vintrc.yaml -------------------------------------------------------------------------------- /bundle/tagbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/LICENSE -------------------------------------------------------------------------------- /bundle/tagbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/README.md -------------------------------------------------------------------------------- /bundle/tagbar/autoload/tagbar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/autoload/tagbar.vim -------------------------------------------------------------------------------- /bundle/tagbar/doc/tagbar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/doc/tagbar.txt -------------------------------------------------------------------------------- /bundle/tagbar/plugin/tagbar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/plugin/tagbar.vim -------------------------------------------------------------------------------- /bundle/tagbar/syntax/tagbar.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tagbar/syntax/tagbar.vim -------------------------------------------------------------------------------- /bundle/tcomment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/.gitignore -------------------------------------------------------------------------------- /bundle/tcomment/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/.gitrepo -------------------------------------------------------------------------------- /bundle/tcomment/CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/CHANGES.TXT -------------------------------------------------------------------------------- /bundle/tcomment/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/LICENSE.TXT -------------------------------------------------------------------------------- /bundle/tcomment/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/README -------------------------------------------------------------------------------- /bundle/tcomment/addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/addon-info.json -------------------------------------------------------------------------------- /bundle/tcomment/autoload/tcomment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/autoload/tcomment.vim -------------------------------------------------------------------------------- /bundle/tcomment/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/doc/tags -------------------------------------------------------------------------------- /bundle/tcomment/doc/tcomment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/doc/tcomment.txt -------------------------------------------------------------------------------- /bundle/tcomment/etc/tpl_tcomment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/etc/tpl_tcomment.txt -------------------------------------------------------------------------------- /bundle/tcomment/plugin/tcomment.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/tcomment/plugin/tcomment.vim -------------------------------------------------------------------------------- /bundle/tcomment/spec/tcomment/issue30_test.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /bundle/tcomment/spec/tcomment/issue30_test_2.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0/* ; */ 4 | } 5 | -------------------------------------------------------------------------------- /bundle/tcomment/spec/tcomment/issue30_test_3.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0/* */; 4 | } 5 | -------------------------------------------------------------------------------- /bundle/textobj-comment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/.gitignore -------------------------------------------------------------------------------- /bundle/textobj-comment/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/.gitrepo -------------------------------------------------------------------------------- /bundle/textobj-comment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/Makefile -------------------------------------------------------------------------------- /bundle/textobj-comment/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/README.markdown -------------------------------------------------------------------------------- /bundle/textobj-comment/VimFlavor: -------------------------------------------------------------------------------- 1 | flavor 'kana/vim-textobj-user', '~> 0.4' 2 | -------------------------------------------------------------------------------- /bundle/textobj-comment/addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/addon-info.json -------------------------------------------------------------------------------- /bundle/textobj-comment/t/inline.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/t/inline.vim -------------------------------------------------------------------------------- /bundle/textobj-comment/t/leaders.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/t/leaders.vim -------------------------------------------------------------------------------- /bundle/textobj-comment/t/paired.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/t/paired.vim -------------------------------------------------------------------------------- /bundle/textobj-comment/t/plugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/t/plugin.vim -------------------------------------------------------------------------------- /bundle/textobj-comment/t/simple.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-comment/t/simple.vim -------------------------------------------------------------------------------- /bundle/textobj-user/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/.gitignore -------------------------------------------------------------------------------- /bundle/textobj-user/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/.gitrepo -------------------------------------------------------------------------------- /bundle/textobj-user/.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.0.0 4 | script: rake ci 5 | -------------------------------------------------------------------------------- /bundle/textobj-user/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'vim-flavor', '~> 2.0' 4 | -------------------------------------------------------------------------------- /bundle/textobj-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/README.md -------------------------------------------------------------------------------- /bundle/textobj-user/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/Rakefile -------------------------------------------------------------------------------- /bundle/textobj-user/t/keep-marks.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/keep-marks.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/map.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/map.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/move.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/move.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/plugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/plugin.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/region-type.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/region-type.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/scan.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/scan.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/script-local.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/script-local.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/selection.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/selection.vim -------------------------------------------------------------------------------- /bundle/textobj-user/t/snr-prefix.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/textobj-user/t/snr-prefix.vim -------------------------------------------------------------------------------- /bundle/undotree/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /bundle/undotree/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/.gitrepo -------------------------------------------------------------------------------- /bundle/undotree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/LICENSE -------------------------------------------------------------------------------- /bundle/undotree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/README.md -------------------------------------------------------------------------------- /bundle/undotree/autoload/undotree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/autoload/undotree.vim -------------------------------------------------------------------------------- /bundle/undotree/doc/undotree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/doc/undotree.txt -------------------------------------------------------------------------------- /bundle/undotree/plugin/undotree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/plugin/undotree.vim -------------------------------------------------------------------------------- /bundle/undotree/syntax/undotree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/undotree/syntax/undotree.vim -------------------------------------------------------------------------------- /bundle/viewdoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.vba 2 | *.vmb 3 | *.zip 4 | -------------------------------------------------------------------------------- /bundle/viewdoc/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/.gitrepo -------------------------------------------------------------------------------- /bundle/viewdoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/Makefile -------------------------------------------------------------------------------- /bundle/viewdoc/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/README.asciidoc -------------------------------------------------------------------------------- /bundle/viewdoc/doc/viewdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/doc/viewdoc.txt -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc.vim -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc_help.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc_help.vim -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc_info.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc_info.vim -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc_man.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc_man.vim -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc_pman.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc_pman.vim -------------------------------------------------------------------------------- /bundle/viewdoc/plugin/viewdoc_ri.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/plugin/viewdoc_ri.vim -------------------------------------------------------------------------------- /bundle/viewdoc/syntax/info.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/viewdoc/syntax/info.vim -------------------------------------------------------------------------------- /bundle/vim-hug-neovim-rpc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /bundle/vim-hug-neovim-rpc/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/vim-hug-neovim-rpc/.gitrepo -------------------------------------------------------------------------------- /bundle/vim-hug-neovim-rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/vim-hug-neovim-rpc/LICENSE -------------------------------------------------------------------------------- /bundle/vim-hug-neovim-rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/vim-hug-neovim-rpc/README.md -------------------------------------------------------------------------------- /bundle/wmgraphviz/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | *.swp 3 | -------------------------------------------------------------------------------- /bundle/wmgraphviz/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/.gitrepo -------------------------------------------------------------------------------- /bundle/wmgraphviz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/Makefile -------------------------------------------------------------------------------- /bundle/wmgraphviz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/README.md -------------------------------------------------------------------------------- /bundle/wmgraphviz/doc/wmgraphviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/doc/wmgraphviz.txt -------------------------------------------------------------------------------- /bundle/wmgraphviz/ftdetect/dot.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/ftdetect/dot.vim -------------------------------------------------------------------------------- /bundle/wmgraphviz/ftplugin/dot.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/ftplugin/dot.vim -------------------------------------------------------------------------------- /bundle/wmgraphviz/test/simple.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/bundle/wmgraphviz/test/simple.dot -------------------------------------------------------------------------------- /colors/colortest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/colors/colortest.vim -------------------------------------------------------------------------------- /colors/powerman.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/colors/powerman.vim -------------------------------------------------------------------------------- /ftdetect/infsh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdetect/infsh.vim -------------------------------------------------------------------------------- /ftdetect/limbo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdetect/limbo.vim -------------------------------------------------------------------------------- /ftdetect/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdetect/markdown.vim -------------------------------------------------------------------------------- /ftdetect/mkfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdetect/mkfile.vim -------------------------------------------------------------------------------- /ftdetect/tmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdetect/tmpl.vim -------------------------------------------------------------------------------- /ftdoc/css/css21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdoc/css/css21.txt -------------------------------------------------------------------------------- /ftdoc/tex/latexhelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftdoc/tex/latexhelp.txt -------------------------------------------------------------------------------- /ftplugin/asciidoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftplugin/asciidoc.vim -------------------------------------------------------------------------------- /ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/ftplugin/markdown.vim -------------------------------------------------------------------------------- /snippets/limbo.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/snippets/limbo.snippets -------------------------------------------------------------------------------- /snippets/tmpl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/snippets/tmpl.snippets -------------------------------------------------------------------------------- /syntax/asciidoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/asciidoc.vim -------------------------------------------------------------------------------- /syntax/cheatsheet.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/cheatsheet.vim -------------------------------------------------------------------------------- /syntax/fluxkeys.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/fluxkeys.vim -------------------------------------------------------------------------------- /syntax/gocaddyfiletmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/gocaddyfiletmpl.vim -------------------------------------------------------------------------------- /syntax/goconftmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/goconftmpl.vim -------------------------------------------------------------------------------- /syntax/gonftablestmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/gonftablestmpl.vim -------------------------------------------------------------------------------- /syntax/gonginxtmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/gonginxtmpl.vim -------------------------------------------------------------------------------- /syntax/gopfmaintmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/gopfmaintmpl.vim -------------------------------------------------------------------------------- /syntax/goyamltmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/goyamltmpl.vim -------------------------------------------------------------------------------- /syntax/htmlperl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/htmlperl.vim -------------------------------------------------------------------------------- /syntax/infsh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/infsh.vim -------------------------------------------------------------------------------- /syntax/limbo.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/limbo.vim -------------------------------------------------------------------------------- /syntax/mkfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/mkfile.vim -------------------------------------------------------------------------------- /syntax/rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/rc.vim -------------------------------------------------------------------------------- /syntax/tmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/tmpl.vim -------------------------------------------------------------------------------- /syntax/tmpljavascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/syntax/tmpljavascript.vim -------------------------------------------------------------------------------- /themes/airline-powerman.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/themes/airline-powerman.vim -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerman/dotvim/HEAD/vimrc --------------------------------------------------------------------------------