├── .gitignore ├── Makefile ├── after ├── ftplugin │ ├── c.vim │ ├── go.vim │ ├── java.vim │ ├── mail.vim │ ├── python.vim │ ├── racket.vim │ └── vim.vim ├── plugin │ └── alt.vim └── syntax │ └── racket.vim ├── autoload ├── dotvim.vim └── snippet_helpers.vim ├── colors └── acme.vim ├── compiler ├── aio.vim ├── chktex.vim ├── diction.vim ├── gradle.vim ├── panda.vim ├── pandatex.vim ├── proselint.vim ├── pycodestyle.vim ├── python.vim ├── shellcheck.vim ├── slideshow.vim ├── vint.vim └── writegood.vim ├── extra ├── coc-settings.json ├── cterm_to_hex.vim ├── default.tern-project ├── dict │ ├── en_common.dict │ └── latex_comp.txt ├── efm │ └── config.yaml ├── org │ ├── filetemplate.org │ ├── template.org │ ├── templateQUTE.org │ └── templatenofile.org ├── snip │ ├── _c │ │ ├── _c_#def │ │ ├── _c_#if │ │ ├── _c_#ifndef │ │ ├── _c_#inc │ │ ├── _c_case │ │ ├── _c_dbg │ │ ├── _c_do │ │ ├── _c_elif │ │ ├── _c_else │ │ ├── _c_for │ │ ├── _c_fori │ │ ├── _c_func │ │ ├── _c_getopt │ │ ├── _c_guard │ │ ├── _c_if │ │ ├── _c_ife │ │ ├── _c_main │ │ ├── _c_once │ │ ├── _c_printf │ │ ├── _c_struct │ │ ├── _c_switch │ │ ├── _c_tstruct │ │ └── _c_while │ ├── _dotoo │ │ ├── _dotoo_cbl │ │ ├── _dotoo_cls │ │ ├── _dotoo_dl │ │ ├── _dotoo_file │ │ ├── _dotoo_image │ │ ├── _dotoo_link │ │ ├── _dotoo_sch │ │ ├── _dotoo_sec │ │ ├── _dotoo_ssec │ │ └── _dotoo_sssec │ ├── _global │ │ ├── com │ │ ├── dts │ │ ├── dts_com │ │ └── todo │ ├── _go │ │ ├── _go_dbg │ │ ├── _go_eq │ │ ├── _go_err │ │ ├── _go_errt │ │ ├── _go_errw │ │ ├── _go_for │ │ ├── _go_forrange │ │ ├── _go_func │ │ ├── _go_if │ │ ├── _go_pkg │ │ ├── _go_print │ │ ├── _go_printf │ │ ├── _go_slice │ │ └── _go_sp │ ├── _html │ │ ├── _html_# │ │ ├── _html_. │ │ ├── _html_HTML │ │ ├── _html_br │ │ ├── _html_div │ │ ├── _html_dl │ │ ├── _html_h1 │ │ ├── _html_h2 │ │ ├── _html_h3 │ │ ├── _html_img │ │ ├── _html_link │ │ ├── _html_meta │ │ ├── _html_nav │ │ ├── _html_ol │ │ ├── _html_p │ │ ├── _html_q │ │ ├── _html_script │ │ ├── _html_small │ │ ├── _html_strong │ │ ├── _html_style │ │ ├── _html_table │ │ ├── _html_td │ │ ├── _html_tr │ │ └── _html_ul │ ├── _java │ │ ├── _java_array │ │ ├── _java_class │ │ ├── _java_datatypes │ │ ├── _java_for │ │ ├── _java_fore │ │ ├── _java_hdr │ │ ├── _java_if │ │ ├── _java_ife │ │ ├── _java_main │ │ ├── _java_print │ │ ├── _java_printf │ │ ├── _java_println │ │ ├── _java_switch │ │ └── _java_while │ ├── _javascript │ │ ├── _javascript_af │ │ ├── _javascript_case │ │ ├── _javascript_do │ │ ├── _javascript_for │ │ ├── _javascript_func │ │ ├── _javascript_get │ │ ├── _javascript_if │ │ ├── _javascript_ife │ │ ├── _javascript_proto │ │ ├── _javascript_refresh │ │ ├── _javascript_ret │ │ ├── _javascript_switch │ │ └── _javascript_timeout │ ├── _make │ │ ├── _make_9troff │ │ ├── _make_groff │ │ ├── _make_groff_old │ │ ├── _make_heirloom │ │ ├── _make_neatroff │ │ └── _make_troff │ ├── _markdown │ │ ├── _markdown_cbl │ │ ├── _markdown_eqn │ │ ├── _markdown_formula │ │ ├── _markdown_groff │ │ ├── _markdown_sec │ │ ├── _markdown_ssec │ │ └── _markdown_sssec │ ├── _pandoc │ │ ├── _pandoc_cbl │ │ ├── _pandoc_sec │ │ ├── _pandoc_ssec │ │ └── _pandoc_sssec │ ├── _perl │ │ ├── _perl_class │ │ ├── _perl_desc │ │ ├── _perl_eval │ │ ├── _perl_fh │ │ ├── _perl_for │ │ ├── _perl_fore │ │ ├── _perl_hdr │ │ ├── _perl_if │ │ ├── _perl_ife │ │ ├── _perl_ifee │ │ ├── _perl_mode │ │ ├── _perl_modulino │ │ ├── _perl_slurp │ │ ├── _perl_slurps │ │ ├── _perl_sub │ │ ├── _perl_ternary │ │ ├── _perl_unless │ │ ├── _perl_usw │ │ ├── _perl_while │ │ ├── _perl_xfor │ │ ├── _perl_xif │ │ ├── _perl_xunless │ │ └── _perl_xwhile │ ├── _python │ │ ├── _python_class │ │ ├── _python_dbg │ │ ├── _python_def │ │ ├── _python_elif │ │ ├── _python_else │ │ ├── _python_enc │ │ ├── _python_env │ │ ├── _python_fi │ │ ├── _python_fir │ │ ├── _python_for │ │ ├── _python_if │ │ ├── _python_ifmain │ │ ├── _python_im │ │ ├── _python_print │ │ ├── _python_try │ │ ├── _python_trye │ │ ├── _python_tryef │ │ ├── _python_tryf │ │ ├── _python_while │ │ └── _python_with │ ├── _rec │ │ └── _rec_note │ ├── _rust │ │ ├── _rust_for │ │ ├── _rust_if │ │ ├── _rust_main │ │ ├── _rust_print │ │ └── _rust_println │ ├── _sh │ │ ├── _sh_ask │ │ ├── _sh_case │ │ ├── _sh_cmpn │ │ ├── _sh_cmpt │ │ ├── _sh_for │ │ ├── _sh_func │ │ ├── _sh_hdr │ │ ├── _sh_if │ │ ├── _sh_ife │ │ ├── _sh_opt │ │ ├── _sh_usage │ │ ├── _sh_while │ │ └── env │ ├── _tex │ │ ├── _tex_begin │ │ ├── _tex_center │ │ ├── _tex_description │ │ ├── _tex_enum │ │ ├── _tex_equation │ │ ├── _tex_equation_with_label │ │ ├── _tex_item │ │ ├── _tex_itemize │ │ ├── _tex_sec │ │ └── _tex_thm │ ├── _troff │ │ ├── _troff_augmentedmatrix │ │ ├── _troff_bold │ │ ├── _troff_bullet │ │ ├── _troff_cbl │ │ ├── _troff_ccol │ │ ├── _troff_cw │ │ ├── _troff_eqn │ │ ├── _troff_fold │ │ ├── _troff_foldc │ │ ├── _troff_forpic │ │ ├── _troff_grap │ │ ├── _troff_ifpic │ │ ├── _troff_jot │ │ ├── _troff_left │ │ ├── _troff_matrix │ │ ├── _troff_pic │ │ ├── _troff_pile │ │ ├── _troff_pspic │ │ ├── _troff_sec │ │ ├── _troff_sprintfpic │ │ ├── _troff_sql │ │ ├── _troff_ssec │ │ ├── _troff_tbl │ │ ├── _troff_tblsql │ │ ├── _troff_title │ │ ├── _troff_vector │ │ └── _troff_xn │ └── _vim │ │ ├── _vim_augroup │ │ ├── _vim_command │ │ ├── _vim_dbg │ │ ├── _vim_fold │ │ ├── _vim_foldc │ │ ├── _vim_foldp │ │ ├── _vim_for │ │ ├── _vim_func │ │ ├── _vim_hdr │ │ ├── _vim_if │ │ ├── _vim_plug │ │ └── _vim_try └── vim-old │ ├── neomucomplete.vim │ ├── textobjects.vim │ └── vim-old.vim ├── filetype.vim ├── float.vim ├── ftplugin ├── c.vim ├── cpp.vim ├── dotoo.vim ├── go.vim ├── html.vim ├── java.vim ├── javascript.vim ├── mail.vim ├── markdown.vim ├── org.vim ├── python.vim ├── qf.vim ├── sh.vim ├── tex.vim ├── troff.vim └── vim.vim ├── plugin ├── coc-settings.vim ├── lsc.vim ├── lsp.vim ├── mucomplete.vim ├── myrsi.vim └── util │ ├── async.vim │ ├── commentobj.vim │ ├── cursor_shape.vim │ ├── lsc_snip.vim │ ├── org.vim │ ├── qfsign.vim │ ├── root.vim │ └── skel.vim ├── scripts.vim ├── skeleton ├── Makefile ├── README.md ├── c ├── go ├── html ├── java ├── main.c ├── python ├── sh ├── tex └── vim ├── spell ├── en.utf-8.add └── en.utf-8.add.spl └── vimrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/Makefile -------------------------------------------------------------------------------- /after/ftplugin/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/c.vim -------------------------------------------------------------------------------- /after/ftplugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/go.vim -------------------------------------------------------------------------------- /after/ftplugin/java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/java.vim -------------------------------------------------------------------------------- /after/ftplugin/mail.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/mail.vim -------------------------------------------------------------------------------- /after/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/python.vim -------------------------------------------------------------------------------- /after/ftplugin/racket.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/racket.vim -------------------------------------------------------------------------------- /after/ftplugin/vim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/ftplugin/vim.vim -------------------------------------------------------------------------------- /after/plugin/alt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/plugin/alt.vim -------------------------------------------------------------------------------- /after/syntax/racket.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/after/syntax/racket.vim -------------------------------------------------------------------------------- /autoload/dotvim.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/autoload/dotvim.vim -------------------------------------------------------------------------------- /autoload/snippet_helpers.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/autoload/snippet_helpers.vim -------------------------------------------------------------------------------- /colors/acme.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/colors/acme.vim -------------------------------------------------------------------------------- /compiler/aio.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/aio.vim -------------------------------------------------------------------------------- /compiler/chktex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/chktex.vim -------------------------------------------------------------------------------- /compiler/diction.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/diction.vim -------------------------------------------------------------------------------- /compiler/gradle.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/gradle.vim -------------------------------------------------------------------------------- /compiler/panda.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/panda.vim -------------------------------------------------------------------------------- /compiler/pandatex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/pandatex.vim -------------------------------------------------------------------------------- /compiler/proselint.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/proselint.vim -------------------------------------------------------------------------------- /compiler/pycodestyle.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/pycodestyle.vim -------------------------------------------------------------------------------- /compiler/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/python.vim -------------------------------------------------------------------------------- /compiler/shellcheck.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/shellcheck.vim -------------------------------------------------------------------------------- /compiler/slideshow.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/slideshow.vim -------------------------------------------------------------------------------- /compiler/vint.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/vint.vim -------------------------------------------------------------------------------- /compiler/writegood.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/compiler/writegood.vim -------------------------------------------------------------------------------- /extra/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/coc-settings.json -------------------------------------------------------------------------------- /extra/cterm_to_hex.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/cterm_to_hex.vim -------------------------------------------------------------------------------- /extra/default.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/default.tern-project -------------------------------------------------------------------------------- /extra/dict/en_common.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/dict/en_common.dict -------------------------------------------------------------------------------- /extra/dict/latex_comp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/dict/latex_comp.txt -------------------------------------------------------------------------------- /extra/efm/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/efm/config.yaml -------------------------------------------------------------------------------- /extra/org/filetemplate.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/org/filetemplate.org -------------------------------------------------------------------------------- /extra/org/template.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/org/template.org -------------------------------------------------------------------------------- /extra/org/templateQUTE.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/org/templateQUTE.org -------------------------------------------------------------------------------- /extra/org/templatenofile.org: -------------------------------------------------------------------------------- 1 | * TODO {{++}} 2 | SCHEDULED: <{{+~strftime(g:org_date_format)+}}> 3 | -------------------------------------------------------------------------------- /extra/snip/_c/_c_#def: -------------------------------------------------------------------------------- 1 | #define {{+NAME+}} {{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_c/_c_#if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_#if -------------------------------------------------------------------------------- /extra/snip/_c/_c_#ifndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_#ifndef -------------------------------------------------------------------------------- /extra/snip/_c/_c_#inc: -------------------------------------------------------------------------------- 1 | #include <{{+stdio+}}.h> 2 | -------------------------------------------------------------------------------- /extra/snip/_c/_c_case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_case -------------------------------------------------------------------------------- /extra/snip/_c/_c_dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_dbg -------------------------------------------------------------------------------- /extra/snip/_c/_c_do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_do -------------------------------------------------------------------------------- /extra/snip/_c/_c_elif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_elif -------------------------------------------------------------------------------- /extra/snip/_c/_c_else: -------------------------------------------------------------------------------- 1 | else { 2 | {{+/* expression */+}} 3 | } 4 | -------------------------------------------------------------------------------- /extra/snip/_c/_c_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_for -------------------------------------------------------------------------------- /extra/snip/_c/_c_fori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_fori -------------------------------------------------------------------------------- /extra/snip/_c/_c_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_func -------------------------------------------------------------------------------- /extra/snip/_c/_c_getopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_getopt -------------------------------------------------------------------------------- /extra/snip/_c/_c_guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_guard -------------------------------------------------------------------------------- /extra/snip/_c/_c_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_if -------------------------------------------------------------------------------- /extra/snip/_c/_c_ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_ife -------------------------------------------------------------------------------- /extra/snip/_c/_c_main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_main -------------------------------------------------------------------------------- /extra/snip/_c/_c_once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_once -------------------------------------------------------------------------------- /extra/snip/_c/_c_printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_printf -------------------------------------------------------------------------------- /extra/snip/_c/_c_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_struct -------------------------------------------------------------------------------- /extra/snip/_c/_c_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_switch -------------------------------------------------------------------------------- /extra/snip/_c/_c_tstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_tstruct -------------------------------------------------------------------------------- /extra/snip/_c/_c_while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_c/_c_while -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_dotoo/_dotoo_cbl -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_cls: -------------------------------------------------------------------------------- 1 | CLOSED: [{{+~strftime(g:org_date_format)+}}]{{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_dl: -------------------------------------------------------------------------------- 1 | DEADLINE: <{{+~strftime(g:org_date_format)+}}>{{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_dotoo/_dotoo_file -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_dotoo/_dotoo_image -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_dotoo/_dotoo_link -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_sch: -------------------------------------------------------------------------------- 1 | SCHEDULED: <{{+~strftime(g:org_date_format)+}}>{{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_sec: -------------------------------------------------------------------------------- 1 | * {{+Section Title+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_ssec: -------------------------------------------------------------------------------- 1 | ** {{+Section Title+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_dotoo/_dotoo_sssec: -------------------------------------------------------------------------------- 1 | *** {{+Section Title+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_global/com: -------------------------------------------------------------------------------- 1 | {{+~substitute(&commentstring,'%s','{{--}}','')+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_global/dts: -------------------------------------------------------------------------------- 1 | {{+~strftime("%c")+}}{{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_global/dts_com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_global/dts_com -------------------------------------------------------------------------------- /extra/snip/_global/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_global/todo -------------------------------------------------------------------------------- /extra/snip/_go/_go_dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_dbg -------------------------------------------------------------------------------- /extra/snip/_go/_go_eq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_eq -------------------------------------------------------------------------------- /extra/snip/_go/_go_err: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | return {{+err+}} 3 | } 4 | -------------------------------------------------------------------------------- /extra/snip/_go/_go_errt: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | t.Fatal(err) 3 | } 4 | {{++}} 5 | -------------------------------------------------------------------------------- /extra/snip/_go/_go_errw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_errw -------------------------------------------------------------------------------- /extra/snip/_go/_go_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_for -------------------------------------------------------------------------------- /extra/snip/_go/_go_forrange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_forrange -------------------------------------------------------------------------------- /extra/snip/_go/_go_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_func -------------------------------------------------------------------------------- /extra/snip/_go/_go_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_if -------------------------------------------------------------------------------- /extra/snip/_go/_go_pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_pkg -------------------------------------------------------------------------------- /extra/snip/_go/_go_print: -------------------------------------------------------------------------------- 1 | fmt.Println({{++}}){{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_go/_go_printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_printf -------------------------------------------------------------------------------- /extra/snip/_go/_go_slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_slice -------------------------------------------------------------------------------- /extra/snip/_go/_go_sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_go/_go_sp -------------------------------------------------------------------------------- /extra/snip/_html/_html_#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_# -------------------------------------------------------------------------------- /extra/snip/_html/_html_.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_. -------------------------------------------------------------------------------- /extra/snip/_html/_html_HTML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_HTML -------------------------------------------------------------------------------- /extra/snip/_html/_html_br: -------------------------------------------------------------------------------- 1 |
{{++}} 2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_div: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_div -------------------------------------------------------------------------------- /extra/snip/_html/_html_dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_dl -------------------------------------------------------------------------------- /extra/snip/_html/_html_h1: -------------------------------------------------------------------------------- 1 |

{{+HEADING1+}}

2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_h2: -------------------------------------------------------------------------------- 1 |

{{+HEADIN2+}}

2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_h3: -------------------------------------------------------------------------------- 1 |

{{+HEADING3+}}

2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_img -------------------------------------------------------------------------------- /extra/snip/_html/_html_link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_link -------------------------------------------------------------------------------- /extra/snip/_html/_html_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_meta -------------------------------------------------------------------------------- /extra/snip/_html/_html_nav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_nav -------------------------------------------------------------------------------- /extra/snip/_html/_html_ol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_ol -------------------------------------------------------------------------------- /extra/snip/_html/_html_p: -------------------------------------------------------------------------------- 1 |

{{++}}

2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_q -------------------------------------------------------------------------------- /extra/snip/_html/_html_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_script -------------------------------------------------------------------------------- /extra/snip/_html/_html_small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_small -------------------------------------------------------------------------------- /extra/snip/_html/_html_strong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_strong -------------------------------------------------------------------------------- /extra/snip/_html/_html_style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_style -------------------------------------------------------------------------------- /extra/snip/_html/_html_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_table -------------------------------------------------------------------------------- /extra/snip/_html/_html_td: -------------------------------------------------------------------------------- 1 | {{++}} 2 | -------------------------------------------------------------------------------- /extra/snip/_html/_html_tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_tr -------------------------------------------------------------------------------- /extra/snip/_html/_html_ul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_html/_html_ul -------------------------------------------------------------------------------- /extra/snip/_java/_java_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_array -------------------------------------------------------------------------------- /extra/snip/_java/_java_class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_class -------------------------------------------------------------------------------- /extra/snip/_java/_java_datatypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_datatypes -------------------------------------------------------------------------------- /extra/snip/_java/_java_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_for -------------------------------------------------------------------------------- /extra/snip/_java/_java_fore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_fore -------------------------------------------------------------------------------- /extra/snip/_java/_java_hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_hdr -------------------------------------------------------------------------------- /extra/snip/_java/_java_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_if -------------------------------------------------------------------------------- /extra/snip/_java/_java_ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_ife -------------------------------------------------------------------------------- /extra/snip/_java/_java_main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_main -------------------------------------------------------------------------------- /extra/snip/_java/_java_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_print -------------------------------------------------------------------------------- /extra/snip/_java/_java_printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_printf -------------------------------------------------------------------------------- /extra/snip/_java/_java_println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_println -------------------------------------------------------------------------------- /extra/snip/_java/_java_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_switch -------------------------------------------------------------------------------- /extra/snip/_java/_java_while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_java/_java_while -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_af -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_case -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_do -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_for -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_func -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_get -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_if -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_ife -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_proto -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_refresh: -------------------------------------------------------------------------------- 1 | {{--}} 2 | -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_ret: -------------------------------------------------------------------------------- 1 | return {{+value+}}; 2 | -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_switch -------------------------------------------------------------------------------- /extra/snip/_javascript/_javascript_timeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_javascript/_javascript_timeout -------------------------------------------------------------------------------- /extra/snip/_make/_make_9troff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_9troff -------------------------------------------------------------------------------- /extra/snip/_make/_make_groff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_groff -------------------------------------------------------------------------------- /extra/snip/_make/_make_groff_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_groff_old -------------------------------------------------------------------------------- /extra/snip/_make/_make_heirloom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_heirloom -------------------------------------------------------------------------------- /extra/snip/_make/_make_neatroff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_neatroff -------------------------------------------------------------------------------- /extra/snip/_make/_make_troff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_make/_make_troff -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_markdown/_markdown_cbl -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_markdown/_markdown_eqn -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_formula: -------------------------------------------------------------------------------- 1 | ```{=ms} 2 | .backtrace FORMULA 3 | ``` 4 | -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_groff: -------------------------------------------------------------------------------- 1 | ```{=ms} 2 | {{++}} 3 | ``` 4 | -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_sec: -------------------------------------------------------------------------------- 1 | # {{+Section Title+}} # 2 | -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_ssec: -------------------------------------------------------------------------------- 1 | ## {{+Section Title+}} ## 2 | -------------------------------------------------------------------------------- /extra/snip/_markdown/_markdown_sssec: -------------------------------------------------------------------------------- 1 | ### {{+Section Title+}} ### 2 | -------------------------------------------------------------------------------- /extra/snip/_pandoc/_pandoc_cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_pandoc/_pandoc_cbl -------------------------------------------------------------------------------- /extra/snip/_pandoc/_pandoc_sec: -------------------------------------------------------------------------------- 1 | # {{+Section Title+}} # 2 | -------------------------------------------------------------------------------- /extra/snip/_pandoc/_pandoc_ssec: -------------------------------------------------------------------------------- 1 | ## {{+Section Title+}} ## 2 | -------------------------------------------------------------------------------- /extra/snip/_pandoc/_pandoc_sssec: -------------------------------------------------------------------------------- 1 | ### {{+Section Title+}} ### 2 | -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_class -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_desc -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_eval -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_fh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_fh -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_for -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_fore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_fore -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_hdr -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_if -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_ife -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_ifee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_ifee -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_mode -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_modulino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_modulino -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_slurp: -------------------------------------------------------------------------------- 1 | my {{+$data+}} = do { local $/; <$in> }; 2 | -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_slurps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_slurps -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_sub -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_ternary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_ternary -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_unless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_unless -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_usw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_usw -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_while -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_xfor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_xfor -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_xif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_xif -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_xunless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_xunless -------------------------------------------------------------------------------- /extra/snip/_perl/_perl_xwhile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_perl/_perl_xwhile -------------------------------------------------------------------------------- /extra/snip/_python/_python_class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_class -------------------------------------------------------------------------------- /extra/snip/_python/_python_dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_dbg -------------------------------------------------------------------------------- /extra/snip/_python/_python_def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_def -------------------------------------------------------------------------------- /extra/snip/_python/_python_elif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_elif -------------------------------------------------------------------------------- /extra/snip/_python/_python_else: -------------------------------------------------------------------------------- 1 | else: 2 | {{+#statements+}} 3 | -------------------------------------------------------------------------------- /extra/snip/_python/_python_enc: -------------------------------------------------------------------------------- 1 | # -*- coding: {{+utf-8+}} -*- 2 | -------------------------------------------------------------------------------- /extra/snip/_python/_python_env: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env {{+python+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_python/_python_fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_fi -------------------------------------------------------------------------------- /extra/snip/_python/_python_fir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_fir -------------------------------------------------------------------------------- /extra/snip/_python/_python_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_for -------------------------------------------------------------------------------- /extra/snip/_python/_python_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_if -------------------------------------------------------------------------------- /extra/snip/_python/_python_ifmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_ifmain -------------------------------------------------------------------------------- /extra/snip/_python/_python_im: -------------------------------------------------------------------------------- 1 | import {{+module+}} 2 | -------------------------------------------------------------------------------- /extra/snip/_python/_python_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_print -------------------------------------------------------------------------------- /extra/snip/_python/_python_try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_try -------------------------------------------------------------------------------- /extra/snip/_python/_python_trye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_trye -------------------------------------------------------------------------------- /extra/snip/_python/_python_tryef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_tryef -------------------------------------------------------------------------------- /extra/snip/_python/_python_tryf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_tryf -------------------------------------------------------------------------------- /extra/snip/_python/_python_while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_while -------------------------------------------------------------------------------- /extra/snip/_python/_python_with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_python/_python_with -------------------------------------------------------------------------------- /extra/snip/_rec/_rec_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_rec/_rec_note -------------------------------------------------------------------------------- /extra/snip/_rust/_rust_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_rust/_rust_for -------------------------------------------------------------------------------- /extra/snip/_rust/_rust_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_rust/_rust_if -------------------------------------------------------------------------------- /extra/snip/_rust/_rust_main: -------------------------------------------------------------------------------- 1 | fn main() 2 | { 3 | {{+/* contents */+}} 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /extra/snip/_rust/_rust_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_rust/_rust_print -------------------------------------------------------------------------------- /extra/snip/_rust/_rust_println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_rust/_rust_println -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_ask: -------------------------------------------------------------------------------- 1 | echo "{{+What is your quest?+}}" 2 | read answer 3 | {{++}} 4 | -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_sh/_sh_case -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_cmpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_sh/_sh_cmpn -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_cmpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_sh/_sh_cmpt -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gavinok/dotvim/HEAD/extra/snip/_sh/_sh_for -------------------------------------------------------------------------------- /extra/snip/_sh/_sh_func: -------------------------------------------------------------------------------- 1 | {{+