├── .gitignore ├── LICENSE ├── README.md ├── _vimrc ├── macvim.jpg └── vimfiles ├── autoload └── pathogen.vim ├── bundle ├── ack │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── ack.vim │ ├── doc │ │ ├── ack.txt │ │ └── ack_quick_help.txt │ ├── ftplugin │ │ └── qf.vim │ └── plugin │ │ └── ack.vim ├── addon-mw-utils │ ├── autoload │ │ ├── buf_utils.vim │ │ ├── cached_file_contents.vim │ │ ├── env_reload.vim │ │ ├── funcref.vim │ │ ├── glob.vim │ │ ├── glob_linux.vim │ │ ├── tiny_cmd.vim │ │ └── tovl │ │ │ ├── scratch_buffer.vim │ │ │ └── ui │ │ │ └── filter_list.vim │ ├── doc │ │ ├── cached_file_contents.txt │ │ ├── funcref.txt │ │ └── tiny_cmd.txt │ └── vim-addon-mw-utils-addon-info.txt ├── airline-themes │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── airline │ │ │ └── themes │ │ │ ├── alduin.vim │ │ │ ├── angr.vim │ │ │ ├── apprentice.vim │ │ │ ├── atomic.vim │ │ │ ├── ayu_dark.vim │ │ │ ├── ayu_light.vim │ │ │ ├── ayu_mirage.vim │ │ │ ├── badwolf.vim │ │ │ ├── base16.vim │ │ │ ├── base16_3024.vim │ │ │ ├── base16_adwaita.vim │ │ │ ├── base16_apathy.vim │ │ │ ├── base16_ashes.vim │ │ │ ├── base16_atelier_cave.vim │ │ │ ├── base16_atelier_cave_light.vim │ │ │ ├── base16_atelier_dune.vim │ │ │ ├── base16_atelier_dune_light.vim │ │ │ ├── base16_atelier_estuary.vim │ │ │ ├── base16_atelier_estuary_light.vim │ │ │ ├── base16_atelier_forest.vim │ │ │ ├── base16_atelier_forest_light.vim │ │ │ ├── base16_atelier_heath.vim │ │ │ ├── base16_atelier_heath_light.vim │ │ │ ├── base16_atelier_lakeside.vim │ │ │ ├── base16_atelier_lakeside_light.vim │ │ │ ├── base16_atelier_plateau.vim │ │ │ ├── base16_atelier_plateau_light.vim │ │ │ ├── base16_atelier_savanna.vim │ │ │ ├── base16_atelier_savanna_light.vim │ │ │ ├── base16_atelier_seaside.vim │ │ │ ├── base16_atelier_seaside_light.vim │ │ │ ├── base16_atelier_sulphurpool.vim │ │ │ ├── base16_atelier_sulphurpool_light.vim │ │ │ ├── base16_atelierdune.vim │ │ │ ├── base16_atelierforest.vim │ │ │ ├── base16_atelierheath.vim │ │ │ ├── base16_atelierlakeside.vim │ │ │ ├── base16_atelierseaside.vim │ │ │ ├── base16_atlas.vim │ │ │ ├── base16_bespin.vim │ │ │ ├── base16_black_metal.vim │ │ │ ├── base16_black_metal_bathory.vim │ │ │ ├── base16_black_metal_burzum.vim │ │ │ ├── base16_black_metal_dark_funeral.vim │ │ │ ├── base16_black_metal_gorgoroth.vim │ │ │ ├── base16_black_metal_immortal.vim │ │ │ ├── base16_black_metal_khold.vim │ │ │ ├── base16_black_metal_marduk.vim │ │ │ ├── base16_black_metal_mayhem.vim │ │ │ ├── base16_black_metal_nile.vim │ │ │ ├── base16_black_metal_venom.vim │ │ │ ├── base16_brewer.vim │ │ │ ├── base16_bright.vim │ │ │ ├── base16_brogrammer.vim │ │ │ ├── base16_brushtrees.vim │ │ │ ├── base16_brushtrees_dark.vim │ │ │ ├── base16_chalk.vim │ │ │ ├── base16_circus.vim │ │ │ ├── base16_classic.vim │ │ │ ├── base16_classic_dark.vim │ │ │ ├── base16_classic_light.vim │ │ │ ├── base16_codeschool.vim │ │ │ ├── base16_colors.vim │ │ │ ├── base16_cupcake.vim │ │ │ ├── base16_cupertino.vim │ │ │ ├── base16_darktooth.vim │ │ │ ├── base16_decaf.vim │ │ │ ├── base16_default.vim │ │ │ ├── base16_default_dark.vim │ │ │ ├── base16_default_light.vim │ │ │ ├── base16_dracula.vim │ │ │ ├── base16_edge_dark.vim │ │ │ ├── base16_edge_light.vim │ │ │ ├── base16_eighties.vim │ │ │ ├── base16_embers.vim │ │ │ ├── base16_espresso.vim │ │ │ ├── base16_flat.vim │ │ │ ├── base16_framer.vim │ │ │ ├── base16_fruit_soda.vim │ │ │ ├── base16_gigavolt.vim │ │ │ ├── base16_github.vim │ │ │ ├── base16_google.vim │ │ │ ├── base16_google_dark.vim │ │ │ ├── base16_google_light.vim │ │ │ ├── base16_grayscale.vim │ │ │ ├── base16_grayscale_dark.vim │ │ │ ├── base16_grayscale_light.vim │ │ │ ├── base16_greenscreen.vim │ │ │ ├── base16_gruvbox_dark_hard.vim │ │ │ ├── base16_gruvbox_dark_medium.vim │ │ │ ├── base16_gruvbox_dark_pale.vim │ │ │ ├── base16_gruvbox_dark_soft.vim │ │ │ ├── base16_gruvbox_light_hard.vim │ │ │ ├── base16_gruvbox_light_medium.vim │ │ │ ├── base16_gruvbox_light_soft.vim │ │ │ ├── base16_harmonic16.vim │ │ │ ├── base16_harmonic_dark.vim │ │ │ ├── base16_harmonic_light.vim │ │ │ ├── base16_heetch.vim │ │ │ ├── base16_heetch_light.vim │ │ │ ├── base16_helios.vim │ │ │ ├── base16_hopscotch.vim │ │ │ ├── base16_horizon_dark.vim │ │ │ ├── base16_horizon_light.vim │ │ │ ├── base16_horizon_terminal_dark.vim │ │ │ ├── base16_horizon_terminal_light.vim │ │ │ ├── base16_ia_dark.vim │ │ │ ├── base16_ia_light.vim │ │ │ ├── base16_icy.vim │ │ │ ├── base16_irblack.vim │ │ │ ├── base16_isotope.vim │ │ │ ├── base16_londontube.vim │ │ │ ├── base16_macintosh.vim │ │ │ ├── base16_marrakesh.vim │ │ │ ├── base16_materia.vim │ │ │ ├── base16_material.vim │ │ │ ├── base16_material_darker.vim │ │ │ ├── base16_material_lighter.vim │ │ │ ├── base16_material_palenight.vim │ │ │ ├── base16_material_vivid.vim │ │ │ ├── base16_mellow_purple.vim │ │ │ ├── base16_mexico_light.vim │ │ │ ├── base16_mocha.vim │ │ │ ├── base16_monokai.vim │ │ │ ├── base16_nord.vim │ │ │ ├── base16_nova.vim │ │ │ ├── base16_ocean.vim │ │ │ ├── base16_oceanicnext.vim │ │ │ ├── base16_one_light.vim │ │ │ ├── base16_onedark.vim │ │ │ ├── base16_outrun_dark.vim │ │ │ ├── base16_papercolor_dark.vim │ │ │ ├── base16_papercolor_light.vim │ │ │ ├── base16_paraiso.vim │ │ │ ├── base16_phd.vim │ │ │ ├── base16_pico.vim │ │ │ ├── base16_pop.vim │ │ │ ├── base16_porple.vim │ │ │ ├── base16_railscasts.vim │ │ │ ├── base16_rebecca.vim │ │ │ ├── base16_sandcastle.vim │ │ │ ├── base16_seti.vim │ │ │ ├── base16_shapeshifter.vim │ │ │ ├── base16_shell.vim │ │ │ ├── base16_snazzy.vim │ │ │ ├── base16_solarflare.vim │ │ │ ├── base16_solarized.vim │ │ │ ├── base16_solarized_dark.vim │ │ │ ├── base16_solarized_light.vim │ │ │ ├── base16_spacemacs.vim │ │ │ ├── base16_summerfruit.vim │ │ │ ├── base16_summerfruit_dark.vim │ │ │ ├── base16_summerfruit_light.vim │ │ │ ├── base16_synth_midnight_dark.vim │ │ │ ├── base16_tomorrow.vim │ │ │ ├── base16_tomorrow_night.vim │ │ │ ├── base16_tomorrow_night_eighties.vim │ │ │ ├── base16_tube.vim │ │ │ ├── base16_twilight.vim │ │ │ ├── base16_unikitty_dark.vim │ │ │ ├── base16_unikitty_light.vim │ │ │ ├── base16_vim.vim │ │ │ ├── base16_woodland.vim │ │ │ ├── base16_xcode_dusk.vim │ │ │ ├── base16_zenburn.vim │ │ │ ├── base16color.vim │ │ │ ├── behelit.vim │ │ │ ├── biogoo.vim │ │ │ ├── blood_red.vim │ │ │ ├── bubblegum.vim │ │ │ ├── cobalt2.vim │ │ │ ├── cool.vim │ │ │ ├── cyberpunk.vim │ │ │ ├── dark_minimal.vim │ │ │ ├── desertink.vim │ │ │ ├── deus.vim │ │ │ ├── distinguished.vim │ │ │ ├── durant.vim │ │ │ ├── fairyfloss.vim │ │ │ ├── fruit_punch.vim │ │ │ ├── google_dark.vim │ │ │ ├── google_light.vim │ │ │ ├── hybrid.vim │ │ │ ├── hybridline.vim │ │ │ ├── jellybeans.vim │ │ │ ├── jet.vim │ │ │ ├── kalisi.vim │ │ │ ├── kolor.vim │ │ │ ├── laederon.vim │ │ │ ├── lessnoise.vim │ │ │ ├── light.vim │ │ │ ├── lighthaus.vim │ │ │ ├── lucius.vim │ │ │ ├── luna.vim │ │ │ ├── minimalist.vim │ │ │ ├── molokai.vim │ │ │ ├── monochrome.vim │ │ │ ├── murmur.vim │ │ │ ├── night_owl.vim │ │ │ ├── nord_minimal.vim │ │ │ ├── onedark.vim │ │ │ ├── ouo.vim │ │ │ ├── owo.vim │ │ │ ├── papercolor.vim │ │ │ ├── peaksea.vim │ │ │ ├── powerlineish.vim │ │ │ ├── qwq.vim │ │ │ ├── raven.vim │ │ │ ├── ravenpower.vim │ │ │ ├── seagull.vim │ │ │ ├── selenized.vim │ │ │ ├── selenized_bw.vim │ │ │ ├── seoul256.vim │ │ │ ├── serene.vim │ │ │ ├── sierra.vim │ │ │ ├── silver.vim │ │ │ ├── simple.vim │ │ │ ├── soda.vim │ │ │ ├── sol.vim │ │ │ ├── solarized.vim │ │ │ ├── solarized_flood.vim │ │ │ ├── supernova.vim │ │ │ ├── term.vim │ │ │ ├── term_light.vim │ │ │ ├── tomorrow.vim │ │ │ ├── transparent.vim │ │ │ ├── ubaryd.vim │ │ │ ├── understated.vim │ │ │ ├── violet.vim │ │ │ ├── wombat.vim │ │ │ ├── xtermlight.vim │ │ │ └── zenburn.vim │ ├── doc │ │ └── airline-themes.txt │ ├── plugin │ │ └── airline-themes.vim │ └── test │ │ └── airline-themes.vader ├── airline │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── airline.vim │ │ └── airline │ │ │ ├── async.vim │ │ │ ├── builder.vim │ │ │ ├── debug.vim │ │ │ ├── extensions.vim │ │ │ ├── extensions │ │ │ ├── ale.vim │ │ │ ├── battery.vim │ │ │ ├── bookmark.vim │ │ │ ├── branch.vim │ │ │ ├── bufferline.vim │ │ │ ├── capslock.vim │ │ │ ├── coc.vim │ │ │ ├── commandt.vim │ │ │ ├── csv.vim │ │ │ ├── ctrlp.vim │ │ │ ├── ctrlspace.vim │ │ │ ├── cursormode.vim │ │ │ ├── default.vim │ │ │ ├── denite.vim │ │ │ ├── dirvish.vim │ │ │ ├── eclim.vim │ │ │ ├── example.vim │ │ │ ├── fern.vim │ │ │ ├── fugitiveline.vim │ │ │ ├── fzf.vim │ │ │ ├── gen_tags.vim │ │ │ ├── gina.vim │ │ │ ├── grepper.vim │ │ │ ├── gutentags.vim │ │ │ ├── hunks.vim │ │ │ ├── keymap.vim │ │ │ ├── languageclient.vim │ │ │ ├── localsearch.vim │ │ │ ├── lsp.vim │ │ │ ├── neomake.vim │ │ │ ├── netrw.vim │ │ │ ├── nrrwrgn.vim │ │ │ ├── nvimlsp.vim │ │ │ ├── obsession.vim │ │ │ ├── omnisharp.vim │ │ │ ├── po.vim │ │ │ ├── poetv.vim │ │ │ ├── promptline.vim │ │ │ ├── quickfix.vim │ │ │ ├── rufo.vim │ │ │ ├── scrollbar.vim │ │ │ ├── searchcount.vim │ │ │ ├── syntastic.vim │ │ │ ├── tabline.vim │ │ │ ├── tabline │ │ │ │ ├── autoshow.vim │ │ │ │ ├── buffers.vim │ │ │ │ ├── buflist.vim │ │ │ │ ├── builder.vim │ │ │ │ ├── ctrlspace.vim │ │ │ │ ├── formatters │ │ │ │ │ ├── default.vim │ │ │ │ │ ├── jsformatter.vim │ │ │ │ │ ├── short_path.vim │ │ │ │ │ ├── short_path_improved.vim │ │ │ │ │ ├── tabnr.vim │ │ │ │ │ ├── unique_tail.vim │ │ │ │ │ └── unique_tail_improved.vim │ │ │ │ ├── tabs.vim │ │ │ │ ├── tabws.vim │ │ │ │ └── xtabline.vim │ │ │ ├── tagbar.vim │ │ │ ├── taglist.vim │ │ │ ├── term.vim │ │ │ ├── tmuxline.vim │ │ │ ├── undotree.vim │ │ │ ├── unicode.vim │ │ │ ├── unite.vim │ │ │ ├── vim9lsp.vim │ │ │ ├── vimagit.vim │ │ │ ├── vimcmake.vim │ │ │ ├── vimtex.vim │ │ │ ├── virtualenv.vim │ │ │ ├── vista.vim │ │ │ ├── whitespace.vim │ │ │ ├── windowswap.vim │ │ │ ├── wordcount.vim │ │ │ ├── wordcount │ │ │ │ └── formatters │ │ │ │ │ ├── default.vim │ │ │ │ │ └── readingtime.vim │ │ │ ├── xkblayout.vim │ │ │ ├── ycm.vim │ │ │ └── zoomwintab.vim │ │ │ ├── formatter │ │ │ └── short_path.vim │ │ │ ├── highlighter.vim │ │ │ ├── init.vim │ │ │ ├── msdos.vim │ │ │ ├── parts.vim │ │ │ ├── section.vim │ │ │ ├── themes.vim │ │ │ ├── themes │ │ │ └── dark.vim │ │ │ └── util.vim │ ├── doc │ │ └── airline.txt │ ├── plugin │ │ └── airline.vim │ └── test │ │ ├── .themisrc │ │ ├── airline.vimspec │ │ ├── builder.vimspec │ │ ├── commands.vimspec │ │ ├── extensions_default.vimspec │ │ ├── extensions_tabline.vimspec │ │ ├── highlighter.vimspec │ │ ├── init.vimspec │ │ ├── parts.vimspec │ │ ├── section.vimspec │ │ ├── themes.vimspec │ │ └── util.vimspec ├── auto-pairs │ ├── README.md │ ├── doc │ │ └── AutoPairs.txt │ └── plugin │ │ └── auto-pairs.vim ├── bufexplorer │ ├── LICENSE │ ├── README.md │ ├── doc │ │ └── bufexplorer.txt │ └── plugin │ │ └── bufexplorer.vim ├── css-color │ ├── LICENSE │ ├── README.md │ ├── after │ │ └── syntax │ │ │ ├── c.vim │ │ │ ├── cfg.vim │ │ │ ├── clojure.vim │ │ │ ├── csh.vim │ │ │ ├── css.vim │ │ │ ├── dosini.vim │ │ │ ├── elm.vim │ │ │ ├── fish.vim │ │ │ ├── go.vim │ │ │ ├── html.vim │ │ │ ├── i3.vim │ │ │ ├── i3config.vim │ │ │ ├── javascript.vim │ │ │ ├── json.vim │ │ │ ├── jsx.vim │ │ │ ├── kitty.vim │ │ │ ├── less.vim │ │ │ ├── moon.vim │ │ │ ├── nix.vim │ │ │ ├── perl.vim │ │ │ ├── php.vim │ │ │ ├── python.vim │ │ │ ├── qml.vim │ │ │ ├── r.vim │ │ │ ├── rasi.vim │ │ │ ├── ruby.vim │ │ │ ├── sass.vim │ │ │ ├── scss.vim │ │ │ ├── sh.vim │ │ │ ├── stylus.vim │ │ │ ├── tcsh.vim │ │ │ ├── tmux.vim │ │ │ ├── typescript.vim │ │ │ ├── typescriptreact.vim │ │ │ ├── vala.vim │ │ │ ├── vim.vim │ │ │ ├── xdefaults.vim │ │ │ ├── xml.vim │ │ │ ├── yaml.vim │ │ │ └── zsh.vim │ ├── autoload │ │ └── css_color.vim │ ├── syntax │ │ └── colornames │ │ │ ├── basic.vim │ │ │ └── extended.vim │ └── tests │ │ ├── bench │ │ ├── example.csh │ │ ├── example.css │ │ ├── example.fish │ │ ├── example.jsx │ │ ├── example.less │ │ ├── example.nix │ │ ├── example.sass │ │ ├── example.scss │ │ ├── example.sh │ │ ├── example.stylus │ │ ├── example.tcsh │ │ ├── example.ts │ │ ├── example.tsx │ │ ├── example.zsh │ │ └── torture.css ├── ctrlp-funky │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── ctrlp │ │ │ ├── funky.vim │ │ │ └── funky │ │ │ ├── cache.vim │ │ │ ├── ft │ │ │ ├── Jenkinsfile.vim │ │ │ ├── ansible.vim │ │ │ ├── bash.vim │ │ │ ├── c.vim │ │ │ ├── carbon.vim │ │ │ ├── cf.vim │ │ │ ├── chef.vim │ │ │ ├── clojure.vim │ │ │ ├── cmm.vim │ │ │ ├── coffee.vim │ │ │ ├── cpp.vim │ │ │ ├── cs.vim │ │ │ ├── css.vim │ │ │ ├── dart.vim │ │ │ ├── dash.vim │ │ │ ├── elixir.vim │ │ │ ├── elm.vim │ │ │ ├── go.vim │ │ │ ├── graphql.vim │ │ │ ├── groovy.vim │ │ │ ├── haskell.vim │ │ │ ├── html.vim │ │ │ ├── java.vim │ │ │ ├── javascript.vim │ │ │ ├── jinja.vim │ │ │ ├── lua.vim │ │ │ ├── make.vim │ │ │ ├── markdown.vim │ │ │ ├── moon.vim │ │ │ ├── nerdtree.vim │ │ │ ├── objc.vim │ │ │ ├── perl.vim │ │ │ ├── php.vim │ │ │ ├── plsql.vim │ │ │ ├── proto.vim │ │ │ ├── python.vim │ │ │ ├── r.vim │ │ │ ├── rmd.vim │ │ │ ├── ruby.vim │ │ │ ├── rust.vim │ │ │ ├── scala.vim │ │ │ ├── scss.vim │ │ │ ├── sh.vim │ │ │ ├── sql.vim │ │ │ ├── terraform.vim │ │ │ ├── tex.vim │ │ │ ├── tf.vim │ │ │ ├── thrift.vim │ │ │ ├── toml.vim │ │ │ ├── typescript.vim │ │ │ ├── vb.vim │ │ │ ├── vim.vim │ │ │ ├── vue.vim │ │ │ ├── xhtml.vim │ │ │ ├── yaml.vim │ │ │ ├── zig.vim │ │ │ └── zsh.vim │ │ │ ├── literals.vim │ │ │ └── utils.vim │ ├── doc │ │ └── ctrlp-funky.txt │ ├── plugin │ │ └── funky.vim │ └── test │ │ └── funky.tar ├── ctrlp │ ├── LICENSE │ ├── autoload │ │ ├── ctrlp.vim │ │ └── ctrlp │ │ │ ├── autoignore.vim │ │ │ ├── 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.cnx │ │ └── ctrlp.txt │ ├── plugin │ │ └── ctrlp.vim │ └── readme.md ├── doczh │ ├── AUTHORS │ ├── ChangeLog │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── dict.txt │ ├── doc │ │ ├── arabic.cnx │ │ ├── autocmd.cnx │ │ ├── builtin.cnx │ │ ├── change.cnx │ │ ├── channel.cnx │ │ ├── cmdline.cnx │ │ ├── debug.cnx │ │ ├── debugger.cnx │ │ ├── develop.cnx │ │ ├── diff.cnx │ │ ├── digraph.cnx │ │ ├── editing.cnx │ │ ├── eval.cnx │ │ ├── farsi.cnx │ │ ├── filetype.cnx │ │ ├── fold.cnx │ │ ├── ft_ada.cnx │ │ ├── ft_context.cnx │ │ ├── ft_mp.cnx │ │ ├── ft_ps1.cnx │ │ ├── ft_raku.cnx │ │ ├── ft_rust.cnx │ │ ├── ft_sql.cnx │ │ ├── gui.cnx │ │ ├── gui_w32.cnx │ │ ├── gui_x11.cnx │ │ ├── hangulin.cnx │ │ ├── hebrew.cnx │ │ ├── help.cnx │ │ ├── helphelp.cnx │ │ ├── howto.cnx │ │ ├── if_cscop.cnx │ │ ├── if_lua.cnx │ │ ├── if_mzsch.cnx │ │ ├── if_ole.cnx │ │ ├── if_perl.cnx │ │ ├── if_pyth.cnx │ │ ├── if_ruby.cnx │ │ ├── if_sniff.cnx │ │ ├── if_tcl.cnx │ │ ├── indent.cnx │ │ ├── index.cnx │ │ ├── insert.cnx │ │ ├── intro.cnx │ │ ├── map.cnx │ │ ├── mbyte.cnx │ │ ├── message.cnx │ │ ├── mlang.cnx │ │ ├── motion.cnx │ │ ├── netbeans.cnx │ │ ├── options.cnx │ │ ├── os_390.cnx │ │ ├── os_amiga.cnx │ │ ├── os_beos.cnx │ │ ├── os_dos.cnx │ │ ├── os_haiku.cnx │ │ ├── os_mac.cnx │ │ ├── os_mint.cnx │ │ ├── os_msdos.cnx │ │ ├── os_os2.cnx │ │ ├── os_qnx.cnx │ │ ├── os_risc.cnx │ │ ├── os_unix.cnx │ │ ├── os_vms.cnx │ │ ├── os_win32.cnx │ │ ├── pattern.cnx │ │ ├── pi_getscript.cnx │ │ ├── pi_gzip.cnx │ │ ├── pi_logipat.cnx │ │ ├── pi_netrw.cnx │ │ ├── pi_paren.cnx │ │ ├── pi_spec.cnx │ │ ├── pi_tar.cnx │ │ ├── pi_vimball.cnx │ │ ├── pi_zip.cnx │ │ ├── popup.cnx │ │ ├── print.cnx │ │ ├── quickfix.cnx │ │ ├── quickref.cnx │ │ ├── quotes.cnx │ │ ├── recover.cnx │ │ ├── remote.cnx │ │ ├── repeat.cnx │ │ ├── rileft.cnx │ │ ├── russian.cnx │ │ ├── scroll.cnx │ │ ├── sign.cnx │ │ ├── spell.cnx │ │ ├── sponsor.cnx │ │ ├── starting.cnx │ │ ├── syntax.cnx │ │ ├── tabpage.cnx │ │ ├── tags-cn │ │ ├── tagsrch.cnx │ │ ├── term.cnx │ │ ├── terminal.cnx │ │ ├── testing.cnx │ │ ├── textprop.cnx │ │ ├── tips.cnx │ │ ├── todo.cnx │ │ ├── uganda.cnx │ │ ├── undo.cnx │ │ ├── userfunc.cnx │ │ ├── usr_01.cnx │ │ ├── usr_02.cnx │ │ ├── usr_03.cnx │ │ ├── usr_04.cnx │ │ ├── usr_05.cnx │ │ ├── usr_06.cnx │ │ ├── usr_07.cnx │ │ ├── usr_08.cnx │ │ ├── usr_09.cnx │ │ ├── usr_10.cnx │ │ ├── usr_11.cnx │ │ ├── usr_12.cnx │ │ ├── usr_20.cnx │ │ ├── usr_21.cnx │ │ ├── usr_22.cnx │ │ ├── usr_23.cnx │ │ ├── usr_24.cnx │ │ ├── usr_25.cnx │ │ ├── usr_26.cnx │ │ ├── usr_27.cnx │ │ ├── usr_28.cnx │ │ ├── usr_29.cnx │ │ ├── usr_30.cnx │ │ ├── usr_31.cnx │ │ ├── usr_32.cnx │ │ ├── usr_40.cnx │ │ ├── usr_41.cnx │ │ ├── usr_42.cnx │ │ ├── usr_43.cnx │ │ ├── usr_44.cnx │ │ ├── usr_45.cnx │ │ ├── usr_50.cnx │ │ ├── usr_51.cnx │ │ ├── usr_52.cnx │ │ ├── usr_90.cnx │ │ ├── usr_toc.cnx │ │ ├── various.cnx │ │ ├── version4.cnx │ │ ├── version5.cnx │ │ ├── version6.cnx │ │ ├── version7.cnx │ │ ├── version8.cnx │ │ ├── version9.cnx │ │ ├── vi_diff.cnx │ │ ├── vim9.cnx │ │ ├── visual.cnx │ │ ├── windows.cnx │ │ └── workshop.cnx │ ├── guides.txt │ ├── plugin │ │ └── vimcdoc.vim │ ├── syntax │ │ └── help_cn.vim │ └── vimcdoc.sh ├── emmet │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.mkd │ ├── TODO │ ├── TUTORIAL │ ├── TUTORIAL.mkd │ ├── autoload │ │ ├── emmet.vim │ │ └── emmet │ │ │ ├── lang.vim │ │ │ ├── lang │ │ │ ├── css.vim │ │ │ ├── elm.vim │ │ │ ├── haml.vim │ │ │ ├── html.vim │ │ │ ├── jade.vim │ │ │ ├── less.vim │ │ │ ├── sass.vim │ │ │ ├── scss.vim │ │ │ └── slim.vim │ │ │ ├── lorem │ │ │ ├── en.vim │ │ │ └── ja.vim │ │ │ └── util.vim │ ├── doc │ │ └── emmet.txt │ ├── emmet.vim.vimup │ ├── plugin │ │ └── emmet.vim │ └── unittest.vim ├── eregex │ ├── Makefile │ ├── README.markdown │ ├── config.mk │ ├── doc │ │ ├── eregex.jax │ │ └── eregex.txt │ └── plugin │ │ ├── eregex.vim │ │ └── eregex_e.vim ├── fencview │ ├── README.md │ ├── doc │ │ └── fencview.txt │ ├── fenc_tests │ │ ├── big5.txt │ │ ├── big5_B.txt │ │ ├── bom_utf-16.txt │ │ ├── bom_utf-16le.txt │ │ ├── bom_utf-32.txt │ │ ├── bom_utf-32le.txt │ │ ├── bom_utf-8.txt │ │ ├── cp936-with_bad_chars.txt │ │ ├── euc_jp.txt │ │ ├── euc_tw.txt │ │ ├── euc_tw_B.txt │ │ ├── shishi-little.txt │ │ ├── sjis.txt │ │ ├── test-euc-tw.txt │ │ ├── test-eucjp.txt │ │ ├── test-gb.txt │ │ ├── test-gb2.txt │ │ ├── test-kr.txt │ │ ├── test-latin.txt │ │ ├── test-shishi.txt │ │ ├── test-utf16be.txt │ │ ├── utf8_not_cp949.txt │ │ ├── utf8cn.txt │ │ └── utf_8.txt │ └── plugin │ │ └── fencview.vim ├── fugitive │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── autoload │ │ └── fugitive.vim │ ├── doc │ │ └── fugitive.txt │ ├── ftdetect │ │ └── fugitive.vim │ ├── ftplugin │ │ └── fugitiveblame.vim │ ├── plugin │ │ └── fugitive.vim │ └── syntax │ │ ├── fugitive.vim │ │ └── fugitiveblame.vim ├── gitgutter │ ├── LICENCE │ ├── README.mkd │ ├── autoload │ │ ├── gitgutter.vim │ │ └── gitgutter │ │ │ ├── async.vim │ │ │ ├── debug.vim │ │ │ ├── diff.vim │ │ │ ├── diff_highlight.vim │ │ │ ├── fold.vim │ │ │ ├── highlight.vim │ │ │ ├── hunk.vim │ │ │ ├── sign.vim │ │ │ └── utility.vim │ ├── doc │ │ └── gitgutter.txt │ ├── plugin │ │ └── gitgutter.vim │ └── test │ │ ├── cp932.txt │ │ ├── fixture.txt │ │ ├── fixture_dos.txt │ │ ├── runner.vim │ │ ├── test │ │ └── test_gitgutter.vim ├── indentLine │ ├── LICENSE │ ├── README.md │ ├── after │ │ ├── plugin │ │ │ └── indentLine.vim │ │ └── syntax │ │ │ └── indentLine.vim │ ├── doc │ │ └── indentLine.txt │ └── glyph │ │ └── indentLine-dotted-guide.eps ├── javascript-libraries-syntax │ ├── Makefile │ ├── README.md │ ├── after │ │ └── syntax │ │ │ ├── coffee.vim │ │ │ ├── html.vim │ │ │ ├── javascript.vim │ │ │ ├── ls.vim │ │ │ └── typescript.vim │ ├── autoload │ │ ├── jslibsyntax.vim │ │ └── syntax │ │ │ ├── angularjs.coffee.vim │ │ │ ├── angularjs.html.vim │ │ │ ├── angularjs.javascript.vim │ │ │ ├── angularjs.ls.vim │ │ │ ├── angularjs.typescript.vim │ │ │ ├── angularui.html.vim │ │ │ ├── angularuirouter.coffee.vim │ │ │ ├── angularuirouter.javascript.vim │ │ │ ├── angularuirouter.ls.vim │ │ │ ├── angularuirouter.typescript.vim │ │ │ ├── backbone.coffee.vim │ │ │ ├── backbone.javascript.vim │ │ │ ├── backbone.ls.vim │ │ │ ├── backbone.typescript.vim │ │ │ ├── chai.coffee.vim │ │ │ ├── chai.javascript.vim │ │ │ ├── chai.ls.vim │ │ │ ├── chai.typescript.vim │ │ │ ├── d3.coffee.vim │ │ │ ├── d3.javascript.vim │ │ │ ├── d3.ls.vim │ │ │ ├── d3.typescript.vim │ │ │ ├── flux.coffee.vim │ │ │ ├── flux.javascript.vim │ │ │ ├── flux.ls.vim │ │ │ ├── flux.typescript.vim │ │ │ ├── handlebars.coffee.vim │ │ │ ├── handlebars.javascript.vim │ │ │ ├── handlebars.ls.vim │ │ │ ├── handlebars.typescript.vim │ │ │ ├── jasmine.coffee.vim │ │ │ ├── jasmine.javascript.vim │ │ │ ├── jasmine.ls.vim │ │ │ ├── jasmine.typescript.vim │ │ │ ├── jquery.coffee.vim │ │ │ ├── jquery.javascript.vim │ │ │ ├── jquery.ls.vim │ │ │ ├── jquery.typescript.vim │ │ │ ├── postprocess.coffee.vim │ │ │ ├── postprocess.javascript.vim │ │ │ ├── postprocess.ls.vim │ │ │ ├── postprocess.typescript.vim │ │ │ ├── prelude.coffee.vim │ │ │ ├── prelude.javascript.vim │ │ │ ├── prelude.ls.vim │ │ │ ├── prelude.typescript.vim │ │ │ ├── ramda.coffee.vim │ │ │ ├── ramda.javascript.vim │ │ │ ├── ramda.ls.vim │ │ │ ├── ramda.typescript.vim │ │ │ ├── react.coffee.vim │ │ │ ├── react.javascript.vim │ │ │ ├── react.ls.vim │ │ │ ├── react.typescript.vim │ │ │ ├── requirejs.coffee.vim │ │ │ ├── requirejs.javascript.vim │ │ │ ├── requirejs.ls.vim │ │ │ ├── requirejs.typescript.vim │ │ │ ├── sugar.coffee.vim │ │ │ ├── sugar.javascript.vim │ │ │ ├── sugar.ls.vim │ │ │ ├── sugar.typescript.vim │ │ │ ├── tape.coffee.vim │ │ │ ├── tape.javascript.vim │ │ │ ├── tape.ls.vim │ │ │ ├── tape.typescript.vim │ │ │ ├── underscore.coffee.vim │ │ │ ├── underscore.javascript.vim │ │ │ ├── underscore.ls.vim │ │ │ ├── underscore.typescript.vim │ │ │ ├── update.sh │ │ │ ├── vue.coffee.vim │ │ │ ├── vue.html.vim │ │ │ ├── vue.javascript.vim │ │ │ ├── vue.ls.vim │ │ │ └── vue.typescript.vim │ └── config.mk ├── nerdcommenter │ ├── .vintrc.yaml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── nerdcommenter.vim │ ├── doc │ │ └── nerdcommenter.txt │ └── plugin │ │ └── nerdcommenter.vim ├── nerdtree-git-plugin │ ├── .pre-commit-config.yaml │ ├── .vintrc.yaml │ ├── LICENSE │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── nerdtree.vim │ ├── autoload │ │ ├── gitstatus.vim │ │ └── gitstatus │ │ │ ├── doctor.vim │ │ │ ├── job.vim │ │ │ ├── listener.vim │ │ │ ├── log.vim │ │ │ └── util.vim │ ├── nerdtree_plugin │ │ └── git_status.vim │ └── tests │ │ ├── .themisrc │ │ └── test_all.vim ├── nerdtree │ ├── .vintrc.yaml │ ├── CHANGELOG.md │ ├── LICENCE │ ├── README.markdown │ ├── _config.yml │ ├── autoload │ │ ├── nerdtree.vim │ │ └── nerdtree │ │ │ └── ui_glue.vim │ ├── doc │ │ └── NERDTree.txt │ ├── lib │ │ └── nerdtree │ │ │ ├── bookmark.vim │ │ │ ├── creator.vim │ │ │ ├── event.vim │ │ │ ├── flag_set.vim │ │ │ ├── key_map.vim │ │ │ ├── menu_controller.vim │ │ │ ├── menu_item.vim │ │ │ ├── nerdtree.vim │ │ │ ├── notifier.vim │ │ │ ├── opener.vim │ │ │ ├── path.vim │ │ │ ├── tree_dir_node.vim │ │ │ ├── tree_file_node.vim │ │ │ └── ui.vim │ ├── nerdtree_plugin │ │ ├── exec_menuitem.vim │ │ ├── fs_menu.vim │ │ └── vcs.vim │ ├── plugin │ │ └── NERD_tree.vim │ └── syntax │ │ └── nerdtree.vim ├── prettier │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── autoload │ │ ├── prettier.vim │ │ └── prettier │ │ │ ├── bridge │ │ │ └── parser.vim │ │ │ ├── job │ │ │ ├── async │ │ │ │ ├── neovim.vim │ │ │ │ └── vim.vim │ │ │ └── runner.vim │ │ │ ├── logging │ │ │ └── error.vim │ │ │ ├── presets │ │ │ └── fb.vim │ │ │ ├── resolver │ │ │ ├── config.vim │ │ │ ├── executable.vim │ │ │ └── preset.vim │ │ │ └── utils │ │ │ ├── buffer.vim │ │ │ ├── quickfix.vim │ │ │ └── shim.vim │ ├── doc │ │ └── prettier.txt │ ├── ftdetect │ │ ├── css.vim │ │ ├── graphql.vim │ │ ├── html.vim │ │ ├── javascript.vim │ │ ├── json.vim │ │ ├── less.vim │ │ ├── lua.vim │ │ ├── markdown.vim │ │ ├── php.vim │ │ ├── ruby.vim │ │ ├── scss.vim │ │ ├── svelte.vim │ │ ├── typescript.vim │ │ ├── vue.vim │ │ ├── xml.vim │ │ └── yaml.vim │ ├── ftplugin │ │ ├── css.vim │ │ ├── graphql.vim │ │ ├── html.vim │ │ ├── javascript.vim │ │ ├── json.vim │ │ ├── less.vim │ │ ├── lua.vim │ │ ├── markdown.vim │ │ ├── php.vim │ │ ├── ruby.vim │ │ ├── scss.vim │ │ ├── svelte.vim │ │ ├── typescript.vim │ │ ├── vue.vim │ │ ├── xml.vim │ │ └── yaml.vim │ ├── media │ │ └── vim-prettier.gif │ ├── package.json │ ├── plugin │ │ └── prettier.vim │ ├── tests │ │ ├── __snapshots__ │ │ │ └── formatting.test.js.snap │ │ ├── fixtures │ │ │ ├── foo.css │ │ │ ├── foo.graphql │ │ │ ├── foo.html │ │ │ ├── foo.js │ │ │ ├── foo.json │ │ │ ├── foo.less │ │ │ ├── foo.lua │ │ │ ├── foo.md │ │ │ ├── foo.php │ │ │ ├── foo.rb │ │ │ ├── foo.scss │ │ │ ├── foo.ts │ │ │ ├── foo.vue │ │ │ ├── foo.xml │ │ │ └── foo.yaml │ │ ├── formatting.test.js │ │ └── vimrc │ └── yarn.lock ├── promptline │ ├── .gitignore │ ├── CONTRIBUTORS.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── promptline.vim │ │ └── promptline │ │ │ ├── api.vim │ │ │ ├── presets.vim │ │ │ ├── presets │ │ │ ├── clear.vim │ │ │ ├── full.vim │ │ │ └── powerlineclone.vim │ │ │ ├── sections.vim │ │ │ ├── slices.vim │ │ │ ├── slices │ │ │ ├── battery.vim │ │ │ ├── cwd.vim │ │ │ ├── git_status.sh │ │ │ ├── host.vim │ │ │ ├── jobs.vim │ │ │ ├── last_exit_code.vim │ │ │ └── vcs_branch.vim │ │ │ ├── symbols.vim │ │ │ ├── themes.vim │ │ │ └── themes │ │ │ ├── airline.vim │ │ │ ├── airline_insert.vim │ │ │ ├── airline_visual.vim │ │ │ ├── jelly.vim │ │ │ ├── lightline.vim │ │ │ ├── lightline_insert.vim │ │ │ ├── lightline_visual.vim │ │ │ ├── powerlineclone.vim │ │ │ ├── vim_statusline_1.vim │ │ │ ├── vim_statusline_2.vim │ │ │ └── vim_statusline_3.vim │ ├── doc │ │ └── promptline.txt │ └── plugin │ │ └── promptline.vim ├── repeat │ ├── README.markdown │ └── autoload │ │ └── repeat.vim ├── snipmate │ ├── Contributors.md │ ├── README.md │ ├── addon-info.json │ ├── after │ │ └── plugin │ │ │ └── snipMate.vim │ ├── autoload │ │ ├── snipMate.vim │ │ ├── snipMate_python_demo.vim │ │ └── snipmate │ │ │ ├── jumping.vim │ │ │ ├── legacy.vim │ │ │ ├── parse.vim │ │ │ └── util.vim │ ├── doc │ │ └── SnipMate.txt │ ├── ftplugin │ │ ├── html_snip_helper.vim │ │ └── snippets.vim │ ├── indent │ │ └── snippets.vim │ ├── plugin │ │ └── snipMate.vim │ ├── syntax │ │ ├── snippet.vim │ │ └── snippets.vim │ └── t │ │ ├── jumping.vim │ │ ├── parser.vim │ │ └── tests.sh ├── surround │ ├── README.markdown │ ├── doc │ │ └── surround.txt │ └── plugin │ │ └── surround.vim ├── sync │ ├── README.md │ └── plugin │ │ └── sync.vim ├── syntastic │ ├── 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 │ ├── LICENSE.md │ ├── README.md │ ├── after │ │ └── plugin │ │ │ └── TabularMaps.vim │ ├── autoload │ │ └── tabular.vim │ ├── doc │ │ └── Tabular.txt │ └── plugin │ │ └── Tabular.vim ├── tagbar │ ├── .info │ ├── .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 ├── targets │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── health │ │ │ └── targets.vim │ │ ├── targets.vim │ │ └── targets │ │ │ ├── context.vim │ │ │ ├── factory.vim │ │ │ ├── generator.vim │ │ │ ├── legacy.vim │ │ │ ├── mappings.vim │ │ │ ├── modify.vim │ │ │ ├── multigen.vim │ │ │ ├── sources.vim │ │ │ ├── sources │ │ │ ├── argument.vim │ │ │ ├── pair.vim │ │ │ ├── quote.vim │ │ │ ├── separator.vim │ │ │ └── tag.vim │ │ │ ├── state.vim │ │ │ ├── target.vim │ │ │ └── util.vim │ ├── cheatsheet.md │ ├── doc │ │ └── targets.txt │ ├── plugin │ │ └── targets.vim │ ├── plugins.md │ └── test │ │ ├── Makefile │ │ ├── test.vim │ │ ├── test1.in │ │ ├── test1.ok │ │ ├── test10.in │ │ ├── test10.ok │ │ ├── test2.in │ │ ├── test2.ok │ │ ├── test3.in │ │ ├── test3.ok │ │ ├── test4.in │ │ ├── test4.ok │ │ ├── test5.in │ │ ├── test5.ok │ │ ├── test6.in │ │ ├── test6.ok │ │ ├── test7.in │ │ ├── test7.ok │ │ ├── test8.in │ │ ├── test8.ok │ │ ├── test9.in │ │ ├── test9.ok │ │ └── testM.ok ├── tig-explorer │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── tig_explorer.vim │ ├── doc │ │ └── tig-explorer.txt │ ├── plugin │ │ └── tig_explorer.vim │ └── script │ │ └── setup_tmp_tigrc.sh ├── tlib │ ├── CHANGES.TXT │ ├── LICENSE.TXT │ ├── README │ ├── addon-info.json │ ├── autoload │ │ ├── tinykeymap │ │ │ └── map │ │ │ │ └── para_move.vim │ │ ├── tlib.vim │ │ └── tlib │ │ │ ├── Filter_cnf.vim │ │ │ ├── Filter_cnfd.vim │ │ │ ├── Filter_fuzzy.vim │ │ │ ├── Filter_glob.vim │ │ │ ├── Object.vim │ │ │ ├── Test.vim │ │ │ ├── TestChild.vim │ │ │ ├── World.vim │ │ │ ├── agent.vim │ │ │ ├── arg.vim │ │ │ ├── assert.vim │ │ │ ├── autocmdgroup.vim │ │ │ ├── balloon.vim │ │ │ ├── bitwise.vim │ │ │ ├── buffer.vim │ │ │ ├── cache.vim │ │ │ ├── char.vim │ │ │ ├── cmd.vim │ │ │ ├── comments.vim │ │ │ ├── date.vim │ │ │ ├── dictionary.vim │ │ │ ├── dir.vim │ │ │ ├── eval.vim │ │ │ ├── file.vim │ │ │ ├── fixes.vim │ │ │ ├── grep.vim │ │ │ ├── hash.vim │ │ │ ├── hook.vim │ │ │ ├── input.vim │ │ │ ├── list.vim │ │ │ ├── loclist.vim │ │ │ ├── map.vim │ │ │ ├── normal.vim │ │ │ ├── notify.vim │ │ │ ├── number.vim │ │ │ ├── paragraph.vim │ │ │ ├── persistent.vim │ │ │ ├── progressbar.vim │ │ │ ├── qfl.vim │ │ │ ├── rx.vim │ │ │ ├── scratch.vim │ │ │ ├── selection.vim │ │ │ ├── signs.vim │ │ │ ├── string.vim │ │ │ ├── syntax.vim │ │ │ ├── sys.vim │ │ │ ├── tab.vim │ │ │ ├── tag.vim │ │ │ ├── textobjects.vim │ │ │ ├── time.vim │ │ │ ├── trace.vim │ │ │ ├── type.vim │ │ │ ├── url.vim │ │ │ ├── var.vim │ │ │ ├── vcs.vim │ │ │ ├── vim.vim │ │ │ └── win.vim │ ├── doc │ │ └── tlib.txt │ ├── etc │ │ └── tpl_tlib.txt │ ├── macros │ │ └── tlib.vim │ ├── plugin │ │ └── 02tlib.vim │ ├── samples │ │ └── tlib │ │ │ └── input │ │ │ └── tlib_input_list.vim │ ├── scripts │ │ └── create_crc_table.rb │ ├── spec │ │ └── tlib │ │ │ ├── arg.vim │ │ │ ├── date.vim │ │ │ ├── dictionary.vim │ │ │ ├── eval.vim │ │ │ ├── file.vim │ │ │ ├── hash.vim │ │ │ ├── input.vim │ │ │ ├── list.vim │ │ │ ├── rx.vim │ │ │ ├── string.vim │ │ │ ├── url.vim │ │ │ └── var.vim │ └── test │ │ └── tlib.vim ├── undotree │ ├── README.md │ ├── autoload │ │ └── undotree.vim │ ├── doc │ │ └── undotree.txt │ ├── plugin │ │ └── undotree.vim │ └── syntax │ │ └── undotree.vim ├── unimpaired │ ├── README.markdown │ ├── doc │ │ └── unimpaired.txt │ └── plugin │ │ └── unimpaired.vim ├── vim-antlr │ ├── README.markdown │ ├── ftdetect │ │ ├── antlr3.vim │ │ └── antlr4.vim │ └── syntax │ │ ├── antlr3.vim │ │ └── antlr4.vim ├── vim-blade │ ├── README.md │ ├── ftdetect │ │ └── blade.vim │ ├── ftplugin │ │ └── blade.vim │ ├── indent │ │ └── blade.vim │ ├── syntax │ │ └── blade.vim │ ├── test.blade.php │ └── vimrc ├── vim-caddy │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── caddyfile.vim │ ├── ftplugin │ │ └── caddyfile.vim │ ├── indent │ │ └── caddyfile.vim │ └── syntax │ │ └── caddyfile.vim ├── vim-carthage │ ├── README.md │ ├── ftdetect │ │ └── carthage.vim │ ├── syntax │ │ └── carthage.vim │ └── tests │ │ ├── Cartfile │ │ └── Cartfile.resolved ├── vim-clojure │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── clojurecomplete.vim │ ├── clj │ │ ├── .clj-kondo │ │ │ └── config.edn │ │ ├── .gitignore │ │ ├── bin │ │ │ ├── indenttime │ │ │ ├── syntime │ │ │ └── update-unicode │ │ ├── dev-resources │ │ │ ├── test-basic-sexp-indent.txt │ │ │ ├── test-dispatch-macro-indent.in │ │ │ ├── test-dispatch-macro-indent.out │ │ │ ├── test-inherit-indent.in │ │ │ ├── test-inherit-indent.out │ │ │ ├── test-multibyte-indent.txt │ │ │ ├── test-reader-conditional-indent.in │ │ │ ├── test-reader-conditional-indent.out │ │ │ ├── test-side-effects-in-indentexpr.in │ │ │ ├── test-side-effects-in-indentexpr.out │ │ │ ├── test-special-case-indent.in │ │ │ └── test-special-case-indent.out │ │ ├── project.clj │ │ ├── resources │ │ │ └── unicode │ │ │ │ ├── Blocks.txt │ │ │ │ ├── PropertyValueAliases.txt │ │ │ │ └── license │ │ ├── src │ │ │ └── vim_clojure_static │ │ │ │ ├── generate.clj │ │ │ │ └── test.clj │ │ ├── test │ │ │ └── vim_clojure_static │ │ │ │ ├── generate_test.clj │ │ │ │ ├── indent_test.clj │ │ │ │ └── syntax_test.clj │ │ └── vim │ │ │ └── test-runtime.vim │ ├── doc │ │ └── clojure.txt │ ├── ftdetect │ │ └── clojure.vim │ ├── ftplugin │ │ └── clojure.vim │ ├── indent │ │ └── clojure.vim │ └── syntax │ │ └── clojure.vim ├── vim-cpp │ ├── README.md │ └── after │ │ └── syntax │ │ ├── c.vim │ │ └── cpp.vim ├── vim-cppstl │ ├── README │ └── after │ │ └── syntax │ │ └── cpp │ │ └── stl.vim ├── vim-crystal │ ├── .vintrc.yaml │ ├── LICENSE.txt │ ├── README.md │ ├── autoload │ │ ├── crystal │ │ │ └── indent.vim │ │ ├── crystal_lang.vim │ │ ├── ecrystal.vim │ │ └── vital │ │ │ ├── _crystal.vim │ │ │ ├── _crystal │ │ │ ├── ColorEcho.vim │ │ │ ├── Data │ │ │ │ ├── List.vim │ │ │ │ └── String.vim │ │ │ ├── Process.vim │ │ │ └── Web │ │ │ │ └── JSON.vim │ │ │ ├── crystal.vim │ │ │ └── crystal.vital │ ├── ftdetect │ │ ├── crystal.vim │ │ └── ecrystal.vim │ ├── ftplugin │ │ ├── crystal.vim │ │ └── ecrystal.vim │ ├── indent │ │ ├── crystal.vim │ │ └── ecrystal.vim │ ├── plugin │ │ └── crystal.vim │ ├── syntax │ │ ├── crystal.vim │ │ └── ecrystal.vim │ └── syntax_checkers │ │ └── crystal │ │ ├── ameba.vim │ │ └── crystal.vim ├── vim-csharp │ ├── README.md │ ├── autoload │ │ └── cs.vim │ ├── compiler │ │ ├── cs.vim │ │ └── msbuild.vim │ ├── ftplugin │ │ └── cs.vim │ ├── indent │ │ └── cs.vim │ ├── plugin │ │ └── cs.vim │ ├── syntax │ │ ├── aspx.vim │ │ ├── cs.vim │ │ └── cshtml.vim │ └── test │ │ ├── helloworld.cs │ │ ├── sample.cs │ │ └── sample.cshtml ├── vim-css3 │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── css │ │ │ ├── align-3.vim │ │ │ ├── animation-worklet-1.vim │ │ │ ├── animations-1.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 │ │ │ ├── color-3.vim │ │ │ ├── color-4.vim │ │ │ ├── color-5.vim │ │ │ ├── color-adjust-1.vim │ │ │ ├── compositing-1.vim │ │ │ ├── conditional-3.vim │ │ │ ├── conditional-4.vim │ │ │ ├── contain-1.vim │ │ │ ├── contain-2.vim │ │ │ ├── content-3.vim │ │ │ ├── counter-styles-3.vim │ │ │ ├── cssom-1.vim │ │ │ ├── cssom-view-1.vim │ │ │ ├── device-adapt-1.vim │ │ │ ├── display-3.vim │ │ │ ├── easing-1.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 │ │ │ ├── gcpm-3.vim │ │ │ ├── geometry-1.vim │ │ │ ├── grid-1.vim │ │ │ ├── grid-2.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 │ │ │ ├── motion-1.vim │ │ │ ├── multicol-1.vim │ │ │ ├── namespace-3.vim │ │ │ ├── nav-1.vim │ │ │ ├── overflow-3.vim │ │ │ ├── overflow-4.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-snap-1.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 │ │ │ ├── typed-om-1.vim │ │ │ ├── ui-3.vim │ │ │ ├── ui-4.vim │ │ │ ├── unofficials.vim │ │ │ ├── values-3.vim │ │ │ ├── values-4.vim │ │ │ ├── variables-1.vim │ │ │ ├── web-animations-1.vim │ │ │ ├── webvtt1.vim │ │ │ ├── will-change-1.vim │ │ │ ├── worklets-1.vim │ │ │ ├── writing-modes-3.vim │ │ │ └── writing-modes-4.vim │ └── test │ │ └── test.css ├── vim-csv │ ├── CHANGELOG.md │ ├── Makefile │ ├── README.md │ ├── autoload │ │ └── csv.vim │ ├── csv.vmb │ ├── doc │ │ └── ft-csv.txt │ ├── ftdetect │ │ └── csv.vim │ ├── ftplugin │ │ └── csv.vim │ ├── plugin │ │ └── csv.vim │ ├── syntax │ │ └── csv.vim │ └── todo.txt ├── vim-cucumber │ ├── README.markdown │ ├── compiler │ │ └── cucumber.vim │ ├── ftdetect │ │ └── cucumber.vim │ ├── ftplugin │ │ └── cucumber.vim │ ├── indent │ │ └── cucumber.vim │ └── syntax │ │ └── cucumber.vim ├── vim-d │ ├── LICENSE.md │ ├── ftdetect │ │ ├── d.vim │ │ ├── dcov.vim │ │ ├── dd.vim │ │ ├── ddoc.vim │ │ └── dsdl.vim │ ├── indent │ │ └── d.vim │ ├── syntax │ │ ├── d.vim │ │ ├── dcov.vim │ │ ├── dd.vim │ │ ├── ddoc.vim │ │ └── dsdl.vim │ └── tests │ │ ├── array.d │ │ ├── asm.d │ │ ├── builtinStatements.d │ │ ├── comments.d │ │ ├── coverage.lst │ │ ├── d-sample.d │ │ ├── dub.sdl │ │ ├── hybrid.d │ │ ├── import.d │ │ ├── module.d │ │ └── param.d ├── vim-dart │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ └── dart.vim │ ├── doc │ │ └── dart.txt │ ├── ftdetect │ │ └── dart.vim │ ├── ftplugin │ │ └── dart.vim │ ├── indent │ │ └── dart.vim │ ├── plugin │ │ └── dart.vim │ └── syntax │ │ └── dart.vim ├── vim-docker │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── ftdetect │ │ ├── Dockerfile.vim │ │ └── docker-compose.vim │ ├── ftplugin │ │ ├── Dockerfile.vim │ │ └── docker-compose.vim │ ├── indent │ │ └── Dockerfile.vim │ ├── snippets │ │ ├── Dockerfile.snippets │ │ └── docker-compose.snippets │ └── syntax │ │ ├── Dockerfile.vim │ │ └── docker-compose.vim ├── vim-elixir │ ├── .travis.yml │ ├── Dockerfile │ ├── Dockerfile.nvim │ ├── Gemfile │ ├── Gemfile.lock │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── db │ │ │ └── adapter │ │ │ │ ├── ecto.vim │ │ │ │ └── get_repos.exs │ │ └── elixir │ │ │ ├── indent.vim │ │ │ └── util.vim │ ├── bin │ │ ├── nvim │ │ ├── profile │ │ ├── projects_to_test.txt │ │ ├── rspec │ │ ├── test_directory │ │ ├── test_for_regressions │ │ ├── test_indent │ │ └── vim │ ├── compiler │ │ ├── credo.vim │ │ ├── exunit.vim │ │ └── mix.vim │ ├── doc │ │ └── elixir.txt │ ├── docker-compose.yml │ ├── ftdetect │ │ └── elixir.vim │ ├── ftplugin │ │ ├── eelixir.vim │ │ └── elixir.vim │ ├── indent │ │ ├── eelixir.vim │ │ └── elixir.vim │ ├── large_file.ex │ ├── manual_install.sh │ ├── spec │ │ ├── folding │ │ │ └── basic_spec.rb │ │ ├── indent │ │ │ ├── anonymous_functions_spec.rb │ │ │ ├── basic_spec.rb │ │ │ ├── binary_operator_spec.rb │ │ │ ├── blocks_spec.rb │ │ │ ├── case_spec.rb │ │ │ ├── comment_spec.rb │ │ │ ├── cond_spec.rb │ │ │ ├── def_spec.rb │ │ │ ├── documentation_spec.rb │ │ │ ├── ecto_queries_spec.rb │ │ │ ├── ecto_spec.rb │ │ │ ├── embedded_elixir_spec.rb │ │ │ ├── embedded_views_spec.rb │ │ │ ├── exunit_spec.rb │ │ │ ├── if_spec.rb │ │ │ ├── keyword_spec.rb │ │ │ ├── lists_spec.rb │ │ │ ├── macro_spec.rb │ │ │ ├── map_spec.rb │ │ │ ├── pipeline_spec.rb │ │ │ ├── receive_spec.rb │ │ │ ├── string_spec.rb │ │ │ ├── struct_spec.rb │ │ │ ├── try_spec.rb │ │ │ ├── tuples_spec.rb │ │ │ └── with_spec.rb │ │ ├── spec_helper.rb │ │ └── syntax │ │ │ ├── alias_spec.rb │ │ │ ├── anonymous_function_spec.rb │ │ │ ├── atom_spec.rb │ │ │ ├── case_spec.rb │ │ │ ├── comments_spec.rb │ │ │ ├── defmodule_spec.rb │ │ │ ├── doc_spec.rb │ │ │ ├── embedded_elixir_spec.rb │ │ │ ├── exunit_spec.rb │ │ │ ├── function_spec.rb │ │ │ ├── guard_spec.rb │ │ │ ├── kernel_function_spec.rb │ │ │ ├── keyword_spec.rb │ │ │ ├── list_spec.rb │ │ │ ├── map_spec.rb │ │ │ ├── module_function_spec.rb │ │ │ ├── numbers_spec.rb │ │ │ ├── operator_spec.rb │ │ │ ├── records_spec.rb │ │ │ ├── sigil_spec.rb │ │ │ ├── strings_spec.rb │ │ │ ├── struct_spec.rb │ │ │ ├── tuple_spec.rb │ │ │ └── variable_spec.rb │ ├── syntax │ │ ├── eelixir.vim │ │ └── elixir.vim │ ├── test.init.vim │ └── test.vimrc ├── vim-elm │ ├── LICENSE │ ├── README.md │ ├── addon-info.json │ ├── autoload │ │ ├── elm.vim │ │ └── elm │ │ │ └── util.vim │ ├── doc │ │ └── elm-vim.txt │ ├── ftdetect │ │ └── elm.vim │ ├── ftplugin │ │ ├── elm.vim │ │ └── elm │ │ │ └── tagbar.vim │ ├── indent │ │ └── elm.vim │ ├── plugin │ │ └── elm.vim │ ├── rplugin │ │ └── python3 │ │ │ └── deoplete │ │ │ └── sources │ │ │ └── deoplete_elm.py │ ├── syntax │ │ └── elm.vim │ └── syntax_checkers │ │ └── elm │ │ └── elm_make.vim ├── vim-erlang-omnicomplete │ ├── LICENSE │ ├── README.md │ ├── autoload │ │ ├── erlang_complete.erl │ │ └── erlang_complete.vim │ ├── doc │ │ └── vim-erlang-omnicomplete.txt │ ├── ftplugin │ │ └── erlang.vim │ └── plugin │ │ └── erlang_omnicomplete.vim ├── vim-erlang │ ├── README.md │ ├── ftdetect │ │ └── erlang.vim │ ├── ftplugin │ │ └── erlang.vim │ ├── indent │ │ └── erlang.vim │ ├── syntax │ │ └── erlang.vim │ └── test │ │ ├── helper.vim │ │ ├── test_ftplugin_set_options.vader │ │ ├── test_include_search.vader │ │ ├── test_indent.erl │ │ ├── test_indent_manual.erl │ │ ├── test_indent_manual.vim │ │ ├── test_indent_tabs.erl │ │ └── test_syntax.erl ├── vim-fsharp │ ├── LICENSE.md │ ├── Makefile │ ├── README.mkd │ ├── autoload │ │ └── fsharpbinding │ │ │ └── python.vim │ ├── doc │ │ └── vim-fsharp.txt │ ├── ftdetect │ │ └── fsharp.vim │ ├── ftplugin │ │ ├── fsharp.vim │ │ ├── fsharpvim.py │ │ ├── fsi.py │ │ ├── hidewin.py │ │ └── pyvim.py │ ├── indent │ │ └── fsharp.vim │ ├── install.cmd │ ├── install.fsx │ ├── install.sh │ ├── paket.bootstrapper.exe │ ├── paket.dependencies │ ├── paket.lock │ ├── syntax │ │ └── fsharp.vim │ ├── syntax_checkers │ │ └── fsharp │ │ │ └── syntax.vim │ └── test.fsx ├── vim-git │ ├── doc │ │ └── ft-gitcommit-plugin.txt │ ├── ftdetect │ │ └── git.vim │ ├── ftplugin │ │ ├── gitcommit.vim │ │ ├── gitconfig.vim │ │ ├── gitrebase.vim │ │ └── gitsendemail.vim │ ├── indent │ │ └── gitconfig.vim │ └── syntax │ │ ├── git.vim │ │ ├── gitcommit.vim │ │ ├── gitconfig.vim │ │ ├── gitrebase.vim │ │ └── gitsendemail.vim ├── vim-gitignore │ ├── List.md │ ├── README.md │ ├── UltiSnips │ │ └── gitignore │ │ │ ├── Actionscript.snippets │ │ │ ├── Ada.snippets │ │ │ ├── Agda.snippets │ │ │ ├── Android.snippets │ │ │ ├── Anjuta.snippets │ │ │ ├── Ansible.snippets │ │ │ ├── AppEngine.snippets │ │ │ ├── AppceleratorTitanium.snippets │ │ │ ├── ArchLinuxPackages.snippets │ │ │ ├── Archives.snippets │ │ │ ├── Autotools.snippets │ │ │ ├── Bazaar.snippets │ │ │ ├── BricxCC.snippets │ │ │ ├── C++.snippets │ │ │ ├── C.snippets │ │ │ ├── CFWheels.snippets │ │ │ ├── CMake.snippets │ │ │ ├── CUDA.snippets │ │ │ ├── CVS.snippets │ │ │ ├── CakePHP.snippets │ │ │ ├── Calabash.snippets │ │ │ ├── ChefCookbook.snippets │ │ │ ├── Clojure.snippets │ │ │ ├── Cloud9.snippets │ │ │ ├── CodeIgniter.snippets │ │ │ ├── CodeKit.snippets │ │ │ ├── CommonLisp.snippets │ │ │ ├── Composer.snippets │ │ │ ├── Concrete5.snippets │ │ │ ├── Coq.snippets │ │ │ ├── CraftCMS.snippets │ │ │ ├── D.snippets │ │ │ ├── DM.snippets │ │ │ ├── Dart.snippets │ │ │ ├── DartEditor.snippets │ │ │ ├── Delphi.snippets │ │ │ ├── Dreamweaver.snippets │ │ │ ├── Dropbox.snippets │ │ │ ├── Drupal.snippets │ │ │ ├── EPiServer.snippets │ │ │ ├── Eagle.snippets │ │ │ ├── Eclipse.snippets │ │ │ ├── EiffelStudio.snippets │ │ │ ├── Elisp.snippets │ │ │ ├── Elixir.snippets │ │ │ ├── Elm.snippets │ │ │ ├── Emacs.snippets │ │ │ ├── Ensime.snippets │ │ │ ├── Erlang.snippets │ │ │ ├── Espresso.snippets │ │ │ ├── ExpressionEngine.snippets │ │ │ ├── ExtJs.snippets │ │ │ ├── Fancy.snippets │ │ │ ├── Finale.snippets │ │ │ ├── FlexBuilder.snippets │ │ │ ├── ForceDotCom.snippets │ │ │ ├── Fortran.snippets │ │ │ ├── FuelPHP.snippets │ │ │ ├── GPG.snippets │ │ │ ├── GWT.snippets │ │ │ ├── Gcov.snippets │ │ │ ├── GitBook.snippets │ │ │ ├── Go.snippets │ │ │ ├── Gradle.snippets │ │ │ ├── Grails.snippets │ │ │ ├── Haskell.snippets │ │ │ ├── IGORPro.snippets │ │ │ ├── Idris.snippets │ │ │ ├── JDeveloper.snippets │ │ │ ├── JEnv.snippets │ │ │ ├── Java.snippets │ │ │ ├── Jboss.snippets │ │ │ ├── Jekyll.snippets │ │ │ ├── JetBrains.snippets │ │ │ ├── Joomla.snippets │ │ │ ├── Julia.snippets │ │ │ ├── KDevelop4.snippets │ │ │ ├── Kate.snippets │ │ │ ├── KiCad.snippets │ │ │ ├── Kohana.snippets │ │ │ ├── LabVIEW.snippets │ │ │ ├── Laravel.snippets │ │ │ ├── Lazarus.snippets │ │ │ ├── Leiningen.snippets │ │ │ ├── LemonStand.snippets │ │ │ ├── LibreOffice.snippets │ │ │ ├── Lilypond.snippets │ │ │ ├── Linux.snippets │ │ │ ├── Lithium.snippets │ │ │ ├── Lua.snippets │ │ │ ├── LyX.snippets │ │ │ ├── Magento.snippets │ │ │ ├── Matlab.snippets │ │ │ ├── Maven.snippets │ │ │ ├── Mercurial.snippets │ │ │ ├── Mercury.snippets │ │ │ ├── MetaProgrammingSystem.snippets │ │ │ ├── MicrosoftOffice.snippets │ │ │ ├── ModelSim.snippets │ │ │ ├── Momentics.snippets │ │ │ ├── MonoDevelop.snippets │ │ │ ├── Nanoc.snippets │ │ │ ├── NetBeans.snippets │ │ │ ├── Nim.snippets │ │ │ ├── Ninja.snippets │ │ │ ├── Node.snippets │ │ │ ├── NotepadPP.snippets │ │ │ ├── OCaml.snippets │ │ │ ├── Objective-C.snippets │ │ │ ├── Opa.snippets │ │ │ ├── OpenCart.snippets │ │ │ ├── OracleForms.snippets │ │ │ ├── Otto.snippets │ │ │ ├── Packer.snippets │ │ │ ├── Perl.snippets │ │ │ ├── Phalcon.snippets │ │ │ ├── PlayFramework.snippets │ │ │ ├── Plone.snippets │ │ │ ├── Prestashop.snippets │ │ │ ├── Processing.snippets │ │ │ ├── PureScript.snippets │ │ │ ├── Python.snippets │ │ │ ├── Qooxdoo.snippets │ │ │ ├── Qt.snippets │ │ │ ├── R.snippets │ │ │ ├── ROS.snippets │ │ │ ├── Rails.snippets │ │ │ ├── Redcar.snippets │ │ │ ├── Redis.snippets │ │ │ ├── RhodesRhomobile.snippets │ │ │ ├── Ruby.snippets │ │ │ ├── Rust.snippets │ │ │ ├── SBT.snippets │ │ │ ├── SCons.snippets │ │ │ ├── SVN.snippets │ │ │ ├── Sass.snippets │ │ │ ├── Scala.snippets │ │ │ ├── Scheme.snippets │ │ │ ├── Scrivener.snippets │ │ │ ├── Sdcc.snippets │ │ │ ├── SeamGen.snippets │ │ │ ├── SketchUp.snippets │ │ │ ├── SlickEdit.snippets │ │ │ ├── Smalltalk.snippets │ │ │ ├── Stata.snippets │ │ │ ├── Stella.snippets │ │ │ ├── SublimeText.snippets │ │ │ ├── SugarCRM.snippets │ │ │ ├── Swift.snippets │ │ │ ├── Symfony.snippets │ │ │ ├── SymphonyCMS.snippets │ │ │ ├── SynopsysVCS.snippets │ │ │ ├── Tags.snippets │ │ │ ├── TeX.snippets │ │ │ ├── Terraform.snippets │ │ │ ├── TextMate.snippets │ │ │ ├── Textpattern.snippets │ │ │ ├── TortoiseGit.snippets │ │ │ ├── TurboGears2.snippets │ │ │ ├── Typo3.snippets │ │ │ ├── Umbraco.snippets │ │ │ ├── Unity.snippets │ │ │ ├── UnrealEngine.snippets │ │ │ ├── VVVV.snippets │ │ │ ├── Vagrant.snippets │ │ │ ├── Vim.snippets │ │ │ ├── VirtualEnv.snippets │ │ │ ├── VisualStudio.snippets │ │ │ ├── VisualStudioCode.snippets │ │ │ ├── Waf.snippets │ │ │ ├── WebMethods.snippets │ │ │ ├── Windows.snippets │ │ │ ├── WordPress.snippets │ │ │ ├── Xcode.snippets │ │ │ ├── XilinxISE.snippets │ │ │ ├── Xojo.snippets │ │ │ ├── Yeoman.snippets │ │ │ ├── Yii.snippets │ │ │ ├── ZendFramework.snippets │ │ │ ├── Zephir.snippets │ │ │ └── macOS.snippets │ ├── ftdetect │ │ └── gitignore.vim │ ├── ftplugin │ │ └── gitignore.vim │ ├── indent │ │ └── gitignore.vim │ ├── neosnippets │ │ └── gitignore │ │ │ ├── Actionscript.snip │ │ │ ├── Ada.snip │ │ │ ├── Agda.snip │ │ │ ├── Android.snip │ │ │ ├── Anjuta.snip │ │ │ ├── Ansible.snip │ │ │ ├── AppEngine.snip │ │ │ ├── AppceleratorTitanium.snip │ │ │ ├── ArchLinuxPackages.snip │ │ │ ├── Archives.snip │ │ │ ├── Autotools.snip │ │ │ ├── Bazaar.snip │ │ │ ├── BricxCC.snip │ │ │ ├── C++.snip │ │ │ ├── C.snip │ │ │ ├── CFWheels.snip │ │ │ ├── CMake.snip │ │ │ ├── CUDA.snip │ │ │ ├── CVS.snip │ │ │ ├── CakePHP.snip │ │ │ ├── Calabash.snip │ │ │ ├── ChefCookbook.snip │ │ │ ├── Clojure.snip │ │ │ ├── Cloud9.snip │ │ │ ├── CodeIgniter.snip │ │ │ ├── CodeKit.snip │ │ │ ├── CommonLisp.snip │ │ │ ├── Composer.snip │ │ │ ├── Concrete5.snip │ │ │ ├── Coq.snip │ │ │ ├── CraftCMS.snip │ │ │ ├── D.snip │ │ │ ├── DM.snip │ │ │ ├── Dart.snip │ │ │ ├── DartEditor.snip │ │ │ ├── Delphi.snip │ │ │ ├── Dreamweaver.snip │ │ │ ├── Dropbox.snip │ │ │ ├── Drupal.snip │ │ │ ├── EPiServer.snip │ │ │ ├── Eagle.snip │ │ │ ├── Eclipse.snip │ │ │ ├── EiffelStudio.snip │ │ │ ├── Elisp.snip │ │ │ ├── Elixir.snip │ │ │ ├── Elm.snip │ │ │ ├── Emacs.snip │ │ │ ├── Ensime.snip │ │ │ ├── Erlang.snip │ │ │ ├── Espresso.snip │ │ │ ├── ExpressionEngine.snip │ │ │ ├── ExtJs.snip │ │ │ ├── Fancy.snip │ │ │ ├── Finale.snip │ │ │ ├── FlexBuilder.snip │ │ │ ├── ForceDotCom.snip │ │ │ ├── Fortran.snip │ │ │ ├── FuelPHP.snip │ │ │ ├── GPG.snip │ │ │ ├── GWT.snip │ │ │ ├── Gcov.snip │ │ │ ├── GitBook.snip │ │ │ ├── Go.snip │ │ │ ├── Gradle.snip │ │ │ ├── Grails.snip │ │ │ ├── Haskell.snip │ │ │ ├── IGORPro.snip │ │ │ ├── Idris.snip │ │ │ ├── JDeveloper.snip │ │ │ ├── JEnv.snip │ │ │ ├── Java.snip │ │ │ ├── Jboss.snip │ │ │ ├── Jekyll.snip │ │ │ ├── JetBrains.snip │ │ │ ├── Joomla.snip │ │ │ ├── Julia.snip │ │ │ ├── KDevelop4.snip │ │ │ ├── Kate.snip │ │ │ ├── KiCad.snip │ │ │ ├── Kohana.snip │ │ │ ├── LabVIEW.snip │ │ │ ├── Laravel.snip │ │ │ ├── Lazarus.snip │ │ │ ├── Leiningen.snip │ │ │ ├── LemonStand.snip │ │ │ ├── LibreOffice.snip │ │ │ ├── Lilypond.snip │ │ │ ├── Linux.snip │ │ │ ├── Lithium.snip │ │ │ ├── Lua.snip │ │ │ ├── LyX.snip │ │ │ ├── Magento.snip │ │ │ ├── Matlab.snip │ │ │ ├── Maven.snip │ │ │ ├── Mercurial.snip │ │ │ ├── Mercury.snip │ │ │ ├── MetaProgrammingSystem.snip │ │ │ ├── MicrosoftOffice.snip │ │ │ ├── ModelSim.snip │ │ │ ├── Momentics.snip │ │ │ ├── MonoDevelop.snip │ │ │ ├── Nanoc.snip │ │ │ ├── NetBeans.snip │ │ │ ├── Nim.snip │ │ │ ├── Ninja.snip │ │ │ ├── Node.snip │ │ │ ├── NotepadPP.snip │ │ │ ├── OCaml.snip │ │ │ ├── Objective-C.snip │ │ │ ├── Opa.snip │ │ │ ├── OpenCart.snip │ │ │ ├── OracleForms.snip │ │ │ ├── Otto.snip │ │ │ ├── Packer.snip │ │ │ ├── Perl.snip │ │ │ ├── Phalcon.snip │ │ │ ├── PlayFramework.snip │ │ │ ├── Plone.snip │ │ │ ├── Prestashop.snip │ │ │ ├── Processing.snip │ │ │ ├── PureScript.snip │ │ │ ├── Python.snip │ │ │ ├── Qooxdoo.snip │ │ │ ├── Qt.snip │ │ │ ├── R.snip │ │ │ ├── ROS.snip │ │ │ ├── Rails.snip │ │ │ ├── Redcar.snip │ │ │ ├── Redis.snip │ │ │ ├── RhodesRhomobile.snip │ │ │ ├── Ruby.snip │ │ │ ├── Rust.snip │ │ │ ├── SBT.snip │ │ │ ├── SCons.snip │ │ │ ├── SVN.snip │ │ │ ├── Sass.snip │ │ │ ├── Scala.snip │ │ │ ├── Scheme.snip │ │ │ ├── Scrivener.snip │ │ │ ├── Sdcc.snip │ │ │ ├── SeamGen.snip │ │ │ ├── SketchUp.snip │ │ │ ├── SlickEdit.snip │ │ │ ├── Smalltalk.snip │ │ │ ├── Stata.snip │ │ │ ├── Stella.snip │ │ │ ├── SublimeText.snip │ │ │ ├── SugarCRM.snip │ │ │ ├── Swift.snip │ │ │ ├── Symfony.snip │ │ │ ├── SymphonyCMS.snip │ │ │ ├── SynopsysVCS.snip │ │ │ ├── Tags.snip │ │ │ ├── TeX.snip │ │ │ ├── Terraform.snip │ │ │ ├── TextMate.snip │ │ │ ├── Textpattern.snip │ │ │ ├── TortoiseGit.snip │ │ │ ├── TurboGears2.snip │ │ │ ├── Typo3.snip │ │ │ ├── Umbraco.snip │ │ │ ├── Unity.snip │ │ │ ├── UnrealEngine.snip │ │ │ ├── VVVV.snip │ │ │ ├── Vagrant.snip │ │ │ ├── Vim.snip │ │ │ ├── VirtualEnv.snip │ │ │ ├── VisualStudio.snip │ │ │ ├── VisualStudioCode.snip │ │ │ ├── Waf.snip │ │ │ ├── WebMethods.snip │ │ │ ├── Windows.snip │ │ │ ├── WordPress.snip │ │ │ ├── Xcode.snip │ │ │ ├── XilinxISE.snip │ │ │ ├── Xojo.snip │ │ │ ├── Yeoman.snip │ │ │ ├── Yii.snip │ │ │ ├── ZendFramework.snip │ │ │ ├── Zephir.snip │ │ │ └── macOS.snip │ ├── pythonx │ │ └── vimsnippets.py │ ├── rebuild-snippets │ ├── snippets │ │ └── gitignore │ │ │ ├── Actionscript.snippets │ │ │ ├── Ada.snippets │ │ │ ├── Agda.snippets │ │ │ ├── Android.snippets │ │ │ ├── Anjuta.snippets │ │ │ ├── Ansible.snippets │ │ │ ├── AppEngine.snippets │ │ │ ├── AppceleratorTitanium.snippets │ │ │ ├── ArchLinuxPackages.snippets │ │ │ ├── Archives.snippets │ │ │ ├── Autotools.snippets │ │ │ ├── Bazaar.snippets │ │ │ ├── BricxCC.snippets │ │ │ ├── C++.snippets │ │ │ ├── C.snippets │ │ │ ├── CFWheels.snippets │ │ │ ├── CMake.snippets │ │ │ ├── CUDA.snippets │ │ │ ├── CVS.snippets │ │ │ ├── CakePHP.snippets │ │ │ ├── Calabash.snippets │ │ │ ├── ChefCookbook.snippets │ │ │ ├── Clojure.snippets │ │ │ ├── Cloud9.snippets │ │ │ ├── CodeIgniter.snippets │ │ │ ├── CodeKit.snippets │ │ │ ├── CommonLisp.snippets │ │ │ ├── Composer.snippets │ │ │ ├── Concrete5.snippets │ │ │ ├── Coq.snippets │ │ │ ├── CraftCMS.snippets │ │ │ ├── D.snippets │ │ │ ├── DM.snippets │ │ │ ├── Dart.snippets │ │ │ ├── DartEditor.snippets │ │ │ ├── Delphi.snippets │ │ │ ├── Dreamweaver.snippets │ │ │ ├── Dropbox.snippets │ │ │ ├── Drupal.snippets │ │ │ ├── EPiServer.snippets │ │ │ ├── Eagle.snippets │ │ │ ├── Eclipse.snippets │ │ │ ├── EiffelStudio.snippets │ │ │ ├── Elisp.snippets │ │ │ ├── Elixir.snippets │ │ │ ├── Elm.snippets │ │ │ ├── Emacs.snippets │ │ │ ├── Ensime.snippets │ │ │ ├── Erlang.snippets │ │ │ ├── Espresso.snippets │ │ │ ├── ExpressionEngine.snippets │ │ │ ├── ExtJs.snippets │ │ │ ├── Fancy.snippets │ │ │ ├── Finale.snippets │ │ │ ├── FlexBuilder.snippets │ │ │ ├── ForceDotCom.snippets │ │ │ ├── Fortran.snippets │ │ │ ├── FuelPHP.snippets │ │ │ ├── GPG.snippets │ │ │ ├── GWT.snippets │ │ │ ├── Gcov.snippets │ │ │ ├── GitBook.snippets │ │ │ ├── Go.snippets │ │ │ ├── Gradle.snippets │ │ │ ├── Grails.snippets │ │ │ ├── Haskell.snippets │ │ │ ├── IGORPro.snippets │ │ │ ├── Idris.snippets │ │ │ ├── JDeveloper.snippets │ │ │ ├── JEnv.snippets │ │ │ ├── Java.snippets │ │ │ ├── Jboss.snippets │ │ │ ├── Jekyll.snippets │ │ │ ├── JetBrains.snippets │ │ │ ├── Joomla.snippets │ │ │ ├── Julia.snippets │ │ │ ├── KDevelop4.snippets │ │ │ ├── Kate.snippets │ │ │ ├── KiCad.snippets │ │ │ ├── Kohana.snippets │ │ │ ├── LabVIEW.snippets │ │ │ ├── Laravel.snippets │ │ │ ├── Lazarus.snippets │ │ │ ├── Leiningen.snippets │ │ │ ├── LemonStand.snippets │ │ │ ├── LibreOffice.snippets │ │ │ ├── Lilypond.snippets │ │ │ ├── Linux.snippets │ │ │ ├── Lithium.snippets │ │ │ ├── Lua.snippets │ │ │ ├── LyX.snippets │ │ │ ├── Magento.snippets │ │ │ ├── Matlab.snippets │ │ │ ├── Maven.snippets │ │ │ ├── Mercurial.snippets │ │ │ ├── Mercury.snippets │ │ │ ├── MetaProgrammingSystem.snippets │ │ │ ├── MicrosoftOffice.snippets │ │ │ ├── ModelSim.snippets │ │ │ ├── Momentics.snippets │ │ │ ├── MonoDevelop.snippets │ │ │ ├── Nanoc.snippets │ │ │ ├── NetBeans.snippets │ │ │ ├── Nim.snippets │ │ │ ├── Ninja.snippets │ │ │ ├── Node.snippets │ │ │ ├── NotepadPP.snippets │ │ │ ├── OCaml.snippets │ │ │ ├── Objective-C.snippets │ │ │ ├── Opa.snippets │ │ │ ├── OpenCart.snippets │ │ │ ├── OracleForms.snippets │ │ │ ├── Otto.snippets │ │ │ ├── Packer.snippets │ │ │ ├── Perl.snippets │ │ │ ├── Phalcon.snippets │ │ │ ├── PlayFramework.snippets │ │ │ ├── Plone.snippets │ │ │ ├── Prestashop.snippets │ │ │ ├── Processing.snippets │ │ │ ├── PureScript.snippets │ │ │ ├── Python.snippets │ │ │ ├── Qooxdoo.snippets │ │ │ ├── Qt.snippets │ │ │ ├── R.snippets │ │ │ ├── ROS.snippets │ │ │ ├── Rails.snippets │ │ │ ├── Redcar.snippets │ │ │ ├── Redis.snippets │ │ │ ├── RhodesRhomobile.snippets │ │ │ ├── Ruby.snippets │ │ │ ├── Rust.snippets │ │ │ ├── SBT.snippets │ │ │ ├── SCons.snippets │ │ │ ├── SVN.snippets │ │ │ ├── Sass.snippets │ │ │ ├── Scala.snippets │ │ │ ├── Scheme.snippets │ │ │ ├── Scrivener.snippets │ │ │ ├── Sdcc.snippets │ │ │ ├── SeamGen.snippets │ │ │ ├── SketchUp.snippets │ │ │ ├── SlickEdit.snippets │ │ │ ├── Smalltalk.snippets │ │ │ ├── Stata.snippets │ │ │ ├── Stella.snippets │ │ │ ├── SublimeText.snippets │ │ │ ├── SugarCRM.snippets │ │ │ ├── Swift.snippets │ │ │ ├── Symfony.snippets │ │ │ ├── SymphonyCMS.snippets │ │ │ ├── SynopsysVCS.snippets │ │ │ ├── Tags.snippets │ │ │ ├── TeX.snippets │ │ │ ├── Terraform.snippets │ │ │ ├── TextMate.snippets │ │ │ ├── Textpattern.snippets │ │ │ ├── TortoiseGit.snippets │ │ │ ├── TurboGears2.snippets │ │ │ ├── Typo3.snippets │ │ │ ├── Umbraco.snippets │ │ │ ├── Unity.snippets │ │ │ ├── UnrealEngine.snippets │ │ │ ├── VVVV.snippets │ │ │ ├── Vagrant.snippets │ │ │ ├── Vim.snippets │ │ │ ├── VirtualEnv.snippets │ │ │ ├── VisualStudio.snippets │ │ │ ├── VisualStudioCode.snippets │ │ │ ├── Waf.snippets │ │ │ ├── WebMethods.snippets │ │ │ ├── Windows.snippets │ │ │ ├── WordPress.snippets │ │ │ ├── Xcode.snippets │ │ │ ├── XilinxISE.snippets │ │ │ ├── Xojo.snippets │ │ │ ├── Yeoman.snippets │ │ │ ├── Yii.snippets │ │ │ ├── ZendFramework.snippets │ │ │ ├── Zephir.snippets │ │ │ └── macOS.snippets │ └── syntax │ │ └── gitignore.vim ├── vim-go │ ├── .codecov.yml │ ├── .coveragerc │ ├── .dockerignore │ ├── .editorconfig │ ├── .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 │ │ │ ├── fillstruct.vim │ │ │ ├── fillstruct_test.vim │ │ │ ├── fmt.vim │ │ │ ├── fmt_test.vim │ │ │ ├── guru.vim │ │ │ ├── guru_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 │ │ │ ├── keyify.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 │ │ │ │ │ │ └── newline.go │ │ │ │ │ └── imports │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ └── imports_golden.go │ │ │ │ ├── package │ │ │ │ │ └── src │ │ │ │ │ │ └── package │ │ │ │ │ │ ├── bar │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── baz │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── package.go │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── foo │ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── term │ │ │ │ │ └── term.go │ │ │ │ └── test │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── src │ │ │ │ │ ├── compilerror │ │ │ │ │ ├── compilerror.go │ │ │ │ │ └── go.mod │ │ │ │ │ ├── example │ │ │ │ │ ├── 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 │ │ ├── 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 ├── vim-gradle │ ├── README.md │ ├── compiler │ │ ├── gradle.vim │ │ └── gradlew.vim │ └── ftdetect │ │ └── gradle.vim ├── vim-graphql │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── after │ │ ├── indent │ │ │ ├── javascript.vim │ │ │ ├── php.vim │ │ │ └── typescript.vim │ │ └── syntax │ │ │ ├── javascript │ │ │ └── graphql.vim │ │ │ ├── javascriptreact │ │ │ └── graphql.vim │ │ │ ├── php │ │ │ └── graphql.vim │ │ │ ├── reason │ │ │ └── graphql.vim │ │ │ ├── typescript │ │ │ └── graphql.vim │ │ │ ├── typescriptreact │ │ │ └── graphql.vim │ │ │ └── vue │ │ │ └── graphql.vim │ ├── autoload │ │ └── graphql.vim │ ├── doc │ │ └── graphql.txt │ ├── ftdetect │ │ └── graphql.vim │ ├── ftplugin │ │ └── graphql.vim │ ├── indent │ │ └── graphql.vim │ ├── samples │ │ ├── LICENSE │ │ ├── README.md │ │ ├── introspection.graphql │ │ ├── kitchen-sink.graphql │ │ └── schema-kitchen-sink.graphql │ ├── syntax │ │ └── graphql.vim │ └── test │ │ ├── indent.vader │ │ ├── javascript │ │ ├── default.vader │ │ ├── react.vader │ │ ├── vim-javascript.vader │ │ └── vue.vader │ │ ├── php │ │ └── default.vader │ │ ├── reason │ │ └── default.vader │ │ ├── syntax.vader │ │ ├── typescript │ │ ├── default.vader │ │ └── react.vader │ │ └── vimrc ├── vim-haml │ ├── README.markdown │ ├── compiler │ │ ├── haml.vim │ │ └── sass.vim │ ├── ftdetect │ │ └── haml.vim │ ├── ftplugin │ │ ├── haml.vim │ │ ├── sass.vim │ │ └── scss.vim │ ├── indent │ │ ├── haml.vim │ │ ├── sass.vim │ │ └── scss.vim │ └── syntax │ │ ├── haml.vim │ │ ├── sass.vim │ │ └── scss.vim ├── vim-haskell │ ├── LICENSE │ ├── README.md │ ├── after │ │ └── ftplugin │ │ │ ├── cabal.vim │ │ │ └── haskell.vim │ ├── doc │ │ └── haskell-vim.txt │ ├── ftdetect │ │ └── haskell.vim │ ├── indent │ │ ├── cabal.vim │ │ └── haskell.vim │ ├── syntax │ │ ├── cabal.vim │ │ └── haskell.vim │ └── tests │ │ └── indent │ │ ├── run.sh │ │ ├── test001 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test002 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test003 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test004 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test005 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test006 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test007 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test008 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test009 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test010 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test011 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test012 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test013 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test014 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test015 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test016 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test017 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ ├── test018 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim │ │ └── test019 │ │ ├── expected.hs │ │ ├── test.hs │ │ └── test.vim ├── vim-haxe │ ├── README.md │ ├── autoload │ │ ├── vaxe.vim │ │ └── vaxe │ │ │ ├── flow.vim │ │ │ ├── hss.vim │ │ │ ├── lime.vim │ │ │ └── util.vim │ ├── compiler │ │ └── haxe.vim │ ├── doc │ │ └── vaxe.txt │ ├── ftdetect │ │ ├── flow.vim │ │ ├── haxe.vim │ │ ├── hss.vim │ │ ├── hxml.vim │ │ ├── lime.vim │ │ └── nmml.vim │ ├── ftplugin │ │ ├── haxe.vim │ │ ├── hss.vim │ │ └── hxml.vim │ ├── indent │ │ └── haxe.vim │ ├── plugin │ │ ├── haxe.vim │ │ └── hxml.vim │ ├── python │ │ └── vaxe.py │ ├── snippets │ │ ├── haxe.snippets │ │ ├── hxml.snippets │ │ └── nmml.snippets │ ├── syntax │ │ ├── README.md │ │ ├── haxe.vim │ │ ├── haxe_extended.vim │ │ ├── hss.vim │ │ └── hxml.vim │ ├── tools │ │ ├── add_remote.sh │ │ ├── create_ultisnips.sh │ │ ├── pull_syntax.sh │ │ └── push_syntax.xh │ └── ultisnips │ │ ├── haxe.snippets │ │ ├── hxml.snippets │ │ └── nmml.snippets ├── vim-html5 │ ├── 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 ├── vim-io │ ├── README.md │ ├── ftdetect │ │ └── io.vim │ ├── indent │ │ └── io.vim │ └── syntax │ │ └── io.vim ├── vim-javascript │ ├── ISSUE_TEMPLATE.md │ ├── README.md │ ├── after │ │ └── ftplugin │ │ │ └── javascript.vim │ ├── compiler │ │ └── eslint.vim │ ├── extras │ │ ├── ctags │ │ ├── flow.vim │ │ ├── jsdoc.vim │ │ └── ngdoc.vim │ ├── ftdetect │ │ ├── flow.vim │ │ └── javascript.vim │ ├── indent │ │ └── javascript.vim │ └── syntax │ │ ├── flow.vim │ │ └── javascript.vim ├── vim-jinja │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── jinja.vim │ ├── indent │ │ └── jinja.vim │ └── syntax │ │ └── jinja.vim ├── vim-js-coffeescript │ ├── Copying.md │ ├── Makefile │ ├── News.md │ ├── Readme.md │ ├── Thanks.md │ ├── Todo.md │ ├── after │ │ ├── indent │ │ │ └── html.vim │ │ └── syntax │ │ │ ├── haml.vim │ │ │ └── html.vim │ ├── autoload │ │ └── coffee.vim │ ├── compiler │ │ ├── cake.vim │ │ └── coffee.vim │ ├── doc │ │ └── coffee-script.txt │ ├── ftdetect │ │ ├── coffee.vim │ │ └── vim-literate-coffeescript.vim │ ├── ftplugin │ │ ├── coffee.vim │ │ └── litcoffee.vim │ ├── indent │ │ ├── coffee.vim │ │ └── litcoffee.vim │ ├── syntax │ │ ├── coffee.vim │ │ └── litcoffee.vim │ └── test │ │ ├── test-interp.coffee │ │ ├── test-ops.coffee │ │ ├── test-reserved.coffee │ │ ├── test.coffee.md │ │ ├── test.haml │ │ ├── test.html │ │ └── test.litcoffee ├── vim-js-indent │ ├── README.md │ ├── indent │ │ ├── html.vim │ │ ├── html2.vim │ │ ├── javascript.vim │ │ └── typescript.vim │ ├── test.js │ └── test_script.html ├── vim-js-livescript │ ├── compiler │ │ └── ls.vim │ ├── copying.md │ ├── ftdetect │ │ └── ls.vim │ ├── ftplugin │ │ └── ls.vim │ ├── indent │ │ └── ls.vim │ ├── readme.md │ ├── syntax │ │ └── ls.vim │ ├── thanks.md │ └── todo.md ├── vim-js-pretty-template │ ├── LICENSE.txt │ ├── README.md │ ├── autoload │ │ └── jspretmpl.vim │ └── plugin │ │ └── jspretmpl.vim ├── vim-js-rescript │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── autoload │ │ ├── rescript.vim │ │ └── rescript │ │ │ ├── highlight.vim │ │ │ └── parsing.vim │ ├── doc │ │ └── rescript.txt │ ├── ftdetect │ │ └── rescript.vim │ ├── ftplugin │ │ └── rescript.vim │ ├── indent │ │ └── rescript.vim │ ├── plugin │ │ └── rescript.vim │ ├── syntax │ │ └── rescript.vim │ └── test │ │ ├── fixtures │ │ ├── compiler │ │ │ ├── compiler-log.exp │ │ │ └── compiler-log.txt │ │ ├── let-binding.exp │ │ ├── let-binding.res │ │ ├── should-format.res │ │ ├── spread.exp │ │ ├── spread.res │ │ ├── weird-numbers.exp │ │ └── weird-numbers.res │ │ └── test_all.vim ├── vim-js-svelte │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── svelte.vim │ ├── ftplugin │ │ └── svelte.vim │ ├── indent │ │ └── svelte.vim │ └── syntax │ │ └── svelte.vim ├── vim-js-tsuquyomi │ ├── .travis.yml │ ├── README.md │ ├── autoload │ │ ├── tsuquyomi.vim │ │ ├── tsuquyomi │ │ │ ├── bufManager.vim │ │ │ ├── config.vim │ │ │ ├── es6import.vim │ │ │ ├── perfLogger.vim │ │ │ └── tsClient.vim │ │ ├── unite │ │ │ └── sources │ │ │ │ ├── outline │ │ │ │ └── typescript.vim │ │ │ │ └── tsproject.vim │ │ ├── vital.vim │ │ └── vital │ │ │ ├── _tsuquyomi.vim │ │ │ ├── _tsuquyomi │ │ │ ├── Data │ │ │ │ ├── List.vim │ │ │ │ └── String.vim │ │ │ ├── Prelude.vim │ │ │ ├── Process.vim │ │ │ ├── ProcessManager.vim │ │ │ ├── System │ │ │ │ └── Filepath.vim │ │ │ └── Web │ │ │ │ └── JSON.vim │ │ │ ├── tsuquyomi.vim │ │ │ └── tsuquyomi.vital │ ├── doc │ │ ├── tsuquyomi.jax │ │ └── tsuquyomi.txt │ ├── ftdetect │ │ └── typescript.vim │ ├── ftplugin │ │ ├── javascript │ │ │ └── tsuquyomi.vim │ │ ├── typescript │ │ │ └── tsuquyomi.vim │ │ └── typescriptreact │ │ │ └── tsuquyomi.vim │ ├── package.json │ ├── plugin │ │ └── tsuquyomi.vim │ ├── run-one-test.sh │ ├── runtest-all-ts.sh │ ├── runtest.sh │ ├── syntax_checkers │ │ ├── typescript │ │ │ └── tsuquyomi.vim │ │ └── typescriptreact │ │ │ └── tsuquyomi.vim │ ├── test │ │ ├── .vimrc │ │ ├── _runner │ │ ├── es6import │ │ │ └── vest │ │ │ │ ├── checkExternalModule.spec.vim │ │ │ │ ├── getImportDeclarations.spec.vim │ │ │ │ └── resources │ │ │ │ ├── importDecPatterns │ │ │ │ ├── decAndFunction.ts │ │ │ │ ├── decAndOther.ts │ │ │ │ ├── empty.ts │ │ │ │ ├── explictAlias.ts │ │ │ │ ├── multiAlias.ts │ │ │ │ ├── multiDec.ts │ │ │ │ ├── multiline.ts │ │ │ │ ├── noDec.ts │ │ │ │ ├── simple.ts │ │ │ │ ├── some-module.ts │ │ │ │ └── tsconfig.json │ │ │ │ └── variousModules.d.ts │ │ ├── package.json │ │ ├── tsClient │ │ │ └── vest │ │ │ │ ├── resources │ │ │ │ ├── SimpleModule.ts │ │ │ │ ├── SimpleModule_writing.ts │ │ │ │ ├── codeFixTest.ts │ │ │ │ ├── definitionTest.ts │ │ │ │ ├── referencesTestA.ts │ │ │ │ ├── referencesTestB.ts │ │ │ │ ├── renameTest.ts │ │ │ │ ├── samplePrjs │ │ │ │ │ ├── errorPrj │ │ │ │ │ │ ├── main.ts │ │ │ │ │ │ ├── sub.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── prj001 │ │ │ │ │ │ ├── main.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── signatureHelpTest_overload.ts │ │ │ │ └── signatureHelpTest_writing.ts │ │ │ │ ├── sendCommand.spec.vim │ │ │ │ ├── sendRequest.spec.vim │ │ │ │ ├── startTss.spec.vim │ │ │ │ ├── tsCompletionEntryDetails.spec.vim │ │ │ │ ├── tsCompletions.spec.vim │ │ │ │ ├── tsDefinition.spec.vim │ │ │ │ ├── tsGetCodeFixes.vim │ │ │ │ ├── tsGetSupportedCodeFixes.vim │ │ │ │ ├── tsGeterr.spec.vim │ │ │ │ ├── tsGeterrForProject.spec.vim │ │ │ │ ├── tsNavBar.spec.vim │ │ │ │ ├── tsNavto.spec.vim │ │ │ │ ├── tsProjectInfo.spec.vim │ │ │ │ ├── tsQuickinfo.spec.vim │ │ │ │ ├── tsReferences.spec.vim │ │ │ │ ├── tsReload.spec.vim │ │ │ │ ├── tsRename.spec.vim │ │ │ │ └── tsSignatureHelp.spec.vim │ │ └── yarn.lock │ └── yarn.lock ├── vim-js-typescript │ ├── README.md │ ├── compiler │ │ ├── typescript.vim │ │ └── typescriptreact.vim │ ├── ftdetect │ │ └── typescript.vim │ ├── ftplugin │ │ ├── typescript.vim │ │ └── typescriptreact.vim │ ├── indent │ │ ├── typescript.vim │ │ └── typescriptreact.vim │ └── syntax │ │ ├── typescript.vim │ │ └── typescriptreact.vim ├── vim-js-vue │ ├── .travis.yml │ ├── README.md │ ├── UNLICENSE │ ├── _config.yml │ ├── autoload │ │ └── vue.vim │ ├── ftdetect │ │ └── vue.vim │ ├── ftplugin │ │ ├── vue.vim │ │ └── vue │ │ │ └── fold.vim │ ├── indent │ │ └── vue.vim │ ├── lib │ │ └── indent │ │ │ ├── css.vim │ │ │ ├── typescript.vim │ │ │ └── xml.vim │ └── syntax │ │ ├── patch │ │ ├── coffee.vim │ │ ├── css.vim │ │ ├── html.vim │ │ ├── javascript.vim │ │ ├── less.vim │ │ ├── mustache.vim │ │ ├── pug.vim │ │ ├── sass.vim │ │ ├── scss.vim │ │ └── stylus.vim │ │ └── vue.vim ├── vim-json │ ├── ftdetect │ │ └── json.vim │ ├── ftplugin │ │ └── json.vim │ ├── indent │ │ └── json.vim │ ├── json-test.json │ ├── jsonl-test.jsonl │ ├── jsonp-test.jsonp │ ├── license.md │ ├── readme.md │ └── syntax │ │ └── json.vim ├── vim-jst │ ├── LICENSE │ ├── README │ ├── ftdetect │ │ └── jst.vim │ ├── indent │ │ └── jst.vim │ └── syntax │ │ └── jst.vim ├── vim-jsx-typescript │ ├── LICENSE │ ├── README.md │ ├── after │ │ ├── ftplugin │ │ │ └── typescriptreact.vim │ │ ├── indent │ │ │ └── typescriptreact.vim │ │ └── syntax │ │ │ └── typescriptreact.vim │ └── ftdetect │ │ └── typescript.vim ├── vim-jsx │ ├── CHANGES.markdown │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── after │ │ ├── ftplugin │ │ │ ├── javascript.vim │ │ │ └── javascriptreact.vim │ │ ├── indent │ │ │ ├── javascript.vim │ │ │ └── javascriptreact.vim │ │ └── syntax │ │ │ ├── javascript.vim │ │ │ └── javascriptreact.vim │ ├── case.js │ ├── config.mk │ ├── extras │ │ ├── ctags │ │ ├── flow.vim │ │ ├── jsdoc.vim │ │ └── ngdoc.vim │ ├── indent │ │ └── javascript.vim │ └── syntax │ │ ├── javascript.vim │ │ └── javascriptreact.vim ├── vim-julia │ ├── INSTALL.md │ ├── LICENSE.md │ ├── README.md │ ├── autoload │ │ ├── LaTeXtoUnicode.vim │ │ ├── generate_latex_symbols_table.jl │ │ ├── julia.vim │ │ ├── julia │ │ │ └── doc.vim │ │ ├── julia_blocks.vim │ │ └── julia_latex_symbols.vim │ ├── doc │ │ ├── generate_latex_symbols_table.jl │ │ ├── julia-vim-L2U-table.txt │ │ ├── julia-vim-L2U.txt │ │ └── julia-vim.txt │ ├── ftdetect │ │ └── julia.vim │ ├── ftplugin │ │ ├── julia.vim │ │ └── juliadoc.vim │ ├── indent │ │ └── julia.vim │ ├── keymap │ │ ├── generate_L2U_keymap.jl │ │ └── latex2unicode_utf-8.vim │ └── syntax │ │ ├── julia.vim │ │ └── juliadoc.vim ├── vim-kotlin │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── kotlin.vim │ ├── ftplugin │ │ └── kotlin.vim │ ├── indent │ │ └── kotlin.vim │ ├── syntax │ │ ├── generate-stdlib-class-names.main.kts │ │ └── kotlin.vim │ └── syntax_checkers │ │ └── kotlin │ │ └── kotlinc.vim ├── vim-kubernetes │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UltiSnips │ │ └── yaml.snippets │ ├── ftdetect │ │ └── kubeconf.vim │ └── ftplugin │ │ └── yaml │ │ └── kube.vim ├── vim-less │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── html.vim │ ├── ftdetect │ │ └── less.vim │ ├── ftplugin │ │ └── less.vim │ ├── indent │ │ └── less.vim │ └── syntax │ │ └── less.vim ├── vim-lfe │ ├── README.rst │ ├── ftdetect │ │ └── lfe.vim │ ├── indent │ │ └── lfe.vim │ └── syntax │ │ └── lfe.vim ├── vim-lisp │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── after │ ├── autoload │ ├── doc │ ├── ftplugin │ ├── lisp │ │ ├── load-vlime.lisp │ │ ├── src │ │ │ ├── aio-sbcl.lisp │ │ │ ├── vlime-connection.lisp │ │ │ ├── vlime-patched.lisp │ │ │ ├── vlime-protocol.lisp │ │ │ ├── vlime-sbcl.lisp │ │ │ ├── vlime-usocket.lisp │ │ │ └── vlime.lisp │ │ ├── start-vlime.lisp │ │ ├── test │ │ │ ├── aio-sbcl-test.lisp │ │ │ ├── test-with-coverage.lisp │ │ │ └── vlime-protocol-test.lisp │ │ ├── vlime-patched.asd │ │ ├── vlime-sbcl-test.asd │ │ ├── vlime-sbcl.asd │ │ ├── vlime-test.asd │ │ ├── vlime-usocket.asd │ │ └── vlime.asd │ ├── syntax │ ├── vim-license.txt │ └── vim │ │ ├── addon-info.json │ │ ├── after │ │ └── ftplugin │ │ │ └── lisp.vim │ │ ├── autoload │ │ ├── asyncomplete │ │ │ └── sources │ │ │ │ └── vlime.vim │ │ ├── vlime.vim │ │ └── vlime │ │ │ ├── compat.vim │ │ │ ├── compat │ │ │ ├── neovim.vim │ │ │ └── vim.vim │ │ │ ├── connection.vim │ │ │ ├── contrib.vim │ │ │ ├── contrib │ │ │ ├── arglists.vim │ │ │ ├── fuzzy.vim │ │ │ ├── mrepl.vim │ │ │ ├── presentation_streams.vim │ │ │ ├── presentations.vim │ │ │ ├── repl.vim │ │ │ └── trace_dialog.vim │ │ │ ├── overlay │ │ │ └── slimv.vim │ │ │ ├── plugin.vim │ │ │ ├── server.vim │ │ │ ├── ui.vim │ │ │ └── ui │ │ │ ├── compiler_notes.vim │ │ │ ├── input.vim │ │ │ ├── inspector.vim │ │ │ ├── mapping.vim │ │ │ ├── mrepl.vim │ │ │ ├── repl.vim │ │ │ ├── sldb.vim │ │ │ ├── threads.vim │ │ │ ├── trace_dialog.vim │ │ │ └── xref.vim │ │ ├── doc │ │ ├── vlime-api.txt │ │ ├── vlime-tutor.txt │ │ └── vlime.txt │ │ ├── ftplugin │ │ └── lisp_vlime.vim │ │ ├── syntax │ │ ├── vlime_arglist.vim │ │ ├── vlime_inspector.vim │ │ ├── vlime_mrepl.vim │ │ ├── vlime_repl.vim │ │ ├── vlime_sldb.vim │ │ └── vlime_trace.vim │ │ └── test │ │ ├── run_tests.vim │ │ ├── test_autoload_vlime.vim │ │ ├── test_autoload_vlime_contrib.vim │ │ ├── test_autoload_vlime_ui.vim │ │ └── test_autoload_vlime_ui_input.vim ├── vim-llvm │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── README.md │ ├── after │ │ ├── ftplugin │ │ │ └── llvm.vim │ │ └── syntax │ │ │ └── llvm.vim │ ├── ftdetect │ │ ├── llvm-lit.vim │ │ ├── llvm.vim │ │ ├── mlir.vim │ │ └── tablegen.vim │ ├── ftplugin │ │ ├── llvm.vim │ │ ├── mlir.vim │ │ └── tablegen.vim │ ├── indent │ │ ├── llvm.vim │ │ └── mlir.vim │ ├── scripts.vim │ └── syntax │ │ ├── llvm.vim │ │ ├── mlir.vim │ │ └── tablegen.vim ├── vim-lua │ ├── README.md │ ├── indent │ │ └── lua.vim │ └── syntax │ │ └── lua.vim ├── vim-markdown │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Makefile │ ├── README.md │ ├── after │ │ └── ftplugin │ │ │ └── markdown.vim │ ├── doc │ │ └── vim-markdown.txt │ ├── ftdetect │ │ └── markdown.vim │ ├── ftplugin │ │ └── markdown.vim │ ├── indent │ │ └── markdown.vim │ ├── registry │ │ └── markdown.yaml │ ├── syntax │ │ └── markdown.vim │ └── test │ │ ├── README.md │ │ ├── folding-toc.vader │ │ ├── folding.vader │ │ ├── ge_test.md │ │ ├── indent-new-list-item.vader │ │ ├── indent.md │ │ ├── indent.vader │ │ ├── insert-toc.vader │ │ ├── map.vader │ │ ├── python-folding.vader │ │ ├── run-tests.sh │ │ ├── syntax-singleline.vader │ │ ├── syntax.md │ │ ├── syntax.vader │ │ ├── table-format.vader │ │ ├── toc-autofit.vader │ │ ├── toc.vader │ │ └── vimrc ├── vim-mermaid │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── mermaid.vim │ ├── indent │ │ └── mermaid.vim │ └── syntax │ │ └── mermaid.vim ├── vim-moonscript │ ├── README.md │ ├── colors │ │ └── moon.vim │ ├── ftdetect │ │ └── moon.vim │ ├── ftplugin │ │ └── moon.vim │ ├── indent │ │ └── moon.vim │ └── syntax │ │ └── moon.vim ├── vim-mustache-handlebars │ ├── README.md │ ├── example.mustache │ ├── ftdetect │ │ ├── handlebars.vim │ │ └── mustache.vim │ ├── ftplugin │ │ ├── handlebars.vim │ │ └── mustache.vim │ ├── indent │ │ ├── handlebars.vim │ │ └── mustache.vim │ └── syntax │ │ ├── handlebars.vim │ │ └── mustache.vim ├── vim-nginx │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── nginx.vim │ ├── ftplugin │ │ └── nginx.vim │ ├── indent │ │ └── nginx.vim │ └── syntax │ │ └── nginx.vim ├── vim-nim │ ├── LICENSE │ ├── README.markdown │ ├── autoload │ │ ├── nim.vim │ │ ├── nim_vim.py │ │ └── simulator.py │ ├── compiler │ │ └── nim.vim │ ├── ftdetect │ │ └── nim.vim │ ├── ftplugin │ │ └── nim.vim │ ├── indent │ │ └── nim.vim │ └── syntax │ │ └── nim.vim ├── vim-ocaml │ ├── README.md │ ├── compiler │ │ └── ocaml.vim │ ├── doc │ │ ├── ocaml.txt │ │ └── opam.txt │ ├── ftdetect │ │ ├── dune.vim │ │ ├── oasis.vim │ │ ├── ocaml.vim │ │ ├── ocamlbuild_tags.vim │ │ ├── ocpbuild.vim │ │ ├── ocpbuildroot.vim │ │ ├── omake.vim │ │ ├── opam.vim │ │ └── sexplib.vim │ ├── ftplugin │ │ ├── dune.vim │ │ ├── oasis.vim │ │ ├── ocaml.vim │ │ ├── ocamlbuild_tags.vim │ │ ├── omake.vim │ │ └── sexplib.vim │ ├── indent │ │ ├── dune.vim │ │ ├── ocaml.vim │ │ └── omake.vim │ ├── plugin │ │ └── opam.vim │ └── syntax │ │ ├── dune.vim │ │ ├── oasis.vim │ │ ├── ocaml.vim │ │ ├── ocamlbuild_tags.vim │ │ ├── ocpbuild.vim │ │ ├── ocpbuildroot.vim │ │ ├── omake.vim │ │ ├── opam.vim │ │ └── sexplib.vim ├── vim-perl │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── Changes │ ├── ISSUE_TEMPLATE.md │ ├── Makefile │ ├── README.md │ ├── build-corpus.pl │ ├── contrib │ │ ├── carp.vim │ │ ├── dancer.vim │ │ ├── function-parameters.vim │ │ ├── heredoc-sql-mason.vim │ │ ├── heredoc-sql.vim │ │ ├── highlight-all-pragmas.vim │ │ ├── js-css-in-mason.vim │ │ ├── method-signatures.vim │ │ ├── moose.vim │ │ ├── podjumper.vim │ │ ├── test-files-under-xt.vim │ │ ├── test-more.vim │ │ └── try-tiny.vim │ ├── ftdetect │ │ ├── mason-in-html.vim │ │ └── perl11.vim │ ├── ftplugin │ │ ├── perl.vim │ │ ├── tt2html.vim │ │ └── xs.vim │ ├── funcs-from-perlfunc.pl │ ├── indent │ │ └── perl.vim │ ├── syntax │ │ ├── mason.vim │ │ ├── perl.vim │ │ ├── pod.vim │ │ ├── tap.vim │ │ ├── tt2.vim │ │ ├── tt2html.vim │ │ ├── tt2js.vim │ │ └── xs.vim │ ├── t │ │ ├── 01_highlighting.t │ │ ├── 02_syntax_tt2.t │ │ ├── 03_folding_subs.t │ │ ├── 04_folding_anonymous_subs.t │ │ ├── 05_syntax_mason.t │ │ ├── 06_corpus.t │ │ ├── 07_folding_packages.t │ │ └── vim_syntax.css │ ├── t_source │ │ ├── backslashed-indenting.pl │ │ └── perl │ │ │ ├── advanced.t │ │ │ ├── advanced.t.json │ │ │ ├── bad-braces.t │ │ │ ├── bad-braces.t.json │ │ │ ├── basic.t │ │ │ ├── basic.t.json │ │ │ ├── brace-in-match.t │ │ │ ├── brace-in-match.t.json │ │ │ ├── brace-in-s-eval.t │ │ │ ├── brace-in-s-eval.t.json │ │ │ ├── brace-in-substitution.t │ │ │ ├── brace-in-substitution.t.json │ │ │ ├── braces-in-heredoc.t │ │ │ ├── braces-in-heredoc.t.json │ │ │ ├── eval-subst-in-sub.t │ │ │ ├── eval-subst-in-sub.t.json │ │ │ ├── hash-slices.t │ │ │ ├── hash-slices.t.json │ │ │ ├── io.t │ │ │ ├── io.t.json │ │ │ ├── issue16.t │ │ │ ├── issue16.t.json │ │ │ ├── issue166.t │ │ │ ├── issue166.t.json │ │ │ ├── issue19.t │ │ │ ├── issue19.t.json │ │ │ ├── issue260-2.t │ │ │ ├── issue260-2.t.json │ │ │ ├── issue260.t │ │ │ ├── issue260.t.json │ │ │ ├── issue38.t │ │ │ ├── issue38.t.json │ │ │ ├── issue42a.t │ │ │ ├── issue42a.t.json │ │ │ ├── issue42b.t │ │ │ ├── issue42b.t.json │ │ │ ├── issue48.t │ │ │ ├── issue48.t.json │ │ │ ├── issue52.t │ │ │ ├── issue52.t.json │ │ │ ├── issue73.t │ │ │ ├── issue73.t.json │ │ │ ├── multi-line-regex-with-braces.t │ │ │ ├── multi-line-regex-with-braces.t.json │ │ │ ├── nested-braces.t │ │ │ ├── nested-braces.t.json │ │ │ ├── package.t │ │ │ ├── package.t.json │ │ │ ├── postfix-dereference.t │ │ │ ├── postfix-dereference.t.json │ │ │ ├── regexes.t │ │ │ ├── regexes.t.json │ │ │ ├── vars.t │ │ │ └── vars.t.json │ ├── tools │ │ ├── Local │ │ │ ├── MissingModule.pm │ │ │ ├── Utils.pm │ │ │ ├── VimColor.pm │ │ │ ├── VimFolds.pm │ │ │ └── VisualDiff.pm │ │ ├── clean-slate.vim │ │ ├── config.vim │ │ ├── efm_perl.pl │ │ ├── launch-vim │ │ ├── make-tarball.pl │ │ ├── populate-last-change.pl │ │ ├── time-it.vim │ │ └── vimxs.pl │ └── verify-corpus.pl ├── vim-pgsql │ ├── README.md │ ├── doc │ │ └── pgsql.txt │ ├── ftdetect │ │ └── pgsql.vim │ ├── indent │ │ └── pgsql.vim │ ├── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── common.sql │ │ ├── keywords.sql │ │ ├── pgsql.sql │ │ └── test.sql │ └── syntax │ │ └── pgsql.vim ├── vim-php-cs-fixer │ ├── .travis.yml │ ├── README.md │ ├── autoload │ │ └── php_cs_fixer.vim │ ├── doc │ │ └── vim-php-cs-fixer.txt │ ├── plugin │ │ └── php_cs_fixer.vim │ └── tests │ │ ├── fixtures │ │ └── misc │ │ │ ├── class_definition,no_trailing_whitespace.php │ │ │ ├── imports.php │ │ │ ├── no_closing_tag,full_opening_tag.php │ │ │ ├── phpdoc_to_comment,phpdoc_var_without_name.php │ │ │ ├── phpdocs.test.php │ │ │ ├── semicolon_after_instruction,no_unneeded_control_parentheses.php │ │ │ ├── simplified_null_return,no_useless_return,no_whitespace_in_blank_line,blank_line_before_return,no_extra_consecutive_blank_lines.php │ │ │ └── single_import_per_statement,ordered_imports.php │ │ ├── misc.vim │ │ └── results │ │ └── misc │ │ ├── class_definition,no_trailing_whitespace.php │ │ ├── imports.php │ │ ├── no_closing_tag,full_opening_tag.php │ │ ├── phpdoc_to_comment,phpdoc_var_without_name.php │ │ ├── phpdocs.test.php │ │ ├── semicolon_after_instruction,no_unneeded_control_parentheses.php │ │ ├── simplified_null_return,no_useless_return,no_whitespace_in_blank_line,blank_line_before_return,no_extra_consecutive_blank_lines.php │ │ └── single_import_per_statement,ordered_imports.php ├── vim-php-indent │ ├── Comment-stripped-version │ │ ├── README.md │ │ └── php-indent_1-70 │ │ │ ├── VimPHPIndentHelpFile.txt │ │ │ └── indent │ │ │ └── php.vim │ ├── README.md │ ├── doc │ │ └── PHPIndent.txt │ └── indent │ │ └── php.vim ├── vim-php │ ├── README.md │ └── syntax │ │ └── php.vim ├── vim-pug │ ├── README.md │ ├── ftdetect │ │ └── pug.vim │ ├── ftplugin │ │ └── pug.vim │ ├── indent │ │ └── pug.vim │ └── syntax │ │ └── pug.vim ├── vim-python │ ├── .bumpversion.cfg │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── COPYING │ ├── after │ │ ├── ftplugin │ │ │ ├── pyrex.vim │ │ │ └── python.vim │ │ └── indent │ │ │ ├── pyrex.vim │ │ │ └── python.vim │ ├── autoload │ │ ├── pymode.vim │ │ └── pymode │ │ │ ├── breakpoint.vim │ │ │ ├── debug.vim │ │ │ ├── doc.vim │ │ │ ├── folding.vim │ │ │ ├── indent.vim │ │ │ ├── lint.vim │ │ │ ├── motion.vim │ │ │ ├── rope.vim │ │ │ ├── run.vim │ │ │ ├── tools │ │ │ ├── loclist.vim │ │ │ └── signs.vim │ │ │ └── virtualenv.vim │ ├── debugvimrc.vim │ ├── doc │ │ └── pymode.txt │ ├── ftplugin │ │ ├── pyrex.vim │ │ └── python │ │ │ └── pymode.vim │ ├── logo.png │ ├── plugin │ │ └── pymode.vim │ ├── pylama.ini │ ├── pymode │ │ ├── __init__.py │ │ ├── async.py │ │ ├── autopep8.py │ │ ├── environment.py │ │ ├── libs │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── astroid │ │ │ ├── mccabe.py │ │ │ ├── pycodestyle.py │ │ │ ├── pydocstyle │ │ │ ├── pyflakes │ │ │ ├── pylama │ │ │ ├── pylint │ │ │ ├── pytoolconfig │ │ │ ├── rope │ │ │ ├── snowballstemmer │ │ │ ├── toml │ │ │ └── tomli │ │ ├── lint.py │ │ ├── rope.py │ │ ├── run.py │ │ ├── utils.py │ │ └── virtualenv.py │ ├── readme.md │ ├── submodules │ │ ├── appdirs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.rst │ │ │ ├── Dockerfile │ │ │ ├── HACKING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── appdirs.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_api.py │ │ │ └── tox.ini │ │ ├── astroid │ │ │ ├── .copyrite_aliases │ │ │ ├── .coveragerc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ └── ci.yaml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .readthedocs.yaml │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── appveyor.yml │ │ │ ├── astroid │ │ │ │ ├── __init__.py │ │ │ │ ├── __pkginfo__.py │ │ │ │ ├── _ast.py │ │ │ │ ├── arguments.py │ │ │ │ ├── as_string.py │ │ │ │ ├── bases.py │ │ │ │ ├── brain │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── brain_argparse.py │ │ │ │ │ ├── brain_attrs.py │ │ │ │ │ ├── brain_boto3.py │ │ │ │ │ ├── brain_builtin_inference.py │ │ │ │ │ ├── brain_collections.py │ │ │ │ │ ├── brain_crypt.py │ │ │ │ │ ├── brain_curses.py │ │ │ │ │ ├── brain_dataclasses.py │ │ │ │ │ ├── brain_dateutil.py │ │ │ │ │ ├── brain_fstrings.py │ │ │ │ │ ├── brain_functools.py │ │ │ │ │ ├── brain_gi.py │ │ │ │ │ ├── brain_hashlib.py │ │ │ │ │ ├── brain_http.py │ │ │ │ │ ├── brain_hypothesis.py │ │ │ │ │ ├── brain_io.py │ │ │ │ │ ├── brain_mechanize.py │ │ │ │ │ ├── brain_multiprocessing.py │ │ │ │ │ ├── brain_namedtuple_enum.py │ │ │ │ │ ├── brain_nose.py │ │ │ │ │ ├── brain_numpy_core_fromnumeric.py │ │ │ │ │ ├── brain_numpy_core_function_base.py │ │ │ │ │ ├── brain_numpy_core_multiarray.py │ │ │ │ │ ├── brain_numpy_core_numeric.py │ │ │ │ │ ├── brain_numpy_core_numerictypes.py │ │ │ │ │ ├── brain_numpy_core_umath.py │ │ │ │ │ ├── brain_numpy_ndarray.py │ │ │ │ │ ├── brain_numpy_random_mtrand.py │ │ │ │ │ ├── brain_numpy_utils.py │ │ │ │ │ ├── brain_pkg_resources.py │ │ │ │ │ ├── brain_pytest.py │ │ │ │ │ ├── brain_qt.py │ │ │ │ │ ├── brain_random.py │ │ │ │ │ ├── brain_re.py │ │ │ │ │ ├── brain_responses.py │ │ │ │ │ ├── brain_scipy_signal.py │ │ │ │ │ ├── brain_six.py │ │ │ │ │ ├── brain_sqlalchemy.py │ │ │ │ │ ├── brain_ssl.py │ │ │ │ │ ├── brain_subprocess.py │ │ │ │ │ ├── brain_threading.py │ │ │ │ │ ├── brain_type.py │ │ │ │ │ ├── brain_typing.py │ │ │ │ │ └── brain_uuid.py │ │ │ │ ├── builder.py │ │ │ │ ├── context.py │ │ │ │ ├── decorators.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── helpers.py │ │ │ │ ├── inference.py │ │ │ │ ├── interpreter │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _import │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── spec.py │ │ │ │ │ │ └── util.py │ │ │ │ │ ├── dunder_lookup.py │ │ │ │ │ └── objectmodel.py │ │ │ │ ├── manager.py │ │ │ │ ├── mixins.py │ │ │ │ ├── modutils.py │ │ │ │ ├── node_classes.py │ │ │ │ ├── nodes.py │ │ │ │ ├── objects.py │ │ │ │ ├── protocols.py │ │ │ │ ├── raw_building.py │ │ │ │ ├── rebuilder.py │ │ │ │ ├── scoped_nodes.py │ │ │ │ ├── test_utils.py │ │ │ │ ├── transforms.py │ │ │ │ └── util.py │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── api │ │ │ │ │ ├── astroid.exceptions.rst │ │ │ │ │ ├── astroid.nodes.rst │ │ │ │ │ ├── base_nodes.rst │ │ │ │ │ ├── general.rst │ │ │ │ │ └── index.rst │ │ │ │ ├── ast_objects.inv │ │ │ │ ├── changelog.rst │ │ │ │ ├── conf.py │ │ │ │ ├── extending.rst │ │ │ │ ├── index.rst │ │ │ │ ├── inference.rst │ │ │ │ ├── make.bat │ │ │ │ ├── media │ │ │ │ │ ├── Tidelift_Logos_RGB_Tidelift_Shorthand_On-White.png │ │ │ │ │ └── Tidelift_Logos_RGB_Tidelift_Shorthand_On-White_small.png │ │ │ │ ├── release.md │ │ │ │ ├── requirements.txt │ │ │ │ └── whatsnew.rst │ │ │ ├── pylintrc │ │ │ ├── requirements_test.txt │ │ │ ├── requirements_test_brain.txt │ │ │ ├── requirements_test_min.txt │ │ │ ├── requirements_test_pre_commit.txt │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── resources.py │ │ │ │ ├── testdata │ │ │ │ │ └── python3 │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── MyPyPa-0.1.0-py2.5.egg │ │ │ │ │ │ ├── MyPyPa-0.1.0-py2.5.zip │ │ │ │ │ │ ├── SSL1 │ │ │ │ │ │ ├── Connection1.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── absimp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── sidepackage │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── string.py │ │ │ │ │ │ ├── absimport.py │ │ │ │ │ │ ├── all.py │ │ │ │ │ │ ├── appl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── myConnection.py │ │ │ │ │ │ ├── contribute_to_namespace │ │ │ │ │ │ └── namespace_pep_420 │ │ │ │ │ │ │ └── submodule.py │ │ │ │ │ │ ├── descriptor_crash.py │ │ │ │ │ │ ├── email.py │ │ │ │ │ │ ├── find_test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── module.py │ │ │ │ │ │ ├── module2.py │ │ │ │ │ │ ├── noendingnewline.py │ │ │ │ │ │ └── nonregr.py │ │ │ │ │ │ ├── foogle │ │ │ │ │ │ └── fax │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── a.py │ │ │ │ │ │ ├── foogle_fax-0.12.5-py2.7-nspkg.pth │ │ │ │ │ │ ├── format.py │ │ │ │ │ │ ├── invalid_encoding.py │ │ │ │ │ │ ├── lmfp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── foo.py │ │ │ │ │ │ ├── metaclass_recursion │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── monkeypatch.py │ │ │ │ │ │ └── parent.py │ │ │ │ │ │ ├── module.py │ │ │ │ │ │ ├── module1abs │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── core.py │ │ │ │ │ │ ├── module2.py │ │ │ │ │ │ ├── namespace_pep_420 │ │ │ │ │ │ └── module.py │ │ │ │ │ │ ├── noendingnewline.py │ │ │ │ │ │ ├── nonregr.py │ │ │ │ │ │ ├── notall.py │ │ │ │ │ │ ├── notamodule │ │ │ │ │ │ └── file.py │ │ │ │ │ │ ├── operator_precedence.py │ │ │ │ │ │ ├── package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── absimport.py │ │ │ │ │ │ ├── hello.py │ │ │ │ │ │ ├── import_package_subpackage_module.py │ │ │ │ │ │ └── subpackage │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── module.py │ │ │ │ │ │ ├── path_pkg_resources_1 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── foo.py │ │ │ │ │ │ ├── path_pkg_resources_2 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── bar.py │ │ │ │ │ │ ├── path_pkg_resources_3 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── baz.py │ │ │ │ │ │ ├── path_pkgutil_1 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── foo.py │ │ │ │ │ │ ├── path_pkgutil_2 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── bar.py │ │ │ │ │ │ ├── path_pkgutil_3 │ │ │ │ │ │ └── package │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── baz.py │ │ │ │ │ │ ├── recursion.py │ │ │ │ │ │ ├── tmp__init__.py │ │ │ │ │ │ └── unicode_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── core │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── unittest_brain.py │ │ │ │ ├── unittest_brain_numpy_core_fromnumeric.py │ │ │ │ ├── unittest_brain_numpy_core_function_base.py │ │ │ │ ├── unittest_brain_numpy_core_multiarray.py │ │ │ │ ├── unittest_brain_numpy_core_numeric.py │ │ │ │ ├── unittest_brain_numpy_core_numerictypes.py │ │ │ │ ├── unittest_brain_numpy_core_umath.py │ │ │ │ ├── unittest_brain_numpy_ndarray.py │ │ │ │ ├── unittest_brain_numpy_random_mtrand.py │ │ │ │ ├── unittest_builder.py │ │ │ │ ├── unittest_helpers.py │ │ │ │ ├── unittest_inference.py │ │ │ │ ├── unittest_lookup.py │ │ │ │ ├── unittest_manager.py │ │ │ │ ├── unittest_modutils.py │ │ │ │ ├── unittest_nodes.py │ │ │ │ ├── unittest_object_model.py │ │ │ │ ├── unittest_objects.py │ │ │ │ ├── unittest_protocols.py │ │ │ │ ├── unittest_python3.py │ │ │ │ ├── unittest_raw_building.py │ │ │ │ ├── unittest_regrtest.py │ │ │ │ ├── unittest_scoped_nodes.py │ │ │ │ ├── unittest_transforms.py │ │ │ │ └── unittest_utils.py │ │ │ └── tox.ini │ │ ├── autopep8 │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ ├── python-package.yml │ │ │ │ │ └── python-publish.yml │ │ │ ├── .gitignore │ │ │ ├── AUTHORS.rst │ │ │ ├── CONTRIBUTING.rst │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── autopep8.py │ │ │ ├── coveralls.bash │ │ │ ├── hooks │ │ │ │ └── pre-push │ │ │ ├── install_hooks.bash │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── __init__.py │ │ │ │ ├── acid.py │ │ │ │ ├── acid_pypi.py │ │ │ │ ├── bad_encoding.py │ │ │ │ ├── bad_encoding2.py │ │ │ │ ├── e101_example.py │ │ │ │ ├── example.py │ │ │ │ ├── example_with_reduce.py │ │ │ │ ├── fake_configuration │ │ │ │ │ └── .pep8 │ │ │ │ ├── fake_pycodestyle_configuration │ │ │ │ │ └── tox.ini │ │ │ │ ├── inspect_example.py │ │ │ │ ├── iso_8859_1.py │ │ │ │ ├── suite │ │ │ │ │ ├── E10.py │ │ │ │ │ ├── E11.py │ │ │ │ │ ├── E12.py │ │ │ │ │ ├── E20.py │ │ │ │ │ ├── E21.py │ │ │ │ │ ├── E22.py │ │ │ │ │ ├── E23.py │ │ │ │ │ ├── E24.py │ │ │ │ │ ├── E25.py │ │ │ │ │ ├── E26.py │ │ │ │ │ ├── E27.py │ │ │ │ │ ├── E30.py │ │ │ │ │ ├── E30not.py │ │ │ │ │ ├── E40.py │ │ │ │ │ ├── E50.py │ │ │ │ │ ├── E70.py │ │ │ │ │ ├── E71.py │ │ │ │ │ ├── E72.py │ │ │ │ │ ├── W19.py │ │ │ │ │ ├── W29.py │ │ │ │ │ ├── W39.py │ │ │ │ │ ├── W60.py │ │ │ │ │ ├── latin-1.py │ │ │ │ │ ├── long_lines.py │ │ │ │ │ ├── noqa.py │ │ │ │ │ ├── out │ │ │ │ │ │ ├── E10.py │ │ │ │ │ │ ├── E11.py │ │ │ │ │ │ ├── E12.py │ │ │ │ │ │ ├── E20.py │ │ │ │ │ │ ├── E21.py │ │ │ │ │ │ ├── E22.py │ │ │ │ │ │ ├── E23.py │ │ │ │ │ │ ├── E24.py │ │ │ │ │ │ ├── E25.py │ │ │ │ │ │ ├── E26.py │ │ │ │ │ │ ├── E27.py │ │ │ │ │ │ ├── E30.py │ │ │ │ │ │ ├── E30not.py │ │ │ │ │ │ ├── E40.py │ │ │ │ │ │ ├── E50.py │ │ │ │ │ │ ├── E70.py │ │ │ │ │ │ ├── E71.py │ │ │ │ │ │ ├── E72.py │ │ │ │ │ │ ├── W19.py │ │ │ │ │ │ ├── W29.py │ │ │ │ │ │ ├── W39.py │ │ │ │ │ │ ├── W60.py │ │ │ │ │ │ ├── latin-1.py │ │ │ │ │ │ ├── long_lines.py │ │ │ │ │ │ ├── noqa.py │ │ │ │ │ │ ├── python3.py │ │ │ │ │ │ ├── utf-8-bom.py │ │ │ │ │ │ └── utf-8.py │ │ │ │ │ ├── python3.py │ │ │ │ │ ├── utf-8-bom.py │ │ │ │ │ └── utf-8.py │ │ │ │ ├── test_autopep8.py │ │ │ │ ├── test_suite.py │ │ │ │ ├── vectors_example.py │ │ │ │ └── vim_autopep8.py │ │ │ ├── tox.ini │ │ │ └── update_readme.py │ │ ├── mccabe │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── mccabe.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── test_mccabe.py │ │ │ └── tox.ini │ │ ├── pycodestyle │ │ │ ├── .coveragerc │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── main.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGES.txt │ │ │ ├── CONTRIBUTING.rst │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── dev-requirements.txt │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── advanced.rst │ │ │ │ ├── api.rst │ │ │ │ ├── conf.py │ │ │ │ ├── developer.rst │ │ │ │ ├── index.rst │ │ │ │ ├── intro.rst │ │ │ │ └── make.bat │ │ │ ├── pycodestyle.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── testsuite │ │ │ │ ├── E10.py │ │ │ │ ├── E11.py │ │ │ │ ├── E12.py │ │ │ │ ├── E12not.py │ │ │ │ ├── E20.py │ │ │ │ ├── E21.py │ │ │ │ ├── E22.py │ │ │ │ ├── E23.py │ │ │ │ ├── E24.py │ │ │ │ ├── E25.py │ │ │ │ ├── E26.py │ │ │ │ ├── E27.py │ │ │ │ ├── E30.py │ │ │ │ ├── E30not.py │ │ │ │ ├── E40.py │ │ │ │ ├── E50.py │ │ │ │ ├── E70.py │ │ │ │ ├── E71.py │ │ │ │ ├── E72.py │ │ │ │ ├── E73.py │ │ │ │ ├── E90.py │ │ │ │ ├── W19.py │ │ │ │ ├── W29.py │ │ │ │ ├── W39.py │ │ │ │ ├── W60.py │ │ │ │ ├── __init__.py │ │ │ │ ├── crlf.py │ │ │ │ ├── latin-1.py │ │ │ │ ├── noqa.py │ │ │ │ ├── python3.py │ │ │ │ ├── python35.py │ │ │ │ ├── python38.py │ │ │ │ ├── support.py │ │ │ │ ├── test_all.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_blank_lines.py │ │ │ │ ├── test_parser.py │ │ │ │ ├── test_shell.py │ │ │ │ ├── test_util.py │ │ │ │ ├── utf-8-bom.py │ │ │ │ └── utf-8.py │ │ │ └── tox.ini │ │ ├── pydocstyle │ │ │ ├── .bumpversion.cfg │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── test.yml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-hooks.yaml │ │ │ ├── LICENSE-MIT │ │ │ ├── MANIFEST.in │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.rst │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── conf.py │ │ │ │ ├── error_codes.rst │ │ │ │ ├── index.rst │ │ │ │ ├── license.rst │ │ │ │ ├── make.bat │ │ │ │ ├── quickstart.rst │ │ │ │ ├── release_notes.rst │ │ │ │ ├── snippets │ │ │ │ │ ├── cli.rst │ │ │ │ │ ├── config.rst │ │ │ │ │ ├── in_file.rst │ │ │ │ │ ├── install.rst │ │ │ │ │ ├── pre_commit.rst │ │ │ │ │ └── publicity.rst │ │ │ │ └── usage.rst │ │ │ ├── pyproject.toml │ │ │ ├── requirements.txt │ │ │ ├── requirements │ │ │ │ ├── docs.txt │ │ │ │ ├── runtime.txt │ │ │ │ ├── test_env.txt │ │ │ │ └── tests.txt │ │ │ ├── setup.py │ │ │ ├── src │ │ │ │ ├── __init__.py │ │ │ │ ├── pydocstyle │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── checker.py │ │ │ │ │ ├── cli.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── data │ │ │ │ │ │ ├── imperatives.txt │ │ │ │ │ │ └── imperatives_blacklist.txt │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── violations.py │ │ │ │ │ └── wordlists.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── error_tests.py │ │ │ │ │ ├── parser_test.py │ │ │ │ │ ├── test_cases │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── all_import.py │ │ │ │ │ ├── all_import_as.py │ │ │ │ │ ├── all_import_aux.py │ │ │ │ │ ├── canonical_google_examples.py │ │ │ │ │ ├── canonical_numpy_examples.py │ │ │ │ │ ├── canonical_pep257_examples.py │ │ │ │ │ ├── capitalization.py │ │ │ │ │ ├── comment_after_def_bug.py │ │ │ │ │ ├── expected.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── multi_line_summary_start.py │ │ │ │ │ ├── nested_class.py │ │ │ │ │ ├── noqa.py │ │ │ │ │ ├── sections.py │ │ │ │ │ ├── superfluous_quotes.py │ │ │ │ │ ├── test.py │ │ │ │ │ └── unicode_literals.py │ │ │ │ │ ├── test_decorators.py │ │ │ │ │ ├── test_definitions.py │ │ │ │ │ ├── test_integration.py │ │ │ │ │ └── test_utils.py │ │ │ └── tox.ini │ │ ├── pyflakes │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── test.yml │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── NEWS.rst │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ │ └── pyflakes │ │ │ ├── pyflakes │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── api.py │ │ │ │ ├── checker.py │ │ │ │ ├── messages.py │ │ │ │ ├── reporter.py │ │ │ │ ├── scripts │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── pyflakes.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── harness.py │ │ │ │ │ ├── test_api.py │ │ │ │ │ ├── test_builtin.py │ │ │ │ │ ├── test_checker.py │ │ │ │ │ ├── test_code_segment.py │ │ │ │ │ ├── test_dict.py │ │ │ │ │ ├── test_doctests.py │ │ │ │ │ ├── test_imports.py │ │ │ │ │ ├── test_is_literal.py │ │ │ │ │ ├── test_other.py │ │ │ │ │ ├── test_return_with_arguments_inside_generator.py │ │ │ │ │ ├── test_type_annotations.py │ │ │ │ │ └── test_undefined_names.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tox.ini │ │ ├── pylama │ │ │ ├── .bumpversion.cfg │ │ │ ├── .coveragerc │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── Changelog │ │ │ ├── DESCRIPTION │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.rst │ │ │ ├── docs │ │ │ │ ├── _static │ │ │ │ │ └── logo.png │ │ │ │ ├── conf.py │ │ │ │ ├── index.html │ │ │ │ ├── index.html.zip │ │ │ │ └── index.rst │ │ │ ├── dummy.py │ │ │ ├── pylama │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── check_async.py │ │ │ │ ├── config.py │ │ │ │ ├── core.py │ │ │ │ ├── errors.py │ │ │ │ ├── hook.py │ │ │ │ ├── libs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── importlib.py │ │ │ │ │ └── inirama.py │ │ │ │ ├── lint │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── extensions.py │ │ │ │ │ ├── pylama_eradicate.py │ │ │ │ │ ├── pylama_mccabe.py │ │ │ │ │ ├── pylama_mypy.py │ │ │ │ │ ├── pylama_pycodestyle.py │ │ │ │ │ ├── pylama_pydocstyle.py │ │ │ │ │ ├── pylama_pyflakes.py │ │ │ │ │ ├── pylama_pylint.py │ │ │ │ │ └── pylama_radon.py │ │ │ │ ├── main.py │ │ │ │ └── pytest.py │ │ │ ├── requirements-test.txt │ │ │ ├── requirements.txt │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_core.py │ │ │ │ └── test_linters.py │ │ │ └── tox.ini │ │ ├── pylint │ │ │ ├── .copyrite_aliases │ │ │ ├── .coveragerc │ │ │ ├── .flake8 │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── FUNDING.yml │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 1_Bug_report.md │ │ │ │ │ ├── 2_Feature_request.md │ │ │ │ │ └── 3_Question.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ ├── dependabot.yml │ │ │ │ └── workflows │ │ │ │ │ └── ci.yaml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .pre-commit-hooks.yaml │ │ │ ├── .readthedocs.yaml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTORS.txt │ │ │ ├── ChangeLog │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── appveyor.yml │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── backlinks.rst │ │ │ │ ├── conf.py │ │ │ │ ├── development_guide │ │ │ │ │ ├── contribute.rst │ │ │ │ │ └── index.rst │ │ │ │ ├── exts │ │ │ │ │ ├── pylint_extensions.py │ │ │ │ │ └── pylint_features.py │ │ │ │ ├── faq.rst │ │ │ │ ├── how_tos │ │ │ │ │ ├── custom_checkers.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── plugins.rst │ │ │ │ │ └── transform_plugins.rst │ │ │ │ ├── index.rst │ │ │ │ ├── intro.rst │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ ├── make.bat │ │ │ │ ├── media │ │ │ │ │ ├── Tidelift_Logos_RGB_Tidelift_Shorthand_On-White.png │ │ │ │ │ └── Tidelift_Logos_RGB_Tidelift_Shorthand_On-White_small.png │ │ │ │ ├── release.md │ │ │ │ ├── requirements.txt │ │ │ │ ├── support.rst │ │ │ │ ├── technical_reference │ │ │ │ │ ├── c_extensions.rst │ │ │ │ │ ├── checkers.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ └── startup.rst │ │ │ │ ├── tutorial.rst │ │ │ │ ├── user_guide │ │ │ │ │ ├── ide-integration.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── installation.rst │ │ │ │ │ ├── message-control.rst │ │ │ │ │ ├── options.rst │ │ │ │ │ ├── output.rst │ │ │ │ │ └── run.rst │ │ │ │ └── whatsnew │ │ │ │ │ ├── 1.6.rst │ │ │ │ │ ├── 1.7.rst │ │ │ │ │ ├── 1.8.rst │ │ │ │ │ ├── 1.9.rst │ │ │ │ │ ├── 2.0.rst │ │ │ │ │ ├── 2.1.rst │ │ │ │ │ ├── 2.2.rst │ │ │ │ │ ├── 2.3.rst │ │ │ │ │ ├── 2.4.rst │ │ │ │ │ ├── 2.5.rst │ │ │ │ │ ├── 2.6.rst │ │ │ │ │ ├── 2.7.rst │ │ │ │ │ ├── 2.8.rst │ │ │ │ │ ├── 2.9.rst │ │ │ │ │ ├── changelog.rst │ │ │ │ │ └── index.rst │ │ │ ├── elisp │ │ │ │ ├── pylint-flymake.el │ │ │ │ ├── pylint.el │ │ │ │ └── startup │ │ │ ├── examples │ │ │ │ ├── custom.py │ │ │ │ ├── custom_raw.py │ │ │ │ ├── deprecation_checker.py │ │ │ │ ├── pylintrc │ │ │ │ └── pylintrc_camelcase │ │ │ ├── pylint │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pkginfo__.py │ │ │ │ ├── checkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── base_checker.py │ │ │ │ │ ├── classes.py │ │ │ │ │ ├── deprecated.py │ │ │ │ │ ├── design_analysis.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── format.py │ │ │ │ │ ├── imports.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── mapreduce_checker.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── newstyle.py │ │ │ │ │ ├── python3.py │ │ │ │ │ ├── raw_metrics.py │ │ │ │ │ ├── refactoring │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── len_checker.py │ │ │ │ │ │ ├── not_checker.py │ │ │ │ │ │ ├── recommendation_checker.py │ │ │ │ │ │ └── refactoring_checker.py │ │ │ │ │ ├── similar.py │ │ │ │ │ ├── spelling.py │ │ │ │ │ ├── stdlib.py │ │ │ │ │ ├── strings.py │ │ │ │ │ ├── typecheck.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── variables.py │ │ │ │ ├── config │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configuration_mixin.py │ │ │ │ │ ├── find_default_config_files.py │ │ │ │ │ ├── man_help_formatter.py │ │ │ │ │ ├── option.py │ │ │ │ │ ├── option_manager_mixin.py │ │ │ │ │ ├── option_parser.py │ │ │ │ │ └── options_provider_mixin.py │ │ │ │ ├── constants.py │ │ │ │ ├── epylint.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── extensions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _check_docs_utils.py │ │ │ │ │ ├── bad_builtin.py │ │ │ │ │ ├── bad_builtin.rst │ │ │ │ │ ├── broad_try_clause.py │ │ │ │ │ ├── check_docs.py │ │ │ │ │ ├── check_elif.py │ │ │ │ │ ├── comparetozero.py │ │ │ │ │ ├── confusing_elif.py │ │ │ │ │ ├── docparams.py │ │ │ │ │ ├── docparams.rst │ │ │ │ │ ├── docstyle.py │ │ │ │ │ ├── empty_comment.py │ │ │ │ │ ├── emptystring.py │ │ │ │ │ ├── mccabe.py │ │ │ │ │ ├── mccabe.rst │ │ │ │ │ ├── overlapping_exceptions.py │ │ │ │ │ ├── redefined_variable_type.py │ │ │ │ │ └── typing.py │ │ │ │ ├── graph.py │ │ │ │ ├── interfaces.py │ │ │ │ ├── lint │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── expand_modules.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pylinter.py │ │ │ │ │ ├── report_functions.py │ │ │ │ │ ├── run.py │ │ │ │ │ └── utils.py │ │ │ │ ├── message │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── message_definition.py │ │ │ │ │ ├── message_definition_store.py │ │ │ │ │ ├── message_handler_mix_in.py │ │ │ │ │ └── message_id_store.py │ │ │ │ ├── pyreverse │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diadefslib.py │ │ │ │ │ ├── diagrams.py │ │ │ │ │ ├── inspector.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── vcgutils.py │ │ │ │ │ └── writer.py │ │ │ │ ├── reporters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base_reporter.py │ │ │ │ │ ├── collecting_reporter.py │ │ │ │ │ ├── json_reporter.py │ │ │ │ │ ├── reports_handler_mix_in.py │ │ │ │ │ ├── text.py │ │ │ │ │ └── ureports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── nodes.py │ │ │ │ │ │ └── text_writer.py │ │ │ │ ├── testutils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── checker_test_case.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── decorator.py │ │ │ │ │ ├── functional_test_file.py │ │ │ │ │ ├── get_test_info.py │ │ │ │ │ ├── global_test_linter.py │ │ │ │ │ ├── lint_module_test.py │ │ │ │ │ ├── output_line.py │ │ │ │ │ ├── reporter_for_tests.py │ │ │ │ │ ├── tokenize_str.py │ │ │ │ │ └── unittest_linter.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast_walker.py │ │ │ │ │ ├── file_state.py │ │ │ │ │ ├── pragma_parser.py │ │ │ │ │ └── utils.py │ │ │ ├── pylintrc │ │ │ ├── requirements_test.txt │ │ │ ├── requirements_test_min.txt │ │ │ ├── requirements_test_pre_commit.txt │ │ │ ├── script │ │ │ │ ├── __init__.py │ │ │ │ └── fix_documentation.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── acceptance │ │ │ │ │ └── test_stdlib.py │ │ │ │ ├── benchmark │ │ │ │ │ └── test_baseline_benchmarks.py │ │ │ │ ├── checkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── unittest_base.py │ │ │ │ │ ├── unittest_classes.py │ │ │ │ │ ├── unittest_deprecated.py │ │ │ │ │ ├── unittest_exceptions.py │ │ │ │ │ ├── unittest_format.py │ │ │ │ │ ├── unittest_imports.py │ │ │ │ │ ├── unittest_logging.py │ │ │ │ │ ├── unittest_misc.py │ │ │ │ │ ├── unittest_python3.py │ │ │ │ │ ├── unittest_refactoring.py │ │ │ │ │ ├── unittest_similar.py │ │ │ │ │ ├── unittest_spelling.py │ │ │ │ │ ├── unittest_stdlib.py │ │ │ │ │ ├── unittest_strings.py │ │ │ │ │ ├── unittest_typecheck.py │ │ │ │ │ ├── unittest_utils.py │ │ │ │ │ └── unittest_variables.py │ │ │ │ ├── conftest.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ascript │ │ │ │ │ ├── classes_No_Name.dot │ │ │ │ │ ├── clientmodule_test.py │ │ │ │ │ ├── packages_No_Name.dot │ │ │ │ │ └── suppliermodule_test.py │ │ │ │ ├── extensions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── data │ │ │ │ │ │ ├── bad_builtin.py │ │ │ │ │ │ ├── broad_try_clause.py │ │ │ │ │ │ ├── compare_to_zero.py │ │ │ │ │ │ ├── docstring.py │ │ │ │ │ │ ├── elif.py │ │ │ │ │ │ ├── empty_comment.py │ │ │ │ │ │ ├── empty_string_comparison.py │ │ │ │ │ │ ├── mccabe.py │ │ │ │ │ │ ├── overlapping_exceptions.py │ │ │ │ │ │ ├── overlapping_exceptions_py33.py │ │ │ │ │ │ └── redefined.py │ │ │ │ │ ├── test_bad_builtin.py │ │ │ │ │ ├── test_broad_try_clause.py │ │ │ │ │ ├── test_check_docs.py │ │ │ │ │ ├── test_check_docs_utils.py │ │ │ │ │ ├── test_check_mccabe.py │ │ │ │ │ ├── test_check_raise_docs.py │ │ │ │ │ ├── test_check_return_docs.py │ │ │ │ │ ├── test_check_yields_docs.py │ │ │ │ │ ├── test_comparetozero.py │ │ │ │ │ ├── test_confusing_elif.py │ │ │ │ │ ├── test_docstyle.py │ │ │ │ │ ├── test_elseif_used.py │ │ │ │ │ ├── test_empty_comment.py │ │ │ │ │ ├── test_emptystring.py │ │ │ │ │ ├── test_overlapping_exceptions.py │ │ │ │ │ └── test_redefined.py │ │ │ │ ├── functional │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── a │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── abstract │ │ │ │ │ │ │ ├── abstract_abc_methods.py │ │ │ │ │ │ │ ├── abstract_class_instantiated_in_class.py │ │ │ │ │ │ │ ├── abstract_class_instantiated_py3.py │ │ │ │ │ │ │ ├── abstract_class_instantiated_py3.rc │ │ │ │ │ │ │ ├── abstract_class_instantiated_py3.txt │ │ │ │ │ │ │ ├── abstract_class_instantiated_py34.py │ │ │ │ │ │ │ ├── abstract_class_instantiated_py34.rc │ │ │ │ │ │ │ ├── abstract_class_instantiated_py34.txt │ │ │ │ │ │ │ ├── abstract_method_py3.py │ │ │ │ │ │ │ ├── abstract_method_py3.rc │ │ │ │ │ │ │ └── abstract_method_py3.txt │ │ │ │ │ │ ├── access │ │ │ │ │ │ │ ├── access_attr_before_def_false_positive.py │ │ │ │ │ │ │ ├── access_member_before_definition.py │ │ │ │ │ │ │ ├── access_member_before_definition.txt │ │ │ │ │ │ │ ├── access_to__name__.py │ │ │ │ │ │ │ ├── access_to__name__.txt │ │ │ │ │ │ │ ├── access_to_protected_members.py │ │ │ │ │ │ │ └── access_to_protected_members.txt │ │ │ │ │ │ ├── alternative_union_syntax.py │ │ │ │ │ │ ├── alternative_union_syntax.rc │ │ │ │ │ │ ├── alternative_union_syntax_error.py │ │ │ │ │ │ ├── alternative_union_syntax_error.rc │ │ │ │ │ │ ├── alternative_union_syntax_error.txt │ │ │ │ │ │ ├── alternative_union_syntax_py37.py │ │ │ │ │ │ ├── alternative_union_syntax_py37.rc │ │ │ │ │ │ ├── alternative_union_syntax_py37.txt │ │ │ │ │ │ ├── anomalous_backslash_escape.py │ │ │ │ │ │ ├── anomalous_backslash_escape.txt │ │ │ │ │ │ ├── anomalous_unicode_escape_py3.py │ │ │ │ │ │ ├── anomalous_unicode_escape_py3.rc │ │ │ │ │ │ ├── anomalous_unicode_escape_py3.txt │ │ │ │ │ │ ├── arguments.py │ │ │ │ │ │ ├── arguments.rc │ │ │ │ │ │ ├── arguments.txt │ │ │ │ │ │ ├── arguments_differ.py │ │ │ │ │ │ ├── arguments_differ.txt │ │ │ │ │ │ ├── arguments_differ_py3.py │ │ │ │ │ │ ├── arguments_differ_py3.rc │ │ │ │ │ │ ├── arguments_differ_py3.txt │ │ │ │ │ │ ├── arguments_out_of_order.py │ │ │ │ │ │ ├── arguments_out_of_order.txt │ │ │ │ │ │ ├── assert_on_string_literal.py │ │ │ │ │ │ ├── assert_on_string_literal.txt │ │ │ │ │ │ ├── assert_on_tuple.py │ │ │ │ │ │ ├── assert_on_tuple.txt │ │ │ │ │ │ ├── assigment_from_no_return.py │ │ │ │ │ │ ├── assigment_from_no_return.txt │ │ │ │ │ │ ├── assigning_non_slot.py │ │ │ │ │ │ ├── assigning_non_slot.txt │ │ │ │ │ │ ├── assignment_expression.py │ │ │ │ │ │ ├── assignment_expression.rc │ │ │ │ │ │ ├── assignment_expression.txt │ │ │ │ │ │ ├── assignment_from_no_return.py │ │ │ │ │ │ ├── assignment_from_no_return.txt │ │ │ │ │ │ ├── assignment_from_no_return_py3.py │ │ │ │ │ │ ├── assignment_from_no_return_py3.rc │ │ │ │ │ │ ├── async_functions.py │ │ │ │ │ │ ├── async_functions.rc │ │ │ │ │ │ ├── async_functions.txt │ │ │ │ │ │ ├── attribute_defined_outside_init.py │ │ │ │ │ │ └── attribute_defined_outside_init.txt │ │ │ │ │ ├── b │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bad_builtins.py │ │ │ │ │ │ ├── bad_builtins.rc │ │ │ │ │ │ ├── bad_builtins.txt │ │ │ │ │ │ ├── bad_except_order.py │ │ │ │ │ │ ├── bad_except_order.txt │ │ │ │ │ │ ├── bad_exception_context.py │ │ │ │ │ │ ├── bad_exception_context.rc │ │ │ │ │ │ ├── bad_exception_context.txt │ │ │ │ │ │ ├── bad_indentation.py │ │ │ │ │ │ ├── bad_indentation.txt │ │ │ │ │ │ ├── bad_inline_option.py │ │ │ │ │ │ ├── bad_inline_option.rc │ │ │ │ │ │ ├── bad_inline_option.txt │ │ │ │ │ │ ├── bad_open_mode_py3.py │ │ │ │ │ │ ├── bad_open_mode_py3.rc │ │ │ │ │ │ ├── bad_open_mode_py3.txt │ │ │ │ │ │ ├── bad_option_value.py │ │ │ │ │ │ ├── bad_option_value.txt │ │ │ │ │ │ ├── bad_reversed_sequence.py │ │ │ │ │ │ ├── bad_reversed_sequence.txt │ │ │ │ │ │ ├── bad_reversed_sequence_py37.py │ │ │ │ │ │ ├── bad_reversed_sequence_py37.rc │ │ │ │ │ │ ├── bad_reversed_sequence_py37.txt │ │ │ │ │ │ ├── bad_reversed_sequence_py38.py │ │ │ │ │ │ ├── bad_reversed_sequence_py38.rc │ │ │ │ │ │ ├── bad_staticmethod_argument.py │ │ │ │ │ │ ├── bad_staticmethod_argument.txt │ │ │ │ │ │ ├── bad_thread_instantiation.py │ │ │ │ │ │ ├── bad_thread_instantiation.txt │ │ │ │ │ │ ├── bare_except.py │ │ │ │ │ │ ├── bare_except.txt │ │ │ │ │ │ ├── base_init_vars.py │ │ │ │ │ │ ├── blacklisted_name.py │ │ │ │ │ │ ├── blacklisted_name.txt │ │ │ │ │ │ ├── broad_except.py │ │ │ │ │ │ ├── broad_except.txt │ │ │ │ │ │ ├── bugfix_local_scope_metaclass_1177.py │ │ │ │ │ │ ├── bugfix_local_scope_metaclass_1177.rc │ │ │ │ │ │ └── builtin_module_test.py │ │ │ │ │ ├── c │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cellvar_escaping_loop.py │ │ │ │ │ │ ├── cellvar_escaping_loop.txt │ │ │ │ │ │ ├── class_attributes.py │ │ │ │ │ │ ├── class_members_py30.py │ │ │ │ │ │ ├── class_members_py30.rc │ │ │ │ │ │ ├── class_members_py30.txt │ │ │ │ │ │ ├── class_members_py36.py │ │ │ │ │ │ ├── class_members_py36.rc │ │ │ │ │ │ ├── class_scope.py │ │ │ │ │ │ ├── class_scope.txt │ │ │ │ │ │ ├── class_variable_slots_conflict_exempted.py │ │ │ │ │ │ ├── class_variable_slots_conflict_exempted.rc │ │ │ │ │ │ ├── classes_meth_could_be_a_function.py │ │ │ │ │ │ ├── classes_protected_member_access.py │ │ │ │ │ │ ├── comparison_with_callable.py │ │ │ │ │ │ ├── comparison_with_callable.txt │ │ │ │ │ │ ├── condition_evals_to_constant.py │ │ │ │ │ │ ├── condition_evals_to_constant.txt │ │ │ │ │ │ ├── confidence_filter.py │ │ │ │ │ │ ├── confidence_filter.rc │ │ │ │ │ │ ├── confidence_filter.txt │ │ │ │ │ │ ├── confusing_consecutive_elif.py │ │ │ │ │ │ ├── confusing_consecutive_elif.rc │ │ │ │ │ │ ├── confusing_consecutive_elif.txt │ │ │ │ │ │ ├── confusing_with_statement.py │ │ │ │ │ │ ├── confusing_with_statement.txt │ │ │ │ │ │ ├── consider │ │ │ │ │ │ │ ├── consider_iterating_dictionary.py │ │ │ │ │ │ │ ├── consider_iterating_dictionary.txt │ │ │ │ │ │ │ ├── consider_join.py │ │ │ │ │ │ │ ├── consider_join.txt │ │ │ │ │ │ │ ├── consider_merging_isinstance.py │ │ │ │ │ │ │ ├── consider_merging_isinstance.txt │ │ │ │ │ │ │ ├── consider_swap_variables.py │ │ │ │ │ │ │ ├── consider_swap_variables.txt │ │ │ │ │ │ │ ├── consider_using_dict_comprehension.py │ │ │ │ │ │ │ ├── consider_using_dict_comprehension.txt │ │ │ │ │ │ │ ├── consider_using_enumerate.py │ │ │ │ │ │ │ ├── consider_using_enumerate.txt │ │ │ │ │ │ │ ├── consider_using_generator.py │ │ │ │ │ │ │ ├── consider_using_generator.txt │ │ │ │ │ │ │ ├── consider_using_get.py │ │ │ │ │ │ │ ├── consider_using_get.txt │ │ │ │ │ │ │ ├── consider_using_in.py │ │ │ │ │ │ │ ├── consider_using_in.txt │ │ │ │ │ │ │ ├── consider_using_min_max_builtin.py │ │ │ │ │ │ │ ├── consider_using_min_max_builtin.txt │ │ │ │ │ │ │ ├── consider_using_set_comprehension.py │ │ │ │ │ │ │ ├── consider_using_set_comprehension.txt │ │ │ │ │ │ │ ├── consider_using_sys_exit.py │ │ │ │ │ │ │ ├── consider_using_sys_exit.txt │ │ │ │ │ │ │ ├── consider_using_sys_exit_exempted.py │ │ │ │ │ │ │ ├── consider_using_sys_exit_local_scope.py │ │ │ │ │ │ │ ├── consider_using_with.py │ │ │ │ │ │ │ ├── consider_using_with.txt │ │ │ │ │ │ │ ├── consider_using_with_open.py │ │ │ │ │ │ │ ├── consider_using_with_open.rc │ │ │ │ │ │ │ └── consider_using_with_open.txt │ │ │ │ │ │ ├── continue_in_finally.py │ │ │ │ │ │ ├── continue_in_finally.rc │ │ │ │ │ │ ├── continue_in_finally.txt │ │ │ │ │ │ ├── control_pragmas.py │ │ │ │ │ │ ├── crash_missing_module_type.py │ │ │ │ │ │ ├── ctor_arguments.py │ │ │ │ │ │ └── ctor_arguments.txt │ │ │ │ │ ├── d │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── dangerous_default_value_py30.py │ │ │ │ │ │ ├── dangerous_default_value_py30.rc │ │ │ │ │ │ ├── dangerous_default_value_py30.txt │ │ │ │ │ │ ├── dataclass_with_default_factory.py │ │ │ │ │ │ ├── dataclass_with_default_factory.rc │ │ │ │ │ │ ├── decorator_scope.py │ │ │ │ │ │ ├── decorator_unused.py │ │ │ │ │ │ ├── decorator_unused.txt │ │ │ │ │ │ ├── defined_and_used_on_same_line.py │ │ │ │ │ │ ├── deprecated │ │ │ │ │ │ │ ├── deprecated_method_getmoduleinfo.py │ │ │ │ │ │ │ ├── deprecated_method_getmoduleinfo.rc │ │ │ │ │ │ │ ├── deprecated_method_getmoduleinfo.txt │ │ │ │ │ │ │ ├── deprecated_methods_py3.py │ │ │ │ │ │ │ ├── deprecated_methods_py3.rc │ │ │ │ │ │ │ ├── deprecated_methods_py3.txt │ │ │ │ │ │ │ ├── deprecated_methods_py36.py │ │ │ │ │ │ │ ├── deprecated_methods_py36.rc │ │ │ │ │ │ │ ├── deprecated_methods_py36.txt │ │ │ │ │ │ │ ├── deprecated_methods_py38.py │ │ │ │ │ │ │ ├── deprecated_methods_py38.rc │ │ │ │ │ │ │ ├── deprecated_methods_py38.txt │ │ │ │ │ │ │ ├── deprecated_module_py3.py │ │ │ │ │ │ │ ├── deprecated_module_py3.rc │ │ │ │ │ │ │ ├── deprecated_module_py3.txt │ │ │ │ │ │ │ ├── deprecated_module_py36.py │ │ │ │ │ │ │ ├── deprecated_module_py36.rc │ │ │ │ │ │ │ ├── deprecated_module_py36.txt │ │ │ │ │ │ │ ├── deprecated_module_py4.py │ │ │ │ │ │ │ ├── deprecated_module_py4.rc │ │ │ │ │ │ │ ├── deprecated_module_py4.txt │ │ │ │ │ │ │ ├── deprecated_module_uninstalled.py │ │ │ │ │ │ │ ├── deprecated_module_uninstalled.rc │ │ │ │ │ │ │ └── deprecated_module_uninstalled.txt │ │ │ │ │ │ ├── dict_iter_missing_items.py │ │ │ │ │ │ ├── dict_iter_missing_items.txt │ │ │ │ │ │ ├── disable_msg_github_issue_1389.py │ │ │ │ │ │ ├── disable_msg_github_issue_1389.rc │ │ │ │ │ │ ├── disable_ungrouped_imports.py │ │ │ │ │ │ ├── disable_ungrouped_imports.txt │ │ │ │ │ │ ├── disable_wrong_import_order.py │ │ │ │ │ │ ├── disable_wrong_import_order.txt │ │ │ │ │ │ ├── disable_wrong_import_position.py │ │ │ │ │ │ ├── disabled_msgid_in_pylintrc.py │ │ │ │ │ │ ├── disabled_msgid_in_pylintrc.rc │ │ │ │ │ │ ├── docstrings.py │ │ │ │ │ │ ├── docstrings.txt │ │ │ │ │ │ ├── dotted_ancestor.py │ │ │ │ │ │ ├── dotted_ancestor.txt │ │ │ │ │ │ ├── duplicate_argument_name.py │ │ │ │ │ │ ├── duplicate_argument_name.txt │ │ │ │ │ │ ├── duplicate_argument_name_py3.py │ │ │ │ │ │ ├── duplicate_argument_name_py3.rc │ │ │ │ │ │ ├── duplicate_argument_name_py3.txt │ │ │ │ │ │ ├── duplicate_bases.py │ │ │ │ │ │ ├── duplicate_bases.txt │ │ │ │ │ │ ├── duplicate_dict_literal_key.py │ │ │ │ │ │ ├── duplicate_dict_literal_key.txt │ │ │ │ │ │ ├── duplicate_except.py │ │ │ │ │ │ ├── duplicate_except.txt │ │ │ │ │ │ ├── duplicate_string_formatting_argument.py │ │ │ │ │ │ └── duplicate_string_formatting_argument.txt │ │ │ │ │ ├── e │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── e1101_9588_base_attr_aug_assign.py │ │ │ │ │ │ ├── eval_used.py │ │ │ │ │ │ ├── eval_used.txt │ │ │ │ │ │ ├── exception_is_binary_op.py │ │ │ │ │ │ ├── exception_is_binary_op.txt │ │ │ │ │ │ ├── excess_escapes.py │ │ │ │ │ │ ├── excess_escapes.txt │ │ │ │ │ │ ├── exec_used_py3.py │ │ │ │ │ │ ├── exec_used_py3.rc │ │ │ │ │ │ ├── exec_used_py3.txt │ │ │ │ │ │ └── external_classmethod_crash.py │ │ │ │ │ ├── f │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── f_string_without_interpolation.py │ │ │ │ │ │ ├── f_string_without_interpolation.rc │ │ │ │ │ │ ├── f_string_without_interpolation.txt │ │ │ │ │ │ ├── fallback_import_disabled.py │ │ │ │ │ │ ├── fallback_import_enabled.py │ │ │ │ │ │ ├── fallback_import_enabled.rc │ │ │ │ │ │ ├── fallback_import_enabled.txt │ │ │ │ │ │ ├── first_arg.py │ │ │ │ │ │ ├── first_arg.txt │ │ │ │ │ │ ├── fixme.py │ │ │ │ │ │ ├── fixme.rc │ │ │ │ │ │ ├── fixme.txt │ │ │ │ │ │ ├── fixme_bad_formatting_1139.py │ │ │ │ │ │ ├── fixme_bad_formatting_1139.rc │ │ │ │ │ │ ├── fixme_bad_formatting_1139.txt │ │ │ │ │ │ ├── fixture_docparams_missing.py │ │ │ │ │ │ ├── fixture_docparams_missing.rc │ │ │ │ │ │ ├── fixture_docparams_missing.txt │ │ │ │ │ │ ├── formatted_string_literal_with_if_py36.py │ │ │ │ │ │ ├── formatted_string_literal_with_if_py36.rc │ │ │ │ │ │ ├── func_disable_linebased.py │ │ │ │ │ │ ├── func_disable_linebased.txt │ │ │ │ │ │ ├── function_redefined.py │ │ │ │ │ │ ├── function_redefined.txt │ │ │ │ │ │ ├── function_redefined_2540.py │ │ │ │ │ │ ├── function_redefined_2540.rc │ │ │ │ │ │ ├── future_import.py │ │ │ │ │ │ ├── future_unicode_literals.py │ │ │ │ │ │ ├── future_unicode_literals.rc │ │ │ │ │ │ └── future_unicode_literals.txt │ │ │ │ │ ├── g │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── generated_members.py │ │ │ │ │ │ ├── generated_members.rc │ │ │ │ │ │ ├── generated_members.txt │ │ │ │ │ │ ├── generic_alias │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── generic_alias_collections.py │ │ │ │ │ │ │ ├── generic_alias_collections.rc │ │ │ │ │ │ │ ├── generic_alias_collections.txt │ │ │ │ │ │ │ ├── generic_alias_collections_py37.py │ │ │ │ │ │ │ ├── generic_alias_collections_py37.rc │ │ │ │ │ │ │ ├── generic_alias_collections_py37.txt │ │ │ │ │ │ │ ├── generic_alias_collections_py37_with_typing.py │ │ │ │ │ │ │ ├── generic_alias_collections_py37_with_typing.rc │ │ │ │ │ │ │ ├── generic_alias_collections_py37_with_typing.txt │ │ │ │ │ │ │ ├── generic_alias_mixed_py37.py │ │ │ │ │ │ │ ├── generic_alias_mixed_py37.rc │ │ │ │ │ │ │ ├── generic_alias_mixed_py37.txt │ │ │ │ │ │ │ ├── generic_alias_mixed_py39.py │ │ │ │ │ │ │ ├── generic_alias_mixed_py39.rc │ │ │ │ │ │ │ ├── generic_alias_mixed_py39.txt │ │ │ │ │ │ │ ├── generic_alias_postponed_evaluation_py37.py │ │ │ │ │ │ │ ├── generic_alias_postponed_evaluation_py37.rc │ │ │ │ │ │ │ ├── generic_alias_postponed_evaluation_py37.txt │ │ │ │ │ │ │ ├── generic_alias_related.py │ │ │ │ │ │ │ ├── generic_alias_related.rc │ │ │ │ │ │ │ ├── generic_alias_related.txt │ │ │ │ │ │ │ ├── generic_alias_related_py39.py │ │ │ │ │ │ │ ├── generic_alias_related_py39.rc │ │ │ │ │ │ │ ├── generic_alias_related_py39.txt │ │ │ │ │ │ │ ├── generic_alias_side_effects.py │ │ │ │ │ │ │ ├── generic_alias_side_effects.rc │ │ │ │ │ │ │ ├── generic_alias_side_effects.txt │ │ │ │ │ │ │ ├── generic_alias_typing.py │ │ │ │ │ │ │ ├── generic_alias_typing.rc │ │ │ │ │ │ │ └── generic_alias_typing.txt │ │ │ │ │ │ ├── genexp_in_class_scope.py │ │ │ │ │ │ ├── genexpr_variable_scope.py │ │ │ │ │ │ ├── genexpr_variable_scope.txt │ │ │ │ │ │ ├── globals.py │ │ │ │ │ │ └── globals.txt │ │ │ │ │ ├── i │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── implicit │ │ │ │ │ │ │ ├── implicit_str_concat.py │ │ │ │ │ │ │ ├── implicit_str_concat.txt │ │ │ │ │ │ │ ├── implicit_str_concat_latin1.py │ │ │ │ │ │ │ ├── implicit_str_concat_multiline.py │ │ │ │ │ │ │ ├── implicit_str_concat_multiline.rc │ │ │ │ │ │ │ ├── implicit_str_concat_multiline.txt │ │ │ │ │ │ │ └── implicit_str_concat_utf8.py │ │ │ │ │ │ ├── import_error.py │ │ │ │ │ │ ├── import_error.rc │ │ │ │ │ │ ├── import_error.txt │ │ │ │ │ │ ├── import_itself.py │ │ │ │ │ │ ├── import_itself.txt │ │ │ │ │ │ ├── inconsistent │ │ │ │ │ │ │ ├── inconsistent_mro.py │ │ │ │ │ │ │ ├── inconsistent_mro.txt │ │ │ │ │ │ │ ├── inconsistent_quotes.py │ │ │ │ │ │ │ ├── inconsistent_quotes.rc │ │ │ │ │ │ │ ├── inconsistent_quotes.txt │ │ │ │ │ │ │ ├── inconsistent_quotes2.py │ │ │ │ │ │ │ ├── inconsistent_quotes2.rc │ │ │ │ │ │ │ ├── inconsistent_quotes2.txt │ │ │ │ │ │ │ ├── inconsistent_returns.py │ │ │ │ │ │ │ ├── inconsistent_returns.rc │ │ │ │ │ │ │ └── inconsistent_returns.txt │ │ │ │ │ │ ├── inherit_non_class.py │ │ │ │ │ │ ├── inherit_non_class.txt │ │ │ │ │ │ ├── init_is_generator.py │ │ │ │ │ │ ├── init_is_generator.txt │ │ │ │ │ │ ├── init_not_called.py │ │ │ │ │ │ ├── init_not_called.txt │ │ │ │ │ │ ├── init_return_from_inner_function.py │ │ │ │ │ │ ├── init_subclass_classmethod_py36.py │ │ │ │ │ │ ├── init_subclass_classmethod_py36.rc │ │ │ │ │ │ ├── inner_classes.py │ │ │ │ │ │ ├── invalid │ │ │ │ │ │ │ ├── invalid_all_object.py │ │ │ │ │ │ │ ├── invalid_all_object.txt │ │ │ │ │ │ │ ├── invalid_bool_returned.py │ │ │ │ │ │ │ ├── invalid_bool_returned.txt │ │ │ │ │ │ │ ├── invalid_bytes_returned.py │ │ │ │ │ │ │ ├── invalid_bytes_returned.txt │ │ │ │ │ │ │ ├── invalid_envvar_value.py │ │ │ │ │ │ │ ├── invalid_envvar_value.txt │ │ │ │ │ │ │ ├── invalid_exceptions_caught.py │ │ │ │ │ │ │ ├── invalid_exceptions_caught.rc │ │ │ │ │ │ │ ├── invalid_exceptions_caught.txt │ │ │ │ │ │ │ ├── invalid_exceptions_raised.py │ │ │ │ │ │ │ ├── invalid_exceptions_raised.txt │ │ │ │ │ │ │ ├── invalid_format_returned.py │ │ │ │ │ │ │ ├── invalid_format_returned.txt │ │ │ │ │ │ │ ├── invalid_getnewargs_ex_returned.py │ │ │ │ │ │ │ ├── invalid_getnewargs_ex_returned.txt │ │ │ │ │ │ │ ├── invalid_getnewargs_returned.py │ │ │ │ │ │ │ ├── invalid_getnewargs_returned.txt │ │ │ │ │ │ │ ├── invalid_hash_returned.py │ │ │ │ │ │ │ ├── invalid_hash_returned.txt │ │ │ │ │ │ │ ├── invalid_index_returned.py │ │ │ │ │ │ │ ├── invalid_index_returned.txt │ │ │ │ │ │ │ ├── invalid_length_hint_returned.py │ │ │ │ │ │ │ ├── invalid_length_hint_returned.txt │ │ │ │ │ │ │ ├── invalid_length_returned.py │ │ │ │ │ │ │ ├── invalid_length_returned.txt │ │ │ │ │ │ │ ├── invalid_metaclass.py │ │ │ │ │ │ │ ├── invalid_metaclass_py3.py │ │ │ │ │ │ │ ├── invalid_metaclass_py3.rc │ │ │ │ │ │ │ ├── invalid_name.py │ │ │ │ │ │ │ ├── invalid_name.txt │ │ │ │ │ │ │ ├── invalid_overridden_method.py │ │ │ │ │ │ │ ├── invalid_overridden_method.txt │ │ │ │ │ │ │ ├── invalid_repr_returned.py │ │ │ │ │ │ │ ├── invalid_repr_returned.txt │ │ │ │ │ │ │ ├── invalid_sequence_index.py │ │ │ │ │ │ │ ├── invalid_sequence_index.txt │ │ │ │ │ │ │ ├── invalid_slice_index.py │ │ │ │ │ │ │ ├── invalid_slice_index.txt │ │ │ │ │ │ │ ├── invalid_star_assignment_target.py │ │ │ │ │ │ │ ├── invalid_star_assignment_target.rc │ │ │ │ │ │ │ ├── invalid_star_assignment_target.txt │ │ │ │ │ │ │ ├── invalid_str_returned.py │ │ │ │ │ │ │ ├── invalid_str_returned.txt │ │ │ │ │ │ │ ├── invalid_unary_operand_type.py │ │ │ │ │ │ │ └── invalid_unary_operand_type.txt │ │ │ │ │ │ ├── isinstance_second_argument.py │ │ │ │ │ │ ├── isinstance_second_argument.txt │ │ │ │ │ │ ├── iterable_context.py │ │ │ │ │ │ ├── iterable_context.txt │ │ │ │ │ │ ├── iterable_context_py3.py │ │ │ │ │ │ ├── iterable_context_py3.rc │ │ │ │ │ │ ├── iterable_context_py3.txt │ │ │ │ │ │ ├── iterable_context_py36.py │ │ │ │ │ │ ├── iterable_context_py36.rc │ │ │ │ │ │ └── iterable_context_py36.txt │ │ │ │ │ ├── import_outside_toplevel.py │ │ │ │ │ ├── import_outside_toplevel.txt │ │ │ │ │ ├── k │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── keyword_arg_before_vararg.py │ │ │ │ │ │ └── keyword_arg_before_vararg.txt │ │ │ │ │ ├── l │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── lambda_use_before_assign.py │ │ │ │ │ │ ├── len_checks.py │ │ │ │ │ │ ├── len_checks.txt │ │ │ │ │ │ ├── line_endings.py │ │ │ │ │ │ ├── line_endings.rc │ │ │ │ │ │ ├── line_endings.txt │ │ │ │ │ │ ├── line_too_long.py │ │ │ │ │ │ ├── line_too_long.txt │ │ │ │ │ │ ├── line_too_long_end_of_module.py │ │ │ │ │ │ ├── literal_comparison.py │ │ │ │ │ │ ├── literal_comparison.txt │ │ │ │ │ │ ├── logging_format_interpolation.py │ │ │ │ │ │ ├── logging_format_interpolation.txt │ │ │ │ │ │ ├── logging_format_interpolation_py36.py │ │ │ │ │ │ ├── logging_format_interpolation_py36.rc │ │ │ │ │ │ ├── logging_format_interpolation_py36.txt │ │ │ │ │ │ ├── logging_fstring_interpolation_py36.py │ │ │ │ │ │ ├── logging_fstring_interpolation_py36.rc │ │ │ │ │ │ ├── logging_fstring_interpolation_py36.txt │ │ │ │ │ │ ├── logging_not_lazy.py │ │ │ │ │ │ ├── logging_not_lazy.txt │ │ │ │ │ │ ├── logging_not_lazy_with_logger.py │ │ │ │ │ │ ├── logging_not_lazy_with_logger.txt │ │ │ │ │ │ ├── logical_tautology.py │ │ │ │ │ │ ├── logical_tautology.txt │ │ │ │ │ │ ├── long_lines_with_utf8.py │ │ │ │ │ │ ├── long_lines_with_utf8.txt │ │ │ │ │ │ ├── long_utf8_lines.py │ │ │ │ │ │ ├── loopvar_in_dict_comp_py27.py │ │ │ │ │ │ ├── loopvar_in_dict_comp_py27.txt │ │ │ │ │ │ ├── lost_exception.py │ │ │ │ │ │ └── lost_exception.txt │ │ │ │ │ ├── m │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── mapping_context.py │ │ │ │ │ │ ├── mapping_context.txt │ │ │ │ │ │ ├── mapping_context_py3.py │ │ │ │ │ │ ├── mapping_context_py3.rc │ │ │ │ │ │ ├── mapping_context_py3.txt │ │ │ │ │ │ ├── member │ │ │ │ │ │ │ ├── member_checks.py │ │ │ │ │ │ │ ├── member_checks.txt │ │ │ │ │ │ │ ├── member_checks_hints.py │ │ │ │ │ │ │ ├── member_checks_hints.rc │ │ │ │ │ │ │ ├── member_checks_hints.txt │ │ │ │ │ │ │ ├── member_checks_ignore_none.py │ │ │ │ │ │ │ ├── member_checks_ignore_none.rc │ │ │ │ │ │ │ ├── member_checks_ignore_none.txt │ │ │ │ │ │ │ ├── member_checks_inference_improvements.py │ │ │ │ │ │ │ ├── member_checks_no_hints.py │ │ │ │ │ │ │ ├── member_checks_no_hints.rc │ │ │ │ │ │ │ ├── member_checks_no_hints.txt │ │ │ │ │ │ │ ├── member_checks_opaque.py │ │ │ │ │ │ │ ├── member_checks_opaque.rc │ │ │ │ │ │ │ ├── member_checks_opaque.txt │ │ │ │ │ │ │ ├── member_checks_py37.py │ │ │ │ │ │ │ ├── member_checks_py37.rc │ │ │ │ │ │ │ ├── member_checks_py37.txt │ │ │ │ │ │ │ ├── member_checks_typed_annotations.py │ │ │ │ │ │ │ ├── member_checks_typed_annotations.txt │ │ │ │ │ │ │ ├── membership_protocol.py │ │ │ │ │ │ │ ├── membership_protocol.txt │ │ │ │ │ │ │ ├── membership_protocol_py3.py │ │ │ │ │ │ │ ├── membership_protocol_py3.rc │ │ │ │ │ │ │ └── membership_protocol_py3.txt │ │ │ │ │ │ ├── metaclass_attr_access.py │ │ │ │ │ │ ├── method_hidden.py │ │ │ │ │ │ ├── method_hidden.txt │ │ │ │ │ │ ├── misplaced_bare_raise.py │ │ │ │ │ │ ├── misplaced_bare_raise.txt │ │ │ │ │ │ ├── misplaced_comparison_constant.py │ │ │ │ │ │ ├── misplaced_comparison_constant.txt │ │ │ │ │ │ ├── misplaced_format_function.py │ │ │ │ │ │ ├── misplaced_format_function.txt │ │ │ │ │ │ ├── misplaced_future.py │ │ │ │ │ │ ├── misplaced_future.txt │ │ │ │ │ │ ├── missing │ │ │ │ │ │ │ ├── missing_docstring.py │ │ │ │ │ │ │ ├── missing_docstring.txt │ │ │ │ │ │ │ ├── missing_docstring_new_style.py │ │ │ │ │ │ │ ├── missing_docstring_new_style.txt │ │ │ │ │ │ │ ├── missing_final_newline.py │ │ │ │ │ │ │ ├── missing_final_newline.txt │ │ │ │ │ │ │ ├── missing_kwoa_py3.py │ │ │ │ │ │ │ ├── missing_kwoa_py3.rc │ │ │ │ │ │ │ ├── missing_kwoa_py3.txt │ │ │ │ │ │ │ ├── missing_module_docstring_disabled.py │ │ │ │ │ │ │ ├── missing_parentheses_for_call_in_test.py │ │ │ │ │ │ │ ├── missing_parentheses_for_call_in_test.txt │ │ │ │ │ │ │ ├── missing_self_argument.py │ │ │ │ │ │ │ └── missing_self_argument.txt │ │ │ │ │ │ ├── module___dict__.py │ │ │ │ │ │ ├── module___dict__.txt │ │ │ │ │ │ ├── monkeypatch_method.py │ │ │ │ │ │ ├── multiple_imports.py │ │ │ │ │ │ └── multiple_imports.txt │ │ │ │ │ ├── n │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── namePresetCamelCase.py │ │ │ │ │ │ │ ├── namePresetCamelCase.rc │ │ │ │ │ │ │ ├── namePresetCamelCase.txt │ │ │ │ │ │ │ ├── name_final.py │ │ │ │ │ │ │ ├── name_final.rc │ │ │ │ │ │ │ ├── name_final.txt │ │ │ │ │ │ │ ├── name_final_snake_case.py │ │ │ │ │ │ │ ├── name_final_snake_case.rc │ │ │ │ │ │ │ ├── name_final_snake_case.txt │ │ │ │ │ │ │ ├── name_good_bad_names_regex.py │ │ │ │ │ │ │ ├── name_good_bad_names_regex.rc │ │ │ │ │ │ │ ├── name_good_bad_names_regex.txt │ │ │ │ │ │ │ ├── name_preset_snake_case.py │ │ │ │ │ │ │ ├── name_preset_snake_case.rc │ │ │ │ │ │ │ ├── name_preset_snake_case.txt │ │ │ │ │ │ │ ├── name_styles.py │ │ │ │ │ │ │ ├── name_styles.rc │ │ │ │ │ │ │ ├── name_styles.txt │ │ │ │ │ │ │ ├── namedtuple_member_inference.py │ │ │ │ │ │ │ ├── namedtuple_member_inference.txt │ │ │ │ │ │ │ ├── names_in__all__.py │ │ │ │ │ │ │ └── names_in__all__.txt │ │ │ │ │ │ ├── nan_comparison_check.py │ │ │ │ │ │ ├── nan_comparison_check.txt │ │ │ │ │ │ ├── nested_blocks_issue1088.py │ │ │ │ │ │ ├── nested_blocks_issue1088.txt │ │ │ │ │ │ ├── nested_func_defined_in_loop.py │ │ │ │ │ │ ├── nested_func_defined_in_loop.txt │ │ │ │ │ │ ├── new_style_class_py_30.py │ │ │ │ │ │ ├── new_style_class_py_30.txt │ │ │ │ │ │ ├── no │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── no_classmethod_decorator.py │ │ │ │ │ │ │ ├── no_classmethod_decorator.txt │ │ │ │ │ │ │ ├── no_dummy_redefined.py │ │ │ │ │ │ │ ├── no_dummy_redefined.txt │ │ │ │ │ │ │ ├── no_else_break.py │ │ │ │ │ │ │ ├── no_else_break.txt │ │ │ │ │ │ │ ├── no_else_continue.py │ │ │ │ │ │ │ ├── no_else_continue.txt │ │ │ │ │ │ │ ├── no_else_raise.py │ │ │ │ │ │ │ ├── no_else_raise.txt │ │ │ │ │ │ │ ├── no_else_return.py │ │ │ │ │ │ │ ├── no_else_return.txt │ │ │ │ │ │ │ ├── no_method_argument_py38.py │ │ │ │ │ │ │ ├── no_method_argument_py38.rc │ │ │ │ │ │ │ ├── no_name_in_module.py │ │ │ │ │ │ │ ├── no_name_in_module.txt │ │ │ │ │ │ │ ├── no_self_argument.py │ │ │ │ │ │ │ ├── no_self_argument.txt │ │ │ │ │ │ │ ├── no_self_argument_py37.py │ │ │ │ │ │ │ ├── no_self_argument_py37.rc │ │ │ │ │ │ │ ├── no_self_argument_py37.txt │ │ │ │ │ │ │ ├── no_self_use.py │ │ │ │ │ │ │ ├── no_self_use.txt │ │ │ │ │ │ │ ├── no_self_use_py3.py │ │ │ │ │ │ │ ├── no_self_use_py3.rc │ │ │ │ │ │ │ ├── no_staticmethod_decorator.py │ │ │ │ │ │ │ ├── no_staticmethod_decorator.txt │ │ │ │ │ │ │ └── no_warning_docstring.py │ │ │ │ │ │ ├── non │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── non_ascii_name.py │ │ │ │ │ │ │ ├── non_ascii_name.rc │ │ │ │ │ │ │ ├── non_ascii_name.txt │ │ │ │ │ │ │ ├── non_init_parent_called.py │ │ │ │ │ │ │ ├── non_init_parent_called.txt │ │ │ │ │ │ │ ├── non_iterator_returned.py │ │ │ │ │ │ │ ├── non_iterator_returned.txt │ │ │ │ │ │ │ ├── non_str_assignment_to_dunder_name.py │ │ │ │ │ │ │ └── non_str_assignment_to_dunder_name.txt │ │ │ │ │ │ ├── none_dunder_protocols_py36.py │ │ │ │ │ │ ├── none_dunder_protocols_py36.rc │ │ │ │ │ │ ├── none_dunder_protocols_py36.txt │ │ │ │ │ │ ├── nonexistent_operator.py │ │ │ │ │ │ ├── nonexistent_operator.txt │ │ │ │ │ │ ├── nonlocal_and_global.py │ │ │ │ │ │ ├── nonlocal_and_global.rc │ │ │ │ │ │ ├── nonlocal_and_global.txt │ │ │ │ │ │ ├── nonlocal_without_binding.py │ │ │ │ │ │ ├── nonlocal_without_binding.rc │ │ │ │ │ │ ├── nonlocal_without_binding.txt │ │ │ │ │ │ ├── not_async_context_manager.py │ │ │ │ │ │ ├── not_async_context_manager.rc │ │ │ │ │ │ ├── not_async_context_manager.txt │ │ │ │ │ │ ├── not_async_context_manager_py37.py │ │ │ │ │ │ ├── not_async_context_manager_py37.rc │ │ │ │ │ │ ├── not_callable.py │ │ │ │ │ │ ├── not_callable.txt │ │ │ │ │ │ ├── not_context_manager.py │ │ │ │ │ │ ├── not_context_manager.txt │ │ │ │ │ │ ├── not_in_loop.py │ │ │ │ │ │ └── not_in_loop.txt │ │ │ │ │ ├── o │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── object_as_class_attribute.py │ │ │ │ │ │ ├── old_division_floats.py │ │ │ │ │ │ ├── old_division_floats.rc │ │ │ │ │ │ ├── old_division_manually.py │ │ │ │ │ │ ├── old_division_manually.rc │ │ │ │ │ │ └── overloaded_operator.py │ │ │ │ │ ├── p │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── postponed_evaluation_activated.py │ │ │ │ │ │ ├── postponed_evaluation_activated.rc │ │ │ │ │ │ ├── postponed_evaluation_activated_with_alias.py │ │ │ │ │ │ ├── postponed_evaluation_activated_with_alias.rc │ │ │ │ │ │ ├── postponed_evaluation_not_activated.py │ │ │ │ │ │ ├── postponed_evaluation_not_activated.rc │ │ │ │ │ │ ├── postponed_evaluation_not_activated.txt │ │ │ │ │ │ ├── postponed_evaluation_pep585.py │ │ │ │ │ │ ├── postponed_evaluation_pep585.rc │ │ │ │ │ │ ├── postponed_evaluation_pep585.txt │ │ │ │ │ │ ├── postponed_evaluation_pep585_error.py │ │ │ │ │ │ ├── postponed_evaluation_pep585_error.rc │ │ │ │ │ │ ├── postponed_evaluation_pep585_error.txt │ │ │ │ │ │ ├── postponed_evaluation_pep585_py39.py │ │ │ │ │ │ ├── postponed_evaluation_pep585_py39.rc │ │ │ │ │ │ ├── postponed_evaluation_pep585_py39.txt │ │ │ │ │ │ ├── pragma_after_backslash.py │ │ │ │ │ │ ├── preferred_module.py │ │ │ │ │ │ ├── preferred_module.rc │ │ │ │ │ │ ├── preferred_module.txt │ │ │ │ │ │ ├── property_affectation_py26.py │ │ │ │ │ │ ├── property_with_parameters.py │ │ │ │ │ │ ├── property_with_parameters.txt │ │ │ │ │ │ ├── protected_access_access_different_scopes.py │ │ │ │ │ │ ├── protected_access_access_different_scopes.rc │ │ │ │ │ │ ├── protected_access_access_different_scopes.txt │ │ │ │ │ │ ├── protocol_classes.py │ │ │ │ │ │ ├── protocol_classes.rc │ │ │ │ │ │ └── protocol_classes.txt │ │ │ │ │ ├── r │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── raise │ │ │ │ │ │ │ ├── raise_missing_from.py │ │ │ │ │ │ │ ├── raise_missing_from.txt │ │ │ │ │ │ │ ├── raising_format_tuple.py │ │ │ │ │ │ │ ├── raising_format_tuple.txt │ │ │ │ │ │ │ ├── raising_non_exception_py3.py │ │ │ │ │ │ │ ├── raising_non_exception_py3.rc │ │ │ │ │ │ │ ├── raising_non_exception_py3.txt │ │ │ │ │ │ │ └── raising_self.py │ │ │ │ │ │ ├── recursion │ │ │ │ │ │ │ ├── recursion_error_2667.py │ │ │ │ │ │ │ ├── recursion_error_2836.py │ │ │ │ │ │ │ ├── recursion_error_2861.py │ │ │ │ │ │ │ ├── recursion_error_2899.py │ │ │ │ │ │ │ ├── recursion_error_2906.py │ │ │ │ │ │ │ ├── recursion_error_3152.py │ │ │ │ │ │ │ ├── recursion_error_3159.py │ │ │ │ │ │ │ ├── recursion_error_940.py │ │ │ │ │ │ │ ├── recursion_error_crash.py │ │ │ │ │ │ │ ├── recursion_error_crash_2683.py │ │ │ │ │ │ │ ├── recursion_error_crash_astroid_623.py │ │ │ │ │ │ │ └── recursion_regression_2960.py │ │ │ │ │ │ ├── redeclared_assigned_name.py │ │ │ │ │ │ ├── redeclared_assigned_name.rc │ │ │ │ │ │ ├── redeclared_assigned_name.txt │ │ │ │ │ │ ├── redefine_loop.py │ │ │ │ │ │ ├── redefine_loop.txt │ │ │ │ │ │ ├── redefined_argument_from_local.py │ │ │ │ │ │ ├── redefined_argument_from_local.txt │ │ │ │ │ │ ├── redefined_builtin.py │ │ │ │ │ │ ├── redefined_builtin.txt │ │ │ │ │ │ ├── redefined_builtin_allowed.py │ │ │ │ │ │ ├── redefined_builtin_allowed.rc │ │ │ │ │ │ ├── redefined_builtin_allowed.txt │ │ │ │ │ │ ├── redefined_outer_name_type_checking.py │ │ │ │ │ │ ├── redefined_outer_name_type_checking.rc │ │ │ │ │ │ ├── redundant_unittest_assert.py │ │ │ │ │ │ ├── redundant_unittest_assert.txt │ │ │ │ │ │ ├── regression │ │ │ │ │ │ │ ├── regression_1326_crash_uninferable.py │ │ │ │ │ │ │ ├── regression_2443_duplicate_bases.py │ │ │ │ │ │ │ ├── regression_2443_duplicate_bases.rc │ │ │ │ │ │ │ ├── regression_2937_ifexp.py │ │ │ │ │ │ │ ├── regression_3091.py │ │ │ │ │ │ │ ├── regression_3231_no_member_property.py │ │ │ │ │ │ │ ├── regression_3416_unused_argument_raise.py │ │ │ │ │ │ │ ├── regression_3416_unused_argument_raise.txt │ │ │ │ │ │ │ ├── regression___file___global.py │ │ │ │ │ │ │ ├── regression___file___global.txt │ │ │ │ │ │ │ ├── regression_infer_call_result_3690.py │ │ │ │ │ │ │ ├── regression_infer_call_result_3690.txt │ │ │ │ │ │ │ ├── regression_no_member_1078.py │ │ │ │ │ │ │ ├── regression_no_value_for_parameter.py │ │ │ │ │ │ │ ├── regression_posonly_args.py │ │ │ │ │ │ │ ├── regression_posonly_args.rc │ │ │ │ │ │ │ ├── regression_property_no_member_2641.py │ │ │ │ │ │ │ ├── regression_property_no_member_3269.py │ │ │ │ │ │ │ ├── regression_property_no_member_844.py │ │ │ │ │ │ │ ├── regression_property_no_member_870.py │ │ │ │ │ │ │ ├── regression_property_slots_2439.py │ │ │ │ │ │ │ └── regression_too_many_arguments_2335.py │ │ │ │ │ │ ├── reimport.py │ │ │ │ │ │ ├── reimport.txt │ │ │ │ │ │ ├── reimported.py │ │ │ │ │ │ ├── reimported.txt │ │ │ │ │ │ ├── renamed_import_logging_not_lazy.py │ │ │ │ │ │ ├── renamed_import_logging_not_lazy.txt │ │ │ │ │ │ ├── repeated_keyword.py │ │ │ │ │ │ ├── repeated_keyword.txt │ │ │ │ │ │ ├── return_in_init.py │ │ │ │ │ │ ├── return_in_init.txt │ │ │ │ │ │ ├── return_outside_function.py │ │ │ │ │ │ ├── return_outside_function.txt │ │ │ │ │ │ ├── reused_outer_loop_variable.py │ │ │ │ │ │ ├── reused_outer_loop_variable.txt │ │ │ │ │ │ ├── reused_outer_loop_variable_py3.py │ │ │ │ │ │ ├── reused_outer_loop_variable_py3.rc │ │ │ │ │ │ └── reused_outer_loop_variable_py3.txt │ │ │ │ │ ├── s │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── self │ │ │ │ │ │ │ ├── self_assigning_variable.py │ │ │ │ │ │ │ ├── self_assigning_variable.txt │ │ │ │ │ │ │ ├── self_cls_assignment.py │ │ │ │ │ │ │ └── self_cls_assignment.txt │ │ │ │ │ │ ├── signature_differs.py │ │ │ │ │ │ ├── signature_differs.txt │ │ │ │ │ │ ├── simplifiable │ │ │ │ │ │ │ ├── simplifiable_condition.py │ │ │ │ │ │ │ ├── simplifiable_condition.txt │ │ │ │ │ │ │ ├── simplifiable_if_expression.py │ │ │ │ │ │ │ ├── simplifiable_if_expression.txt │ │ │ │ │ │ │ ├── simplifiable_if_statement.py │ │ │ │ │ │ │ ├── simplifiable_if_statement.txt │ │ │ │ │ │ │ ├── simplify_chained_comparison.py │ │ │ │ │ │ │ └── simplify_chained_comparison.txt │ │ │ │ │ │ ├── singledispatch_functions_py3.py │ │ │ │ │ │ ├── singledispatch_functions_py3.rc │ │ │ │ │ │ ├── singledispatch_functions_py3.txt │ │ │ │ │ │ ├── singleton_comparison.py │ │ │ │ │ │ ├── singleton_comparison.txt │ │ │ │ │ │ ├── slots_checks.py │ │ │ │ │ │ ├── slots_checks.txt │ │ │ │ │ │ ├── socketerror_import.py │ │ │ │ │ │ ├── star │ │ │ │ │ │ │ ├── star_needs_assignment_target.py │ │ │ │ │ │ │ ├── star_needs_assignment_target.rc │ │ │ │ │ │ │ ├── star_needs_assignment_target.txt │ │ │ │ │ │ │ ├── star_needs_assignment_target_py35.py │ │ │ │ │ │ │ ├── star_needs_assignment_target_py35.rc │ │ │ │ │ │ │ └── star_needs_assignment_target_py35.txt │ │ │ │ │ │ ├── statement_without_effect.py │ │ │ │ │ │ ├── statement_without_effect.txt │ │ │ │ │ │ ├── statement_without_effect_py36.py │ │ │ │ │ │ ├── statement_without_effect_py36.rc │ │ │ │ │ │ ├── statement_without_effect_py36.txt │ │ │ │ │ │ ├── stop_iteration_inside_generator.py │ │ │ │ │ │ ├── stop_iteration_inside_generator.rc │ │ │ │ │ │ ├── stop_iteration_inside_generator.txt │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── string_formatting.py │ │ │ │ │ │ │ ├── string_formatting.txt │ │ │ │ │ │ │ ├── string_formatting_disable.py │ │ │ │ │ │ │ ├── string_formatting_disable.rc │ │ │ │ │ │ │ ├── string_formatting_disable.txt │ │ │ │ │ │ │ ├── string_formatting_error.py │ │ │ │ │ │ │ ├── string_formatting_error.txt │ │ │ │ │ │ │ ├── string_formatting_failed_inference.py │ │ │ │ │ │ │ ├── string_formatting_failed_inference_py35.py │ │ │ │ │ │ │ ├── string_formatting_failed_inference_py35.rc │ │ │ │ │ │ │ ├── string_formatting_py3.py │ │ │ │ │ │ │ ├── string_formatting_py3.rc │ │ │ │ │ │ │ ├── string_formatting_py3.txt │ │ │ │ │ │ │ ├── string_log_formatting.py │ │ │ │ │ │ │ └── string_log_formatting.txt │ │ │ │ │ │ ├── subprocess_popen_preexec_fn.py │ │ │ │ │ │ ├── subprocess_popen_preexec_fn.txt │ │ │ │ │ │ ├── subprocess_run_check35.py │ │ │ │ │ │ ├── subprocess_run_check35.rc │ │ │ │ │ │ ├── subprocess_run_check35.txt │ │ │ │ │ │ ├── super │ │ │ │ │ │ │ ├── super_checks.py │ │ │ │ │ │ │ ├── super_checks.txt │ │ │ │ │ │ │ ├── super_with_arguments.py │ │ │ │ │ │ │ ├── super_with_arguments.rc │ │ │ │ │ │ │ └── super_with_arguments.txt │ │ │ │ │ │ ├── superfluous_parens.py │ │ │ │ │ │ ├── superfluous_parens.txt │ │ │ │ │ │ ├── suspicious_str_strip_call_py3.py │ │ │ │ │ │ ├── suspicious_str_strip_call_py3.rc │ │ │ │ │ │ ├── suspicious_str_strip_call_py3.txt │ │ │ │ │ │ ├── syntax_error.py │ │ │ │ │ │ ├── syntax_error.rc │ │ │ │ │ │ ├── syntax_error.txt │ │ │ │ │ │ ├── syntax_error_jython.py │ │ │ │ │ │ ├── syntax_error_jython.rc │ │ │ │ │ │ ├── syntax_error_jython.txt │ │ │ │ │ │ ├── sys_stream_regression_1004.py │ │ │ │ │ │ ├── sys_stream_regression_1004.rc │ │ │ │ │ │ └── sys_stream_regression_1004.txt │ │ │ │ │ ├── t │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ternary.py │ │ │ │ │ │ ├── ternary.txt │ │ │ │ │ │ ├── test_compile.py │ │ │ │ │ │ ├── tokenize_error.py │ │ │ │ │ │ ├── tokenize_error.rc │ │ │ │ │ │ ├── tokenize_error.txt │ │ │ │ │ │ ├── tokenize_error_jython.py │ │ │ │ │ │ ├── tokenize_error_jython.rc │ │ │ │ │ │ ├── tokenize_error_jython.txt │ │ │ │ │ │ ├── too │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── too_few_public_methods.py │ │ │ │ │ │ │ ├── too_few_public_methods.txt │ │ │ │ │ │ │ ├── too_few_public_methods_37.py │ │ │ │ │ │ │ ├── too_few_public_methods_37.rc │ │ │ │ │ │ │ ├── too_many_ancestors.py │ │ │ │ │ │ │ ├── too_many_ancestors.txt │ │ │ │ │ │ │ ├── too_many_arguments.py │ │ │ │ │ │ │ ├── too_many_arguments.txt │ │ │ │ │ │ │ ├── too_many_arguments_issue_1045.py │ │ │ │ │ │ │ ├── too_many_arguments_issue_1045.rc │ │ │ │ │ │ │ ├── too_many_arguments_overload.py │ │ │ │ │ │ │ ├── too_many_boolean_expressions.py │ │ │ │ │ │ │ ├── too_many_boolean_expressions.txt │ │ │ │ │ │ │ ├── too_many_branches.py │ │ │ │ │ │ │ ├── too_many_branches.txt │ │ │ │ │ │ │ ├── too_many_instance_attributes.py │ │ │ │ │ │ │ ├── too_many_instance_attributes.txt │ │ │ │ │ │ │ ├── too_many_lines.py │ │ │ │ │ │ │ ├── too_many_lines.txt │ │ │ │ │ │ │ ├── too_many_lines_disabled.py │ │ │ │ │ │ │ ├── too_many_locals.py │ │ │ │ │ │ │ ├── too_many_locals.txt │ │ │ │ │ │ │ ├── too_many_nested_blocks.py │ │ │ │ │ │ │ ├── too_many_nested_blocks.txt │ │ │ │ │ │ │ ├── too_many_public_methods.py │ │ │ │ │ │ │ ├── too_many_public_methods.txt │ │ │ │ │ │ │ ├── too_many_return_statements.py │ │ │ │ │ │ │ ├── too_many_return_statements.txt │ │ │ │ │ │ │ ├── too_many_star_expressions.py │ │ │ │ │ │ │ ├── too_many_star_expressions.rc │ │ │ │ │ │ │ ├── too_many_star_expressions.txt │ │ │ │ │ │ │ ├── too_many_statements.py │ │ │ │ │ │ │ └── too_many_statements.txt │ │ │ │ │ │ ├── trailing_comma_tuple.py │ │ │ │ │ │ ├── trailing_comma_tuple.rc │ │ │ │ │ │ ├── trailing_comma_tuple.txt │ │ │ │ │ │ ├── trailing_newlines.py │ │ │ │ │ │ ├── trailing_newlines.txt │ │ │ │ │ │ ├── trailing_whitespaces.py │ │ │ │ │ │ ├── trailing_whitespaces.txt │ │ │ │ │ │ ├── try_except_raise.py │ │ │ │ │ │ ├── try_except_raise.txt │ │ │ │ │ │ ├── try_except_raise_crash.py │ │ │ │ │ │ ├── try_except_raise_crash.rc │ │ │ │ │ │ ├── try_except_raise_crash.txt │ │ │ │ │ │ ├── typedDict.py │ │ │ │ │ │ ├── typedDict.rc │ │ │ │ │ │ ├── typing │ │ │ │ │ │ │ ├── typing_consider_using_alias.py │ │ │ │ │ │ │ ├── typing_consider_using_alias.rc │ │ │ │ │ │ │ ├── typing_consider_using_alias.txt │ │ │ │ │ │ │ ├── typing_consider_using_alias_without_future.py │ │ │ │ │ │ │ ├── typing_consider_using_alias_without_future.rc │ │ │ │ │ │ │ ├── typing_consider_using_alias_without_future.txt │ │ │ │ │ │ │ ├── typing_consider_using_union.py │ │ │ │ │ │ │ ├── typing_consider_using_union.rc │ │ │ │ │ │ │ ├── typing_consider_using_union.txt │ │ │ │ │ │ │ ├── typing_consider_using_union_py310.py │ │ │ │ │ │ │ ├── typing_consider_using_union_py310.rc │ │ │ │ │ │ │ ├── typing_consider_using_union_py310.txt │ │ │ │ │ │ │ ├── typing_consider_using_union_without_future.py │ │ │ │ │ │ │ ├── typing_consider_using_union_without_future.rc │ │ │ │ │ │ │ ├── typing_consider_using_union_without_future.txt │ │ │ │ │ │ │ ├── typing_deprecated_alias.py │ │ │ │ │ │ │ ├── typing_deprecated_alias.rc │ │ │ │ │ │ │ └── typing_deprecated_alias.txt │ │ │ │ │ │ ├── typing_generic.py │ │ │ │ │ │ ├── typing_generic.rc │ │ │ │ │ │ ├── typing_use.py │ │ │ │ │ │ ├── typing_use.rc │ │ │ │ │ │ └── typing_use.txt │ │ │ │ │ ├── u │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── unbalanced_tuple_unpacking.py │ │ │ │ │ │ ├── unbalanced_tuple_unpacking.txt │ │ │ │ │ │ ├── unbalanced_tuple_unpacking_py30.py │ │ │ │ │ │ ├── unbalanced_tuple_unpacking_py30.rc │ │ │ │ │ │ ├── undefined │ │ │ │ │ │ │ ├── undefined_loop_variable.py │ │ │ │ │ │ │ ├── undefined_loop_variable.txt │ │ │ │ │ │ │ ├── undefined_variable.py │ │ │ │ │ │ │ ├── undefined_variable.txt │ │ │ │ │ │ │ ├── undefined_variable_crash_on_attribute.py │ │ │ │ │ │ │ ├── undefined_variable_py30.py │ │ │ │ │ │ │ ├── undefined_variable_py30.rc │ │ │ │ │ │ │ └── undefined_variable_py30.txt │ │ │ │ │ │ ├── unexpected_special_method_signature.py │ │ │ │ │ │ ├── unexpected_special_method_signature.txt │ │ │ │ │ │ ├── ungrouped_imports.py │ │ │ │ │ │ ├── ungrouped_imports.txt │ │ │ │ │ │ ├── ungrouped_imports_isort_compatible.py │ │ │ │ │ │ ├── unhashable_dict_key.py │ │ │ │ │ │ ├── unhashable_dict_key.txt │ │ │ │ │ │ ├── unidiomatic_typecheck.py │ │ │ │ │ │ ├── unidiomatic_typecheck.txt │ │ │ │ │ │ ├── uninferable_all_object.py │ │ │ │ │ │ ├── unknown_encoding_jython.py │ │ │ │ │ │ ├── unknown_encoding_jython.rc │ │ │ │ │ │ ├── unknown_encoding_jython.txt │ │ │ │ │ │ ├── unnecessary │ │ │ │ │ │ │ ├── unnecessary_comprehension.py │ │ │ │ │ │ │ ├── unnecessary_comprehension.txt │ │ │ │ │ │ │ ├── unnecessary_lambda.py │ │ │ │ │ │ │ ├── unnecessary_lambda.txt │ │ │ │ │ │ │ ├── unnecessary_not.py │ │ │ │ │ │ │ ├── unnecessary_not.txt │ │ │ │ │ │ │ ├── unnecessary_pass.py │ │ │ │ │ │ │ └── unnecessary_pass.txt │ │ │ │ │ │ ├── unpacking.py │ │ │ │ │ │ ├── unpacking_generalizations.py │ │ │ │ │ │ ├── unpacking_generalizations.rc │ │ │ │ │ │ ├── unpacking_generalizations.txt │ │ │ │ │ │ ├── unpacking_non_sequence.py │ │ │ │ │ │ ├── unpacking_non_sequence.txt │ │ │ │ │ │ ├── unreachable.py │ │ │ │ │ │ ├── unreachable.txt │ │ │ │ │ │ ├── unrecognized_inline_option.py │ │ │ │ │ │ ├── unrecognized_inline_option.txt │ │ │ │ │ │ ├── unsubscriptable_value.py │ │ │ │ │ │ ├── unsubscriptable_value.rc │ │ │ │ │ │ ├── unsubscriptable_value.txt │ │ │ │ │ │ ├── unsubscriptable_value_py37.py │ │ │ │ │ │ ├── unsubscriptable_value_py37.rc │ │ │ │ │ │ ├── unsubscriptable_value_py37.txt │ │ │ │ │ │ ├── unsupported │ │ │ │ │ │ │ ├── unsupported_assignment_operation.py │ │ │ │ │ │ │ ├── unsupported_assignment_operation.rc │ │ │ │ │ │ │ ├── unsupported_assignment_operation.txt │ │ │ │ │ │ │ ├── unsupported_binary_operation.py │ │ │ │ │ │ │ ├── unsupported_binary_operation.rc │ │ │ │ │ │ │ ├── unsupported_binary_operation.txt │ │ │ │ │ │ │ ├── unsupported_delete_operation.py │ │ │ │ │ │ │ ├── unsupported_delete_operation.rc │ │ │ │ │ │ │ └── unsupported_delete_operation.txt │ │ │ │ │ │ ├── unused │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── unused_argument.py │ │ │ │ │ │ │ ├── unused_argument.txt │ │ │ │ │ │ │ ├── unused_argument_py3.py │ │ │ │ │ │ │ ├── unused_argument_py3.rc │ │ │ │ │ │ │ ├── unused_argument_py3.txt │ │ │ │ │ │ │ ├── unused_global_variable1.py │ │ │ │ │ │ │ ├── unused_global_variable2.py │ │ │ │ │ │ │ ├── unused_global_variable2.rc │ │ │ │ │ │ │ ├── unused_global_variable2.txt │ │ │ │ │ │ │ ├── unused_global_variable3.py │ │ │ │ │ │ │ ├── unused_global_variable4.py │ │ │ │ │ │ │ ├── unused_global_variable4.rc │ │ │ │ │ │ │ ├── unused_global_variable4.txt │ │ │ │ │ │ │ ├── unused_import.py │ │ │ │ │ │ │ ├── unused_import.txt │ │ │ │ │ │ │ ├── unused_import_assigned_to.py │ │ │ │ │ │ │ ├── unused_import_class_def_keyword.py │ │ │ │ │ │ │ ├── unused_import_everything_disabled.py │ │ │ │ │ │ │ ├── unused_import_everything_disabled.rc │ │ │ │ │ │ │ ├── unused_import_positional_only_py38.py │ │ │ │ │ │ │ ├── unused_import_positional_only_py38.rc │ │ │ │ │ │ │ ├── unused_import_py30.py │ │ │ │ │ │ │ ├── unused_import_py30.txt │ │ │ │ │ │ │ ├── unused_name_from_wilcard_import.py │ │ │ │ │ │ │ ├── unused_name_from_wilcard_import.txt │ │ │ │ │ │ │ ├── unused_typing_imports.py │ │ │ │ │ │ │ ├── unused_typing_imports.rc │ │ │ │ │ │ │ ├── unused_variable.py │ │ │ │ │ │ │ ├── unused_variable.txt │ │ │ │ │ │ │ ├── unused_variable_py36.py │ │ │ │ │ │ │ └── unused_variable_py36.rc │ │ │ │ │ │ ├── use │ │ │ │ │ │ │ ├── use_a_generator.py │ │ │ │ │ │ │ ├── use_a_generator.txt │ │ │ │ │ │ │ ├── use_symbolic_message_instead.py │ │ │ │ │ │ │ ├── use_symbolic_message_instead.txt │ │ │ │ │ │ │ ├── used_before_assignement.py │ │ │ │ │ │ │ ├── used_before_assignement.txt │ │ │ │ │ │ │ ├── used_before_assignment_488.py │ │ │ │ │ │ │ ├── used_before_assignment_issue1081.py │ │ │ │ │ │ │ ├── used_before_assignment_issue1081.txt │ │ │ │ │ │ │ ├── used_before_assignment_issue853.py │ │ │ │ │ │ │ ├── used_before_assignment_nonlocal.py │ │ │ │ │ │ │ ├── used_before_assignment_nonlocal.rc │ │ │ │ │ │ │ ├── used_before_assignment_nonlocal.txt │ │ │ │ │ │ │ ├── used_prior_global_declaration.py │ │ │ │ │ │ │ ├── used_prior_global_declaration.rc │ │ │ │ │ │ │ ├── used_prior_global_declaration.txt │ │ │ │ │ │ │ ├── using_constant_test.py │ │ │ │ │ │ │ └── using_constant_test.txt │ │ │ │ │ │ └── useless │ │ │ │ │ │ │ ├── useless-import-alias.py │ │ │ │ │ │ │ ├── useless-import-alias.txt │ │ │ │ │ │ │ ├── useless_else_on_loop.py │ │ │ │ │ │ │ ├── useless_else_on_loop.txt │ │ │ │ │ │ │ ├── useless_object_inheritance.py │ │ │ │ │ │ │ ├── useless_object_inheritance.txt │ │ │ │ │ │ │ ├── useless_return.py │ │ │ │ │ │ │ ├── useless_return.txt │ │ │ │ │ │ │ ├── useless_super_delegation.py │ │ │ │ │ │ │ ├── useless_super_delegation.txt │ │ │ │ │ │ │ ├── useless_super_delegation_py3.py │ │ │ │ │ │ │ ├── useless_super_delegation_py3.rc │ │ │ │ │ │ │ ├── useless_super_delegation_py3.txt │ │ │ │ │ │ │ ├── useless_super_delegation_py35.py │ │ │ │ │ │ │ ├── useless_super_delegation_py35.rc │ │ │ │ │ │ │ ├── useless_super_delegation_py35.txt │ │ │ │ │ │ │ ├── useless_super_delegation_py38.py │ │ │ │ │ │ │ ├── useless_super_delegation_py38.rc │ │ │ │ │ │ │ └── useless_super_delegation_py38.txt │ │ │ │ │ ├── w │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── wildcard_import.py │ │ │ │ │ │ ├── wildcard_import.txt │ │ │ │ │ │ ├── wildcard_import_allowed.py │ │ │ │ │ │ ├── wildcard_import_allowed.rc │ │ │ │ │ │ ├── wildcard_import_allowed.txt │ │ │ │ │ │ ├── with_used_before_assign.py │ │ │ │ │ │ ├── with_used_before_assign.txt │ │ │ │ │ │ ├── with_using_generator.py │ │ │ │ │ │ ├── with_using_generator.txt │ │ │ │ │ │ ├── wrong_exception_operation.py │ │ │ │ │ │ ├── wrong_exception_operation.txt │ │ │ │ │ │ ├── wrong_import_order.py │ │ │ │ │ │ ├── wrong_import_order.txt │ │ │ │ │ │ ├── wrong_import_order2.py │ │ │ │ │ │ ├── wrong_import_position.py │ │ │ │ │ │ ├── wrong_import_position.txt │ │ │ │ │ │ ├── wrong_import_position10.py │ │ │ │ │ │ ├── wrong_import_position11.py │ │ │ │ │ │ ├── wrong_import_position11.txt │ │ │ │ │ │ ├── wrong_import_position12.py │ │ │ │ │ │ ├── wrong_import_position12.txt │ │ │ │ │ │ ├── wrong_import_position13.py │ │ │ │ │ │ ├── wrong_import_position13.txt │ │ │ │ │ │ ├── wrong_import_position14.py │ │ │ │ │ │ ├── wrong_import_position14.txt │ │ │ │ │ │ ├── wrong_import_position15.py │ │ │ │ │ │ ├── wrong_import_position2.py │ │ │ │ │ │ ├── wrong_import_position3.py │ │ │ │ │ │ ├── wrong_import_position4.py │ │ │ │ │ │ ├── wrong_import_position5.py │ │ │ │ │ │ ├── wrong_import_position6.py │ │ │ │ │ │ ├── wrong_import_position7.py │ │ │ │ │ │ ├── wrong_import_position8.py │ │ │ │ │ │ ├── wrong_import_position9.py │ │ │ │ │ │ └── wrong_import_position_exclude_dunder_main.py │ │ │ │ │ └── y │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── yield_assign_py25.py │ │ │ │ │ │ ├── yield_from_iterable_py33.py │ │ │ │ │ │ ├── yield_from_iterable_py33.rc │ │ │ │ │ │ ├── yield_from_iterable_py33.txt │ │ │ │ │ │ ├── yield_from_outside_func.py │ │ │ │ │ │ ├── yield_from_outside_func.rc │ │ │ │ │ │ ├── yield_from_outside_func.txt │ │ │ │ │ │ ├── yield_inside_async_function.py │ │ │ │ │ │ ├── yield_inside_async_function.rc │ │ │ │ │ │ ├── yield_inside_async_function.txt │ │ │ │ │ │ ├── yield_inside_async_function_py36.py │ │ │ │ │ │ ├── yield_inside_async_function_py36.rc │ │ │ │ │ │ ├── yield_inside_async_function_py36.txt │ │ │ │ │ │ ├── yield_outside_func.py │ │ │ │ │ │ ├── yield_outside_func.txt │ │ │ │ │ │ └── yield_return_mix.py │ │ │ │ ├── input │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── benchmark_minimal_file.py │ │ │ │ │ ├── func_3k_removed_stuff_py_30.py │ │ │ │ │ ├── func_i0011.py │ │ │ │ │ ├── func_i0012.py │ │ │ │ │ ├── func_i0013.py │ │ │ │ │ ├── func_i0014.py │ │ │ │ │ ├── func_i0020.py │ │ │ │ │ ├── func_i0022.py │ │ │ │ │ ├── func_return_yield_mix_py_33.py │ │ │ │ │ ├── func_w0122_py_30.py │ │ │ │ │ ├── func_w0332_py_30.py │ │ │ │ │ ├── func_w0401.py │ │ │ │ │ ├── func_w0401_disabled.py │ │ │ │ │ ├── func_w0401_disabled_in_func.py │ │ │ │ │ ├── func_w0401_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── all_the_things.py │ │ │ │ │ │ ├── thing1.py │ │ │ │ │ │ └── thing2.py │ │ │ │ │ ├── func_w0801.py │ │ │ │ │ ├── hide_code_with_imports.py │ │ │ │ │ ├── ignore_except_pass_by_default.py │ │ │ │ │ ├── multiline-import │ │ │ │ │ ├── no_absolute_import.py │ │ │ │ │ ├── noext │ │ │ │ │ ├── not__init__.py │ │ │ │ │ ├── similar1 │ │ │ │ │ ├── similar2 │ │ │ │ │ ├── similar3 │ │ │ │ │ ├── similar4 │ │ │ │ │ ├── similar_lines_a.py │ │ │ │ │ ├── similar_lines_b.py │ │ │ │ │ ├── w0401_cycle.py │ │ │ │ │ └── w0801_same.py │ │ │ │ ├── lint │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── unittest_expand_modules.py │ │ │ │ │ └── unittest_lint.py │ │ │ │ ├── message │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── unittest_message.py │ │ │ │ │ ├── unittest_message_definition.py │ │ │ │ │ ├── unittest_message_definition_store.py │ │ │ │ │ └── unittest_message_id_store.py │ │ │ │ ├── messages │ │ │ │ │ ├── builtin_module.txt │ │ │ │ │ ├── func_3k_removed_stuff_py_30.txt │ │ │ │ │ ├── func_bad_cont_dictcomp_py27.txt │ │ │ │ │ ├── func_bug113231.txt │ │ │ │ │ ├── func_disable_linebased.txt │ │ │ │ │ ├── func_disable_linebased_py30.txt │ │ │ │ │ ├── func_i0011.txt │ │ │ │ │ ├── func_i0012.txt │ │ │ │ │ ├── func_i0013.txt │ │ │ │ │ ├── func_i0014.txt │ │ │ │ │ ├── func_i0020.txt │ │ │ │ │ ├── func_i0022.txt │ │ │ │ │ ├── func_raw_escapes.txt │ │ │ │ │ ├── func_return_yield_mix_py_33.txt │ │ │ │ │ ├── func_toolonglines_py30.txt │ │ │ │ │ ├── func_typecheck_callfunc_assigment.txt │ │ │ │ │ ├── func_typecheck_getattr_py30.txt │ │ │ │ │ ├── func_typecheck_non_callable_call.txt │ │ │ │ │ ├── func_unicode_literal_py26.txt │ │ │ │ │ ├── func_unicode_literal_py274.txt │ │ │ │ │ ├── func_use_for_or_listcomp_var_py29.txt │ │ │ │ │ ├── func_use_for_or_listcomp_var_py30.txt │ │ │ │ │ ├── func_variables_unused_name_from_wilcard_import.txt │ │ │ │ │ ├── func_w0122_py_30.txt │ │ │ │ │ ├── func_w0312.txt │ │ │ │ │ ├── func_w0332_py_30.txt │ │ │ │ │ ├── func_w0401.txt │ │ │ │ │ ├── func_w0401_disabled.txt │ │ │ │ │ ├── func_w0401_disabled_in_func.txt │ │ │ │ │ ├── func_w0401_package.txt │ │ │ │ │ ├── func_w0622.txt │ │ │ │ │ ├── func_w0623.txt │ │ │ │ │ ├── func_w0623_py_30.txt │ │ │ │ │ ├── func_w0801.txt │ │ │ │ │ └── func_with_without_as_py25.txt │ │ │ │ ├── profile │ │ │ │ │ └── test_profile_against_externals.py │ │ │ │ ├── regrtest_data │ │ │ │ │ ├── .pylintrc │ │ │ │ │ ├── absimp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── string.py │ │ │ │ │ ├── application_crash.py │ │ │ │ │ ├── bad_package │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── wrong.py │ │ │ │ │ ├── beyond_top │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── data.py │ │ │ │ │ ├── classdoc_usage.py │ │ │ │ │ ├── comments_pylintrc │ │ │ │ │ ├── dataclasses_pyreverse │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── decimal_inference.py │ │ │ │ │ ├── descriptor_crash.py │ │ │ │ │ ├── dummy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── another.py │ │ │ │ │ │ └── dummy.py │ │ │ │ │ ├── dummy_plugin.rc │ │ │ │ │ ├── dummy_plugin │ │ │ │ │ │ ├── dummy_conf_plugin.py │ │ │ │ │ │ └── dummy_plugin.py │ │ │ │ │ ├── duplicate_data_raw_strings │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── first.py │ │ │ │ │ │ └── second.py │ │ │ │ │ ├── empty.py │ │ │ │ │ ├── fail_under_minus10.py │ │ │ │ │ ├── fail_under_plus7_5.py │ │ │ │ │ ├── func_block_disable_msg.py │ │ │ │ │ ├── import_assign.py │ │ │ │ │ ├── import_package_subpackage_module.py │ │ │ │ │ ├── import_something.py │ │ │ │ │ ├── init_wildcard │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── meta.py │ │ │ │ │ ├── module_global.py │ │ │ │ │ ├── no_stdout_encoding.py │ │ │ │ │ ├── numarray_import.py │ │ │ │ │ ├── numarray_inf.py │ │ │ │ │ ├── package │ │ │ │ │ │ ├── AudioTime.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── subpackage │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── module.py │ │ │ │ │ ├── package_all │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── notmissing.py │ │ │ │ │ ├── precedence_test.py │ │ │ │ │ ├── py3k-disabled.rc │ │ │ │ │ ├── py3k_error_flag.py │ │ │ │ │ ├── py3k_errors_and_warnings.py │ │ │ │ │ ├── regression_missing_init_3564 │ │ │ │ │ │ └── subdirectory │ │ │ │ │ │ │ └── file.py │ │ │ │ │ ├── special_attr_scope_lookup_crash.py │ │ │ │ │ ├── syntax_error.py │ │ │ │ │ ├── test_pylintrc_comments.py │ │ │ │ │ ├── try_finally_disable_msg_crash.py │ │ │ │ │ ├── unused_variable.py │ │ │ │ │ ├── wildcard.py │ │ │ │ │ └── wrong_import_position.py │ │ │ │ ├── test_check_parallel.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_epylint.py │ │ │ │ ├── test_func.py │ │ │ │ ├── test_functional.py │ │ │ │ ├── test_import_graph.py │ │ │ │ ├── test_pragma_parser.py │ │ │ │ ├── test_pylint_runners.py │ │ │ │ ├── test_regr.py │ │ │ │ ├── test_self.py │ │ │ │ ├── unittest_config.py │ │ │ │ ├── unittest_pyreverse_diadefs.py │ │ │ │ ├── unittest_pyreverse_inspector.py │ │ │ │ ├── unittest_pyreverse_writer.py │ │ │ │ ├── unittest_reporters_json.py │ │ │ │ ├── unittest_reporting.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── unittest_ast_walker.py │ │ │ │ │ └── unittest_utils.py │ │ │ └── tox.ini │ │ ├── pytoolconfig │ │ │ ├── .flake8 │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── python-publish.yml │ │ │ │ │ └── tox.yml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .readthedocs.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── api.rst │ │ │ │ ├── command_line.rst │ │ │ │ ├── conf.py │ │ │ │ ├── documentation.rst │ │ │ │ ├── global_configuration.rst │ │ │ │ ├── index.rst │ │ │ │ ├── make.bat │ │ │ │ ├── pydantic.rst │ │ │ │ └── universal_config.rst │ │ │ ├── pyproject.toml │ │ │ ├── pytoolconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── _version.py │ │ │ │ ├── documentation.py │ │ │ │ ├── fields.py │ │ │ │ ├── py.typed │ │ │ │ ├── pytoolconfig.py │ │ │ │ ├── sources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ini.py │ │ │ │ │ ├── pyproject.py │ │ │ │ │ ├── pytool.py │ │ │ │ │ ├── setup_cfg.py │ │ │ │ │ └── source.py │ │ │ │ ├── types.py │ │ │ │ ├── universal_config.py │ │ │ │ └── utils.py │ │ │ └── tests │ │ │ │ ├── configfiles │ │ │ │ ├── pyproject.toml │ │ │ │ ├── pytool.toml │ │ │ │ └── setup.cfg │ │ │ │ ├── conftest.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_documentation.py │ │ │ │ ├── test_pytoolconfig.py │ │ │ │ └── test_utils.py │ │ ├── rope │ │ │ ├── .all-contributorsrc │ │ │ ├── .git-blame-ignore-revs │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug-report.md │ │ │ │ │ └── feature_request.md │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ └── workflows │ │ │ │ │ ├── black.yml │ │ │ │ │ ├── codeql.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ └── task-completed-checker-action.yml │ │ │ ├── .gitignore │ │ │ ├── .readthedocs.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── COPYING │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ │ └── tag-release.py │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── conf.py │ │ │ │ ├── configuration.rst │ │ │ │ ├── contributing.rst │ │ │ │ ├── default_config.py │ │ │ │ ├── dev │ │ │ │ │ └── issues.rst │ │ │ │ ├── index.rst │ │ │ │ ├── library.rst │ │ │ │ ├── make.bat │ │ │ │ ├── overview.rst │ │ │ │ ├── release-process.rst │ │ │ │ └── rope.rst │ │ │ ├── pyproject.toml │ │ │ ├── rope │ │ │ │ ├── __init__.py │ │ │ │ ├── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arguments.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── astutils.py │ │ │ │ │ ├── builtins.py │ │ │ │ │ ├── change.py │ │ │ │ │ ├── codeanalyze.py │ │ │ │ │ ├── evaluate.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fscommands.py │ │ │ │ │ ├── history.py │ │ │ │ │ ├── libutils.py │ │ │ │ │ ├── oi │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── doa.py │ │ │ │ │ │ ├── memorydb.py │ │ │ │ │ │ ├── objectdb.py │ │ │ │ │ │ ├── objectinfo.py │ │ │ │ │ │ ├── runmod.py │ │ │ │ │ │ ├── soa.py │ │ │ │ │ │ ├── soi.py │ │ │ │ │ │ ├── transform.py │ │ │ │ │ │ └── type_hinting │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── evaluate.py │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ ├── interfaces.py │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── composite.py │ │ │ │ │ │ │ ├── docstrings.py │ │ │ │ │ │ │ ├── inheritance.py │ │ │ │ │ │ │ ├── interfaces.py │ │ │ │ │ │ │ ├── numpydocstrings.py │ │ │ │ │ │ │ └── pep0484_type_comments.py │ │ │ │ │ │ │ ├── resolvers │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── composite.py │ │ │ │ │ │ │ ├── interfaces.py │ │ │ │ │ │ │ └── types.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── prefs.py │ │ │ │ │ ├── project.py │ │ │ │ │ ├── pycore.py │ │ │ │ │ ├── pynames.py │ │ │ │ │ ├── pynamesdef.py │ │ │ │ │ ├── pyobjects.py │ │ │ │ │ ├── pyobjectsdef.py │ │ │ │ │ ├── pyscopes.py │ │ │ │ │ ├── resourceobserver.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── simplify.py │ │ │ │ │ ├── stdmods.py │ │ │ │ │ ├── taskhandle.py │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── datastructures.py │ │ │ │ │ │ └── pycompat.py │ │ │ │ │ └── worder.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autoimport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── defs.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ ├── pickle.py │ │ │ │ │ │ ├── sqlite.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── changestack.py │ │ │ │ │ ├── codeassist.py │ │ │ │ │ ├── finderrors.py │ │ │ │ │ ├── findit.py │ │ │ │ │ ├── fixmodnames.py │ │ │ │ │ ├── fixsyntax.py │ │ │ │ │ └── generate.py │ │ │ │ └── refactor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── change_signature.py │ │ │ │ │ ├── encapsulate_field.py │ │ │ │ │ ├── extract.py │ │ │ │ │ ├── functionutils.py │ │ │ │ │ ├── importutils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── importinfo.py │ │ │ │ │ └── module_imports.py │ │ │ │ │ ├── inline.py │ │ │ │ │ ├── introduce_factory.py │ │ │ │ │ ├── introduce_parameter.py │ │ │ │ │ ├── localtofield.py │ │ │ │ │ ├── method_object.py │ │ │ │ │ ├── move.py │ │ │ │ │ ├── multiproject.py │ │ │ │ │ ├── occurrences.py │ │ │ │ │ ├── patchedast.py │ │ │ │ │ ├── rename.py │ │ │ │ │ ├── restructure.py │ │ │ │ │ ├── similarfinder.py │ │ │ │ │ ├── sourceutils.py │ │ │ │ │ ├── suites.py │ │ │ │ │ ├── topackage.py │ │ │ │ │ ├── usefunction.py │ │ │ │ │ └── wildcards.py │ │ │ ├── ropetest │ │ │ │ ├── __init__.py │ │ │ │ ├── advanced_oi_test.py │ │ │ │ ├── builtinstest.py │ │ │ │ ├── codeanalyzetest.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autoimport │ │ │ │ │ │ ├── conftest.py │ │ │ │ │ │ ├── modeltest.py │ │ │ │ │ │ ├── parsetest.py │ │ │ │ │ │ └── utilstest.py │ │ │ │ │ ├── autoimporttest.py │ │ │ │ │ ├── changestacktest.py │ │ │ │ │ ├── codeassisttest.py │ │ │ │ │ ├── finderrorstest.py │ │ │ │ │ ├── findittest.py │ │ │ │ │ ├── fixmodnamestest.py │ │ │ │ │ └── generatetest.py │ │ │ │ ├── doatest.py │ │ │ │ ├── historytest.py │ │ │ │ ├── objectdbtest.py │ │ │ │ ├── objectinfertest.py │ │ │ │ ├── projecttest.py │ │ │ │ ├── pycoretest.py │ │ │ │ ├── pyscopestest.py │ │ │ │ ├── refactor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── change_signature_test.py │ │ │ │ │ ├── extracttest.py │ │ │ │ │ ├── importutilstest.py │ │ │ │ │ ├── inlinetest.py │ │ │ │ │ ├── movetest.py │ │ │ │ │ ├── multiprojecttest.py │ │ │ │ │ ├── patchedasttest.py │ │ │ │ │ ├── renametest.py │ │ │ │ │ ├── restructuretest.py │ │ │ │ │ ├── similarfindertest.py │ │ │ │ │ ├── suitestest.py │ │ │ │ │ └── usefunctiontest.py │ │ │ │ ├── reprtest.py │ │ │ │ ├── runmodtest.py │ │ │ │ ├── simplifytest.py │ │ │ │ ├── testutils.py │ │ │ │ └── type_hinting_test.py │ │ │ └── setup.py │ │ ├── toml │ │ │ ├── .coveragearc │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── RELEASE.rst │ │ │ ├── examples │ │ │ │ ├── example-v0.4.0.out │ │ │ │ └── example-v0.4.0.toml │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── test.toml │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── decoding_test.py │ │ │ │ ├── decoding_test.sh │ │ │ │ ├── decoding_test2.sh │ │ │ │ ├── decoding_test3.sh │ │ │ │ └── test_api.py │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyi │ │ │ │ ├── decoder.py │ │ │ │ ├── decoder.pyi │ │ │ │ ├── encoder.py │ │ │ │ ├── encoder.pyi │ │ │ │ ├── ordered.py │ │ │ │ ├── ordered.pyi │ │ │ │ ├── tz.py │ │ │ │ └── tz.pyi │ │ │ └── tox.ini │ │ └── tomli │ │ │ ├── .bumpversion.cfg │ │ │ ├── .flake8 │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── tests.yaml │ │ │ ├── .gitignore │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE-HEADER │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── data.toml │ │ │ ├── requirements.txt │ │ │ └── run.py │ │ │ ├── fuzzer │ │ │ ├── fuzz.py │ │ │ └── requirements.txt │ │ │ ├── profiler │ │ │ ├── profiler_script.py │ │ │ └── requirements.txt │ │ │ ├── pyproject.toml │ │ │ ├── src │ │ │ └── tomli │ │ │ │ ├── __init__.py │ │ │ │ ├── _parser.py │ │ │ │ ├── _re.py │ │ │ │ ├── _types.py │ │ │ │ └── py.typed │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── burntsushi.py │ │ │ ├── data │ │ │ ├── invalid │ │ │ │ ├── _external │ │ │ │ │ ├── burntsushi │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ └── invalid │ │ │ │ │ │ │ ├── array │ │ │ │ │ │ │ ├── missing-separator.toml │ │ │ │ │ │ │ ├── no-close-2.toml │ │ │ │ │ │ │ ├── no-close-table-2.toml │ │ │ │ │ │ │ ├── no-close-table.toml │ │ │ │ │ │ │ ├── no-close.toml │ │ │ │ │ │ │ ├── tables-1.toml │ │ │ │ │ │ │ ├── tables-2.toml │ │ │ │ │ │ │ ├── text-after-array-entries.toml │ │ │ │ │ │ │ ├── text-before-array-separator.toml │ │ │ │ │ │ │ └── text-in-array.toml │ │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── mixed-case.toml │ │ │ │ │ │ │ ├── wrong-case-false.toml │ │ │ │ │ │ │ └── wrong-case-true.toml │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── bare-null.toml │ │ │ │ │ │ │ ├── comment-cr.toml │ │ │ │ │ │ │ ├── comment-del.toml │ │ │ │ │ │ │ ├── comment-lf.toml │ │ │ │ │ │ │ ├── comment-null.toml │ │ │ │ │ │ │ ├── comment-us.toml │ │ │ │ │ │ │ ├── control.multi │ │ │ │ │ │ │ ├── multi-del.toml │ │ │ │ │ │ │ ├── multi-lf.toml │ │ │ │ │ │ │ ├── multi-null.toml │ │ │ │ │ │ │ ├── multi-us.toml │ │ │ │ │ │ │ ├── rawmulti-del.toml │ │ │ │ │ │ │ ├── rawmulti-lf.toml │ │ │ │ │ │ │ ├── rawmulti-null.toml │ │ │ │ │ │ │ ├── rawmulti-us.toml │ │ │ │ │ │ │ ├── rawstring-del.toml │ │ │ │ │ │ │ ├── rawstring-lf.toml │ │ │ │ │ │ │ ├── rawstring-null.toml │ │ │ │ │ │ │ ├── rawstring-us.toml │ │ │ │ │ │ │ ├── string-bs.toml │ │ │ │ │ │ │ ├── string-del.toml │ │ │ │ │ │ │ ├── string-lf.toml │ │ │ │ │ │ │ ├── string-null.toml │ │ │ │ │ │ │ └── string-us.toml │ │ │ │ │ │ │ ├── datetime │ │ │ │ │ │ │ ├── hour-over.toml │ │ │ │ │ │ │ ├── mday-over.toml │ │ │ │ │ │ │ ├── mday-under.toml │ │ │ │ │ │ │ ├── minute-over.toml │ │ │ │ │ │ │ ├── month-over.toml │ │ │ │ │ │ │ ├── month-under.toml │ │ │ │ │ │ │ ├── no-leads-with-milli.toml │ │ │ │ │ │ │ ├── no-leads.toml │ │ │ │ │ │ │ ├── no-secs.toml │ │ │ │ │ │ │ ├── no-t.toml │ │ │ │ │ │ │ ├── second-over.toml │ │ │ │ │ │ │ ├── time-no-leads-2.toml │ │ │ │ │ │ │ ├── time-no-leads.toml │ │ │ │ │ │ │ └── trailing-t.toml │ │ │ │ │ │ │ ├── encoding │ │ │ │ │ │ │ ├── bad-utf8-at-end.toml │ │ │ │ │ │ │ ├── bad-utf8-in-comment.toml │ │ │ │ │ │ │ ├── bad-utf8-in-string.toml │ │ │ │ │ │ │ ├── bom-not-at-start-1.toml │ │ │ │ │ │ │ ├── bom-not-at-start-2.toml │ │ │ │ │ │ │ ├── utf16-bom.toml │ │ │ │ │ │ │ └── utf16.toml │ │ │ │ │ │ │ ├── float │ │ │ │ │ │ │ ├── double-point-1.toml │ │ │ │ │ │ │ ├── double-point-2.toml │ │ │ │ │ │ │ ├── exp-double-e-1.toml │ │ │ │ │ │ │ ├── exp-double-e-2.toml │ │ │ │ │ │ │ ├── exp-double-us.toml │ │ │ │ │ │ │ ├── exp-leading-us.toml │ │ │ │ │ │ │ ├── exp-point-1.toml │ │ │ │ │ │ │ ├── exp-point-2.toml │ │ │ │ │ │ │ ├── exp-trailing-us.toml │ │ │ │ │ │ │ ├── float.multi │ │ │ │ │ │ │ ├── inf-incomplete-1.toml │ │ │ │ │ │ │ ├── inf-incomplete-2.toml │ │ │ │ │ │ │ ├── inf-incomplete-3.toml │ │ │ │ │ │ │ ├── inf_underscore.toml │ │ │ │ │ │ │ ├── leading-point-neg.toml │ │ │ │ │ │ │ ├── leading-point-plus.toml │ │ │ │ │ │ │ ├── leading-point.toml │ │ │ │ │ │ │ ├── leading-us.toml │ │ │ │ │ │ │ ├── leading-zero-neg.toml │ │ │ │ │ │ │ ├── leading-zero-plus.toml │ │ │ │ │ │ │ ├── leading-zero.toml │ │ │ │ │ │ │ ├── nan-incomplete-1.toml │ │ │ │ │ │ │ ├── nan-incomplete-2.toml │ │ │ │ │ │ │ ├── nan-incomplete-3.toml │ │ │ │ │ │ │ ├── nan_underscore.toml │ │ │ │ │ │ │ ├── trailing-point-min.toml │ │ │ │ │ │ │ ├── trailing-point-plus.toml │ │ │ │ │ │ │ ├── trailing-point.toml │ │ │ │ │ │ │ ├── trailing-us-exp.toml │ │ │ │ │ │ │ ├── trailing-us.toml │ │ │ │ │ │ │ ├── us-after-point.toml │ │ │ │ │ │ │ └── us-before-point.toml │ │ │ │ │ │ │ ├── inline-table │ │ │ │ │ │ │ ├── double-comma.toml │ │ │ │ │ │ │ ├── duplicate-key.toml │ │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ │ ├── linebreak-1.toml │ │ │ │ │ │ │ ├── linebreak-2.toml │ │ │ │ │ │ │ ├── linebreak-3.toml │ │ │ │ │ │ │ ├── linebreak-4.toml │ │ │ │ │ │ │ ├── no-comma.toml │ │ │ │ │ │ │ ├── overwrite.toml │ │ │ │ │ │ │ └── trailing-comma.toml │ │ │ │ │ │ │ ├── integer │ │ │ │ │ │ │ ├── capital-bin.toml │ │ │ │ │ │ │ ├── capital-hex.toml │ │ │ │ │ │ │ ├── capital-oct.toml │ │ │ │ │ │ │ ├── double-sign-nex.toml │ │ │ │ │ │ │ ├── double-sign-plus.toml │ │ │ │ │ │ │ ├── double-us.toml │ │ │ │ │ │ │ ├── integer.multi │ │ │ │ │ │ │ ├── invalid-bin.toml │ │ │ │ │ │ │ ├── invalid-hex.toml │ │ │ │ │ │ │ ├── invalid-oct.toml │ │ │ │ │ │ │ ├── leading-us-bin.toml │ │ │ │ │ │ │ ├── leading-us-hex.toml │ │ │ │ │ │ │ ├── leading-us-oct.toml │ │ │ │ │ │ │ ├── leading-us.toml │ │ │ │ │ │ │ ├── leading-zero-1.toml │ │ │ │ │ │ │ ├── leading-zero-2.toml │ │ │ │ │ │ │ ├── leading-zero-3.toml │ │ │ │ │ │ │ ├── leading-zero-sign-1.toml │ │ │ │ │ │ │ ├── leading-zero-sign-2.toml │ │ │ │ │ │ │ ├── leading-zero-sign-3.toml │ │ │ │ │ │ │ ├── negative-bin.toml │ │ │ │ │ │ │ ├── negative-hex.toml │ │ │ │ │ │ │ ├── negative-oct.toml │ │ │ │ │ │ │ ├── positive-bin.toml │ │ │ │ │ │ │ ├── positive-hex.toml │ │ │ │ │ │ │ ├── positive-oct.toml │ │ │ │ │ │ │ ├── text-after-integer.toml │ │ │ │ │ │ │ ├── trailing-us-bin.toml │ │ │ │ │ │ │ ├── trailing-us-hex.toml │ │ │ │ │ │ │ ├── trailing-us-oct.toml │ │ │ │ │ │ │ ├── trailing-us.toml │ │ │ │ │ │ │ ├── us-after-bin.toml │ │ │ │ │ │ │ ├── us-after-hex.toml │ │ │ │ │ │ │ └── us-after-oct.toml │ │ │ │ │ │ │ ├── key │ │ │ │ │ │ │ ├── after-array.toml │ │ │ │ │ │ │ ├── after-table.toml │ │ │ │ │ │ │ ├── after-value.toml │ │ │ │ │ │ │ ├── bare-invalid-character.toml │ │ │ │ │ │ │ ├── dotted-redefine-table.toml │ │ │ │ │ │ │ ├── duplicate-keys.toml │ │ │ │ │ │ │ ├── duplicate.toml │ │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ │ ├── escape.toml │ │ │ │ │ │ │ ├── hash.toml │ │ │ │ │ │ │ ├── multiline.toml │ │ │ │ │ │ │ ├── newline.toml │ │ │ │ │ │ │ ├── no-eol.toml │ │ │ │ │ │ │ ├── open-bracket.toml │ │ │ │ │ │ │ ├── partial-quoted.toml │ │ │ │ │ │ │ ├── single-open-bracket.toml │ │ │ │ │ │ │ ├── space.toml │ │ │ │ │ │ │ ├── special-character.toml │ │ │ │ │ │ │ ├── start-bracket.toml │ │ │ │ │ │ │ ├── two-equals.toml │ │ │ │ │ │ │ ├── two-equals2.toml │ │ │ │ │ │ │ ├── two-equals3.toml │ │ │ │ │ │ │ ├── without-value-1.toml │ │ │ │ │ │ │ └── without-value-2.toml │ │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── bad-byte-escape.toml │ │ │ │ │ │ │ ├── bad-codepoint.toml │ │ │ │ │ │ │ ├── bad-concat.toml │ │ │ │ │ │ │ ├── bad-escape-1.toml │ │ │ │ │ │ │ ├── bad-escape-2.toml │ │ │ │ │ │ │ ├── bad-multiline.toml │ │ │ │ │ │ │ ├── bad-slash-escape.toml │ │ │ │ │ │ │ ├── bad-uni-esc.toml │ │ │ │ │ │ │ ├── basic-byte-escapes.toml │ │ │ │ │ │ │ ├── basic-multiline-out-of-range-unicode-escape-1.toml │ │ │ │ │ │ │ ├── basic-multiline-out-of-range-unicode-escape-2.toml │ │ │ │ │ │ │ ├── basic-multiline-quotes.toml │ │ │ │ │ │ │ ├── basic-multiline-unknown-escape.toml │ │ │ │ │ │ │ ├── basic-out-of-range-unicode-escape-1.toml │ │ │ │ │ │ │ ├── basic-out-of-range-unicode-escape-2.toml │ │ │ │ │ │ │ ├── basic-unknown-escape.toml │ │ │ │ │ │ │ ├── literal-multiline-quotes-1.toml │ │ │ │ │ │ │ ├── literal-multiline-quotes-2.toml │ │ │ │ │ │ │ ├── missing-quotes.toml │ │ │ │ │ │ │ ├── multiline-bad-escape-1.toml │ │ │ │ │ │ │ ├── multiline-bad-escape-2.toml │ │ │ │ │ │ │ ├── multiline-bad-escape-3.toml │ │ │ │ │ │ │ ├── multiline-escape-space.toml │ │ │ │ │ │ │ ├── multiline-no-close-2.toml │ │ │ │ │ │ │ ├── multiline-no-close.toml │ │ │ │ │ │ │ ├── multiline-quotes-1.toml │ │ │ │ │ │ │ ├── multiline-quotes-2.toml │ │ │ │ │ │ │ ├── no-close.toml │ │ │ │ │ │ │ ├── text-after-string.toml │ │ │ │ │ │ │ └── wrong-close.toml │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── append-with-dotted-keys-1.toml │ │ │ │ │ │ │ ├── append-with-dotted-keys-2.toml │ │ │ │ │ │ │ ├── array-empty.toml │ │ │ │ │ │ │ ├── array-implicit.toml │ │ │ │ │ │ │ ├── array-missing-bracket.toml │ │ │ │ │ │ │ ├── duplicate-key-dotted-table.toml │ │ │ │ │ │ │ ├── duplicate-key-dotted-table2.toml │ │ │ │ │ │ │ ├── duplicate-key-table.toml │ │ │ │ │ │ │ ├── duplicate-table-array.toml │ │ │ │ │ │ │ ├── duplicate-table-array2.toml │ │ │ │ │ │ │ ├── duplicate.toml │ │ │ │ │ │ │ ├── empty-implicit-table.toml │ │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ │ ├── equals-sign.toml │ │ │ │ │ │ │ ├── llbrace.toml │ │ │ │ │ │ │ ├── nested-brackets-close.toml │ │ │ │ │ │ │ ├── nested-brackets-open.toml │ │ │ │ │ │ │ ├── quoted-no-close.toml │ │ │ │ │ │ │ ├── redefine.toml │ │ │ │ │ │ │ ├── rrbrace.toml │ │ │ │ │ │ │ ├── text-after-table.toml │ │ │ │ │ │ │ ├── whitespace.toml │ │ │ │ │ │ │ └── with-pound.toml │ │ │ │ │ └── toml-lang-compliance │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── invalid │ │ │ │ │ │ ├── array │ │ │ │ │ │ ├── array-of-tables-1.toml │ │ │ │ │ │ └── array-of-tables-2.toml │ │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment-control-1.toml │ │ │ │ │ │ ├── comment-control-2.toml │ │ │ │ │ │ ├── comment-control-3.toml │ │ │ │ │ │ └── comment-control-4.toml │ │ │ │ │ │ ├── integer │ │ │ │ │ │ ├── int-0-padded.toml │ │ │ │ │ │ ├── int-signed-bin.toml │ │ │ │ │ │ ├── int-signed-hex.toml │ │ │ │ │ │ └── int-signed-oct.toml │ │ │ │ │ │ ├── key-value │ │ │ │ │ │ ├── bare-key-1.toml │ │ │ │ │ │ ├── bare-key-2.toml │ │ │ │ │ │ ├── bare-key-3.toml │ │ │ │ │ │ ├── key-value-pair-1.toml │ │ │ │ │ │ ├── key-value-pair-2.toml │ │ │ │ │ │ ├── multiple-dot-key.toml │ │ │ │ │ │ ├── multiple-key.toml │ │ │ │ │ │ └── no-key-name.toml │ │ │ │ │ │ ├── string │ │ │ │ │ │ ├── string-basic-control-1.toml │ │ │ │ │ │ ├── string-basic-control-2.toml │ │ │ │ │ │ ├── string-basic-control-3.toml │ │ │ │ │ │ ├── string-basic-control-4.toml │ │ │ │ │ │ ├── string-basic-multiline-control-1.toml │ │ │ │ │ │ ├── string-basic-multiline-control-2.toml │ │ │ │ │ │ ├── string-basic-multiline-control-3.toml │ │ │ │ │ │ ├── string-basic-multiline-control-4.toml │ │ │ │ │ │ ├── string-basic-multiline-invalid-backslash.toml │ │ │ │ │ │ ├── string-basic-multiline-out-of-range-unicode-escape-1.toml │ │ │ │ │ │ ├── string-basic-multiline-out-of-range-unicode-escape-2.toml │ │ │ │ │ │ ├── string-basic-multiline-quotes.toml │ │ │ │ │ │ ├── string-basic-multiline-unknown-escape.toml │ │ │ │ │ │ ├── string-basic-out-of-range-unicode-escape-1.toml │ │ │ │ │ │ ├── string-basic-out-of-range-unicode-escape-2.toml │ │ │ │ │ │ ├── string-basic-unknown-escape.toml │ │ │ │ │ │ ├── string-literal-control-1.toml │ │ │ │ │ │ ├── string-literal-control-2.toml │ │ │ │ │ │ ├── string-literal-control-3.toml │ │ │ │ │ │ ├── string-literal-control-4.toml │ │ │ │ │ │ ├── string-literal-multiline-control-1.toml │ │ │ │ │ │ ├── string-literal-multiline-control-2.toml │ │ │ │ │ │ ├── string-literal-multiline-control-4.toml │ │ │ │ │ │ └── string-literal-multiline-quotes.toml │ │ │ │ │ │ └── table │ │ │ │ │ │ ├── inline-table-immutable-1.toml │ │ │ │ │ │ ├── inline-table-immutable-2.toml │ │ │ │ │ │ ├── inline-table-trailing-comma.toml │ │ │ │ │ │ ├── table-1.toml │ │ │ │ │ │ ├── table-2.toml │ │ │ │ │ │ ├── table-3.toml │ │ │ │ │ │ ├── table-4.toml │ │ │ │ │ │ ├── table-invalid-1.toml │ │ │ │ │ │ ├── table-invalid-2.toml │ │ │ │ │ │ ├── table-invalid-3.toml │ │ │ │ │ │ └── table-invalid-4.toml │ │ │ │ ├── array-missing-comma.toml │ │ │ │ ├── array-of-tables │ │ │ │ │ ├── overwrite-array-in-parent.toml │ │ │ │ │ └── overwrite-bool-with-aot.toml │ │ │ │ ├── array │ │ │ │ │ ├── file-end-after-val.toml │ │ │ │ │ ├── unclosed-after-item.toml │ │ │ │ │ └── unclosed-empty.toml │ │ │ │ ├── basic-str-ends-in-escape.toml │ │ │ │ ├── boolean │ │ │ │ │ ├── invalid-false-casing.toml │ │ │ │ │ └── invalid-true-casing.toml │ │ │ │ ├── dates-and-times │ │ │ │ │ └── invalid-day.toml │ │ │ │ ├── dotted-keys │ │ │ │ │ ├── access-non-table.toml │ │ │ │ │ ├── extend-defined-aot.toml │ │ │ │ │ ├── extend-defined-table-with-subtable.toml │ │ │ │ │ └── extend-defined-table.toml │ │ │ │ ├── inline-table-missing-comma.toml │ │ │ │ ├── inline-table │ │ │ │ │ ├── define-twice-in-subtable.toml │ │ │ │ │ ├── define-twice.toml │ │ │ │ │ ├── file-end-after-key-val.toml │ │ │ │ │ ├── mutate.toml │ │ │ │ │ ├── override-val-in-table.toml │ │ │ │ │ ├── override-val-with-array.toml │ │ │ │ │ ├── override-val-with-table.toml │ │ │ │ │ ├── overwrite-implicitly.toml │ │ │ │ │ ├── overwrite-value-in-inner-array.toml │ │ │ │ │ ├── overwrite-value-in-inner-table.toml │ │ │ │ │ └── unclosed-empty.toml │ │ │ │ ├── invalid-comment-char.toml │ │ │ │ ├── invalid-escaped-unicode.toml │ │ │ │ ├── invalid-hex.toml │ │ │ │ ├── keys-and-vals │ │ │ │ │ ├── ends-early-table-def.toml │ │ │ │ │ ├── ends-early.toml │ │ │ │ │ ├── no-value.toml │ │ │ │ │ ├── only-ws-after-dot.toml │ │ │ │ │ └── overwrite-with-deep-table.toml │ │ │ │ ├── literal-str │ │ │ │ │ └── unclosed.toml │ │ │ │ ├── missing-closing-double-square-bracket.toml │ │ │ │ ├── missing-closing-square-bracket.toml │ │ │ │ ├── multiline-basic-str │ │ │ │ │ ├── carriage-return.toml │ │ │ │ │ ├── escape-only.toml │ │ │ │ │ ├── file-ends-after-opening.toml │ │ │ │ │ ├── last-line-escape.toml │ │ │ │ │ └── unclosed-ends-in-whitespace-escape.toml │ │ │ │ ├── multiline-literal-str │ │ │ │ │ ├── file-ends-after-opening.toml │ │ │ │ │ └── unclosed.toml │ │ │ │ ├── non-scalar-escaped.toml │ │ │ │ ├── table │ │ │ │ │ ├── eof-after-opening.toml │ │ │ │ │ ├── redefine-1.toml │ │ │ │ │ └── redefine-2.toml │ │ │ │ ├── unclosed-multiline-string.toml │ │ │ │ └── unclosed-string.toml │ │ │ └── valid │ │ │ │ ├── _external │ │ │ │ ├── burntsushi │ │ │ │ │ ├── COPYING │ │ │ │ │ └── valid │ │ │ │ │ │ ├── array │ │ │ │ │ │ ├── array.json │ │ │ │ │ │ ├── array.toml │ │ │ │ │ │ ├── bool.json │ │ │ │ │ │ ├── bool.toml │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ ├── hetergeneous.json │ │ │ │ │ │ ├── hetergeneous.toml │ │ │ │ │ │ ├── mixed-int-array.json │ │ │ │ │ │ ├── mixed-int-array.toml │ │ │ │ │ │ ├── mixed-int-float.json │ │ │ │ │ │ ├── mixed-int-float.toml │ │ │ │ │ │ ├── mixed-int-string.json │ │ │ │ │ │ ├── mixed-int-string.toml │ │ │ │ │ │ ├── mixed-string-table.json │ │ │ │ │ │ ├── mixed-string-table.toml │ │ │ │ │ │ ├── nested-double.json │ │ │ │ │ │ ├── nested-double.toml │ │ │ │ │ │ ├── nested-inline-table.json │ │ │ │ │ │ ├── nested-inline-table.toml │ │ │ │ │ │ ├── nested.json │ │ │ │ │ │ ├── nested.toml │ │ │ │ │ │ ├── nospaces.json │ │ │ │ │ │ ├── nospaces.toml │ │ │ │ │ │ ├── string-quote-comma-2.json │ │ │ │ │ │ ├── string-quote-comma-2.toml │ │ │ │ │ │ ├── string-quote-comma.json │ │ │ │ │ │ ├── string-quote-comma.toml │ │ │ │ │ │ ├── string-with-comma.json │ │ │ │ │ │ ├── string-with-comma.toml │ │ │ │ │ │ ├── strings.json │ │ │ │ │ │ ├── strings.toml │ │ │ │ │ │ ├── table-array-string-backslash.json │ │ │ │ │ │ └── table-array-string-backslash.toml │ │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── bool.json │ │ │ │ │ │ └── bool.toml │ │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── at-eof.json │ │ │ │ │ │ ├── at-eof.toml │ │ │ │ │ │ ├── at-eof2.json │ │ │ │ │ │ ├── at-eof2.toml │ │ │ │ │ │ ├── everywhere.json │ │ │ │ │ │ ├── everywhere.toml │ │ │ │ │ │ ├── noeol.json │ │ │ │ │ │ ├── noeol.toml │ │ │ │ │ │ ├── tricky.json │ │ │ │ │ │ └── tricky.toml │ │ │ │ │ │ ├── datetime │ │ │ │ │ │ ├── datetime.json │ │ │ │ │ │ ├── datetime.toml │ │ │ │ │ │ ├── local-date.json │ │ │ │ │ │ ├── local-date.toml │ │ │ │ │ │ ├── local-time.json │ │ │ │ │ │ ├── local-time.toml │ │ │ │ │ │ ├── local.json │ │ │ │ │ │ ├── local.toml │ │ │ │ │ │ ├── milliseconds.json │ │ │ │ │ │ ├── milliseconds.toml │ │ │ │ │ │ ├── timezone.json │ │ │ │ │ │ └── timezone.toml │ │ │ │ │ │ ├── empty-file.json │ │ │ │ │ │ ├── empty-file.toml │ │ │ │ │ │ ├── example.json │ │ │ │ │ │ ├── example.toml │ │ │ │ │ │ ├── float │ │ │ │ │ │ ├── exponent.json │ │ │ │ │ │ ├── exponent.toml │ │ │ │ │ │ ├── float.json │ │ │ │ │ │ ├── float.toml │ │ │ │ │ │ ├── inf-and-nan.json │ │ │ │ │ │ ├── inf-and-nan.toml │ │ │ │ │ │ ├── long.json │ │ │ │ │ │ ├── long.toml │ │ │ │ │ │ ├── underscore.json │ │ │ │ │ │ ├── underscore.toml │ │ │ │ │ │ ├── zero.json │ │ │ │ │ │ └── zero.toml │ │ │ │ │ │ ├── implicit-and-explicit-after.json │ │ │ │ │ │ ├── implicit-and-explicit-after.toml │ │ │ │ │ │ ├── implicit-and-explicit-before.json │ │ │ │ │ │ ├── implicit-and-explicit-before.toml │ │ │ │ │ │ ├── implicit-groups.json │ │ │ │ │ │ ├── implicit-groups.toml │ │ │ │ │ │ ├── inline-table │ │ │ │ │ │ ├── array.json │ │ │ │ │ │ ├── array.toml │ │ │ │ │ │ ├── bool.json │ │ │ │ │ │ ├── bool.toml │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ ├── end-in-bool.json │ │ │ │ │ │ ├── end-in-bool.toml │ │ │ │ │ │ ├── inline-table.json │ │ │ │ │ │ ├── inline-table.toml │ │ │ │ │ │ ├── key-dotted.json │ │ │ │ │ │ ├── key-dotted.toml │ │ │ │ │ │ ├── multiline.json │ │ │ │ │ │ ├── multiline.toml │ │ │ │ │ │ ├── nest.json │ │ │ │ │ │ └── nest.toml │ │ │ │ │ │ ├── integer │ │ │ │ │ │ ├── integer.json │ │ │ │ │ │ ├── integer.toml │ │ │ │ │ │ ├── literals.json │ │ │ │ │ │ ├── literals.toml │ │ │ │ │ │ ├── long.json │ │ │ │ │ │ ├── long.toml │ │ │ │ │ │ ├── underscore.json │ │ │ │ │ │ ├── underscore.toml │ │ │ │ │ │ ├── zero.json │ │ │ │ │ │ └── zero.toml │ │ │ │ │ │ ├── key │ │ │ │ │ │ ├── alphanum.json │ │ │ │ │ │ ├── alphanum.toml │ │ │ │ │ │ ├── case-sensitive.json │ │ │ │ │ │ ├── case-sensitive.toml │ │ │ │ │ │ ├── dotted.json │ │ │ │ │ │ ├── dotted.toml │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ ├── equals-nospace.json │ │ │ │ │ │ ├── equals-nospace.toml │ │ │ │ │ │ ├── escapes.json │ │ │ │ │ │ ├── escapes.toml │ │ │ │ │ │ ├── numeric-dotted.json │ │ │ │ │ │ ├── numeric-dotted.toml │ │ │ │ │ │ ├── numeric.json │ │ │ │ │ │ ├── numeric.toml │ │ │ │ │ │ ├── quoted-dots.json │ │ │ │ │ │ ├── quoted-dots.toml │ │ │ │ │ │ ├── space.json │ │ │ │ │ │ ├── space.toml │ │ │ │ │ │ ├── special-chars.json │ │ │ │ │ │ ├── special-chars.toml │ │ │ │ │ │ ├── special-word.json │ │ │ │ │ │ └── special-word.toml │ │ │ │ │ │ ├── newline-crlf.json │ │ │ │ │ │ ├── newline-crlf.toml │ │ │ │ │ │ ├── newline-lf.json │ │ │ │ │ │ ├── newline-lf.toml │ │ │ │ │ │ ├── spec-example-1-compact.json │ │ │ │ │ │ ├── spec-example-1-compact.toml │ │ │ │ │ │ ├── spec-example-1.json │ │ │ │ │ │ ├── spec-example-1.toml │ │ │ │ │ │ ├── string │ │ │ │ │ │ ├── double-quote-escape.json │ │ │ │ │ │ ├── double-quote-escape.toml │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ ├── escape-tricky.json │ │ │ │ │ │ ├── escape-tricky.toml │ │ │ │ │ │ ├── escaped-escape.json │ │ │ │ │ │ ├── escaped-escape.toml │ │ │ │ │ │ ├── escapes.json │ │ │ │ │ │ ├── escapes.toml │ │ │ │ │ │ ├── multiline-quotes.json │ │ │ │ │ │ ├── multiline-quotes.toml │ │ │ │ │ │ ├── multiline.json │ │ │ │ │ │ ├── multiline.toml │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nl.toml │ │ │ │ │ │ ├── raw-multiline.json │ │ │ │ │ │ ├── raw-multiline.toml │ │ │ │ │ │ ├── raw.json │ │ │ │ │ │ ├── raw.toml │ │ │ │ │ │ ├── simple.json │ │ │ │ │ │ ├── simple.toml │ │ │ │ │ │ ├── unicode-escape.json │ │ │ │ │ │ ├── unicode-escape.toml │ │ │ │ │ │ ├── unicode-literal.json │ │ │ │ │ │ ├── unicode-literal.toml │ │ │ │ │ │ ├── with-pound.json │ │ │ │ │ │ └── with-pound.toml │ │ │ │ │ │ └── table │ │ │ │ │ │ ├── array-implicit.json │ │ │ │ │ │ ├── array-implicit.toml │ │ │ │ │ │ ├── array-many.json │ │ │ │ │ │ ├── array-many.toml │ │ │ │ │ │ ├── array-nest.json │ │ │ │ │ │ ├── array-nest.toml │ │ │ │ │ │ ├── array-one.json │ │ │ │ │ │ ├── array-one.toml │ │ │ │ │ │ ├── array-table-array.json │ │ │ │ │ │ ├── array-table-array.toml │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.toml │ │ │ │ │ │ ├── keyword.json │ │ │ │ │ │ ├── keyword.toml │ │ │ │ │ │ ├── names.json │ │ │ │ │ │ ├── names.toml │ │ │ │ │ │ ├── no-eol.json │ │ │ │ │ │ ├── no-eol.toml │ │ │ │ │ │ ├── sub-empty.json │ │ │ │ │ │ ├── sub-empty.toml │ │ │ │ │ │ ├── whitespace.json │ │ │ │ │ │ ├── whitespace.toml │ │ │ │ │ │ ├── with-literal-string.json │ │ │ │ │ │ ├── with-literal-string.toml │ │ │ │ │ │ ├── with-pound.json │ │ │ │ │ │ ├── with-pound.toml │ │ │ │ │ │ ├── with-single-quotes.json │ │ │ │ │ │ ├── with-single-quotes.toml │ │ │ │ │ │ ├── without-super.json │ │ │ │ │ │ └── without-super.toml │ │ │ │ └── toml-lang-compliance │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── valid │ │ │ │ │ ├── array │ │ │ │ │ ├── spec-array-1.json │ │ │ │ │ ├── spec-array-1.toml │ │ │ │ │ ├── spec-array-2.json │ │ │ │ │ ├── spec-array-2.toml │ │ │ │ │ ├── spec-array-3.json │ │ │ │ │ ├── spec-array-3.toml │ │ │ │ │ ├── spec-array-4.json │ │ │ │ │ ├── spec-array-4.toml │ │ │ │ │ ├── spec-array-5.json │ │ │ │ │ ├── spec-array-5.toml │ │ │ │ │ ├── spec-array-7.json │ │ │ │ │ ├── spec-array-7.toml │ │ │ │ │ ├── spec-array-8.json │ │ │ │ │ ├── spec-array-8.toml │ │ │ │ │ ├── spec-array-mixed-number-types.json │ │ │ │ │ ├── spec-array-mixed-number-types.toml │ │ │ │ │ ├── spec-array-more-mixed-types.json │ │ │ │ │ ├── spec-array-more-mixed-types.toml │ │ │ │ │ ├── spec-array-of-tables-1.json │ │ │ │ │ ├── spec-array-of-tables-1.toml │ │ │ │ │ ├── spec-array-of-tables-2.json │ │ │ │ │ ├── spec-array-of-tables-2.toml │ │ │ │ │ ├── spec-array-of-tables-3.json │ │ │ │ │ └── spec-array-of-tables-3.toml │ │ │ │ │ ├── boolean │ │ │ │ │ ├── spec-boolean-1.json │ │ │ │ │ ├── spec-boolean-1.toml │ │ │ │ │ ├── spec-boolean-2.json │ │ │ │ │ └── spec-boolean-2.toml │ │ │ │ │ ├── comment │ │ │ │ │ ├── spec-comment-mid-array.json │ │ │ │ │ ├── spec-comment-mid-array.toml │ │ │ │ │ ├── spec-comment-mid-string.json │ │ │ │ │ ├── spec-comment-mid-string.toml │ │ │ │ │ ├── spec-comment-tab.json │ │ │ │ │ ├── spec-comment-tab.toml │ │ │ │ │ ├── spec-comment.json │ │ │ │ │ └── spec-comment.toml │ │ │ │ │ ├── date-time │ │ │ │ │ ├── spec-date-local-1.json │ │ │ │ │ ├── spec-date-local-1.toml │ │ │ │ │ ├── spec-date-time-1.json │ │ │ │ │ ├── spec-date-time-1.toml │ │ │ │ │ ├── spec-date-time-2.json │ │ │ │ │ ├── spec-date-time-2.toml │ │ │ │ │ ├── spec-date-time-3.json │ │ │ │ │ ├── spec-date-time-3.toml │ │ │ │ │ ├── spec-date-time-4.json │ │ │ │ │ ├── spec-date-time-4.toml │ │ │ │ │ ├── spec-date-time-5.json │ │ │ │ │ ├── spec-date-time-5.toml │ │ │ │ │ ├── spec-date-time-6.json │ │ │ │ │ ├── spec-date-time-6.toml │ │ │ │ │ ├── spec-date-time-local-1.json │ │ │ │ │ ├── spec-date-time-local-1.toml │ │ │ │ │ ├── spec-date-time-local-2.json │ │ │ │ │ ├── spec-date-time-local-2.toml │ │ │ │ │ ├── spec-time-1.json │ │ │ │ │ ├── spec-time-1.toml │ │ │ │ │ ├── spec-time-2.json │ │ │ │ │ └── spec-time-2.toml │ │ │ │ │ ├── float │ │ │ │ │ ├── spec-float-1.json │ │ │ │ │ ├── spec-float-1.toml │ │ │ │ │ ├── spec-float-10.json │ │ │ │ │ ├── spec-float-10.toml │ │ │ │ │ ├── spec-float-11.json │ │ │ │ │ ├── spec-float-11.toml │ │ │ │ │ ├── spec-float-12.json │ │ │ │ │ ├── spec-float-12.toml │ │ │ │ │ ├── spec-float-13.json │ │ │ │ │ ├── spec-float-13.toml │ │ │ │ │ ├── spec-float-14.json │ │ │ │ │ ├── spec-float-14.toml │ │ │ │ │ ├── spec-float-15.json │ │ │ │ │ ├── spec-float-15.toml │ │ │ │ │ ├── spec-float-2.json │ │ │ │ │ ├── spec-float-2.toml │ │ │ │ │ ├── spec-float-3.json │ │ │ │ │ ├── spec-float-3.toml │ │ │ │ │ ├── spec-float-4.json │ │ │ │ │ ├── spec-float-4.toml │ │ │ │ │ ├── spec-float-5.json │ │ │ │ │ ├── spec-float-5.toml │ │ │ │ │ ├── spec-float-6.json │ │ │ │ │ ├── spec-float-6.toml │ │ │ │ │ ├── spec-float-7.json │ │ │ │ │ ├── spec-float-7.toml │ │ │ │ │ ├── spec-float-8.json │ │ │ │ │ ├── spec-float-8.toml │ │ │ │ │ ├── spec-float-9.json │ │ │ │ │ └── spec-float-9.toml │ │ │ │ │ ├── integer │ │ │ │ │ ├── spec-int-1.json │ │ │ │ │ ├── spec-int-1.toml │ │ │ │ │ ├── spec-int-2.json │ │ │ │ │ ├── spec-int-2.toml │ │ │ │ │ ├── spec-int-3.json │ │ │ │ │ ├── spec-int-3.toml │ │ │ │ │ ├── spec-int-3a.json │ │ │ │ │ ├── spec-int-3a.toml │ │ │ │ │ ├── spec-int-3b.json │ │ │ │ │ ├── spec-int-3b.toml │ │ │ │ │ ├── spec-int-4.json │ │ │ │ │ ├── spec-int-4.toml │ │ │ │ │ ├── spec-int-5.json │ │ │ │ │ ├── spec-int-5.toml │ │ │ │ │ ├── spec-int-6.json │ │ │ │ │ ├── spec-int-6.toml │ │ │ │ │ ├── spec-int-7.json │ │ │ │ │ ├── spec-int-7.toml │ │ │ │ │ ├── spec-int-bin1.json │ │ │ │ │ ├── spec-int-bin1.toml │ │ │ │ │ ├── spec-int-hex1.json │ │ │ │ │ ├── spec-int-hex1.toml │ │ │ │ │ ├── spec-int-hex2.json │ │ │ │ │ ├── spec-int-hex2.toml │ │ │ │ │ ├── spec-int-hex3.json │ │ │ │ │ ├── spec-int-hex3.toml │ │ │ │ │ ├── spec-int-max.json │ │ │ │ │ ├── spec-int-max.toml │ │ │ │ │ ├── spec-int-min.json │ │ │ │ │ ├── spec-int-min.toml │ │ │ │ │ ├── spec-int-oct1.json │ │ │ │ │ ├── spec-int-oct1.toml │ │ │ │ │ ├── spec-int-oct2.json │ │ │ │ │ └── spec-int-oct2.toml │ │ │ │ │ ├── key-value │ │ │ │ │ ├── spec-case-sensitive.json │ │ │ │ │ ├── spec-case-sensitive.toml │ │ │ │ │ ├── spec-dotted-keys-1.json │ │ │ │ │ ├── spec-dotted-keys-1.toml │ │ │ │ │ ├── spec-dotted-keys-2.json │ │ │ │ │ ├── spec-dotted-keys-2.toml │ │ │ │ │ ├── spec-dotted-keys-3.json │ │ │ │ │ ├── spec-dotted-keys-3.toml │ │ │ │ │ ├── spec-empty-key-name-1.json │ │ │ │ │ ├── spec-empty-key-name-1.toml │ │ │ │ │ ├── spec-empty-key-name-2.json │ │ │ │ │ ├── spec-empty-key-name-2.toml │ │ │ │ │ ├── spec-key-value-pair-1.json │ │ │ │ │ ├── spec-key-value-pair-1.toml │ │ │ │ │ ├── spec-key-value-pair-2.json │ │ │ │ │ ├── spec-key-value-pair-2.toml │ │ │ │ │ ├── spec-key-value-pair-3.json │ │ │ │ │ ├── spec-key-value-pair-3.toml │ │ │ │ │ ├── spec-key-value-pair-4.json │ │ │ │ │ ├── spec-key-value-pair-4.toml │ │ │ │ │ ├── spec-key-value-pair-5.json │ │ │ │ │ ├── spec-key-value-pair-5.toml │ │ │ │ │ ├── spec-key-value-pair-6.json │ │ │ │ │ ├── spec-key-value-pair-6.toml │ │ │ │ │ ├── spec-key-value-pair-7.json │ │ │ │ │ ├── spec-key-value-pair-7.toml │ │ │ │ │ ├── spec-key-value-pair-8.json │ │ │ │ │ ├── spec-key-value-pair-8.toml │ │ │ │ │ ├── spec-key-value-pair-9.json │ │ │ │ │ ├── spec-key-value-pair-9.toml │ │ │ │ │ ├── spec-newline-1.json │ │ │ │ │ ├── spec-newline-1.toml │ │ │ │ │ ├── spec-newline-2.json │ │ │ │ │ ├── spec-newline-2.toml │ │ │ │ │ ├── spec-newline-3.json │ │ │ │ │ ├── spec-newline-3.toml │ │ │ │ │ ├── spec-quoted-basic-keys-1.json │ │ │ │ │ ├── spec-quoted-basic-keys-1.toml │ │ │ │ │ ├── spec-quoted-literal-keys-1.json │ │ │ │ │ └── spec-quoted-literal-keys-1.toml │ │ │ │ │ ├── qa │ │ │ │ │ ├── qa-array-inline-1000.json │ │ │ │ │ ├── qa-array-inline-1000.toml │ │ │ │ │ ├── qa-array-inline-nested-1000.toml │ │ │ │ │ ├── qa-key-literal-40kb.json │ │ │ │ │ ├── qa-key-literal-40kb.toml │ │ │ │ │ ├── qa-key-string-40kb.json │ │ │ │ │ ├── qa-key-string-40kb.toml │ │ │ │ │ ├── qa-scalar-literal-40kb.json │ │ │ │ │ ├── qa-scalar-literal-40kb.toml │ │ │ │ │ ├── qa-scalar-literal-multiline-40kb.json │ │ │ │ │ ├── qa-scalar-literal-multiline-40kb.toml │ │ │ │ │ ├── qa-scalar-string-40kb.json │ │ │ │ │ ├── qa-scalar-string-40kb.toml │ │ │ │ │ ├── qa-scalar-string-multiline-40kb.json │ │ │ │ │ ├── qa-scalar-string-multiline-40kb.toml │ │ │ │ │ ├── qa-table-inline-1000.json │ │ │ │ │ ├── qa-table-inline-1000.toml │ │ │ │ │ └── qa-table-inline-nested-1000.toml │ │ │ │ │ ├── spec-readme-example.json │ │ │ │ │ ├── spec-readme-example.toml │ │ │ │ │ ├── string │ │ │ │ │ ├── spec-string-basic-multiline-1.json │ │ │ │ │ ├── spec-string-basic-multiline-1.toml │ │ │ │ │ ├── spec-string-basic-multiline-2.json │ │ │ │ │ ├── spec-string-basic-multiline-2.toml │ │ │ │ │ ├── spec-string-basic-multiline-3.json │ │ │ │ │ ├── spec-string-basic-multiline-3.toml │ │ │ │ │ ├── spec-string-basic-multiline-4.json │ │ │ │ │ ├── spec-string-basic-multiline-4.toml │ │ │ │ │ ├── spec-string-basic-multiline-5.json │ │ │ │ │ ├── spec-string-basic-multiline-5.toml │ │ │ │ │ ├── spec-string-basic-multiline-6.json │ │ │ │ │ ├── spec-string-basic-multiline-6.toml │ │ │ │ │ ├── spec-string-basic-multiline-7.json │ │ │ │ │ ├── spec-string-basic-multiline-7.toml │ │ │ │ │ ├── spec-string-basic-multiline-8.json │ │ │ │ │ ├── spec-string-basic-multiline-8.toml │ │ │ │ │ ├── spec-string-basic-multiline-9.json │ │ │ │ │ ├── spec-string-basic-multiline-9.toml │ │ │ │ │ ├── spec-string-basic-tab-multiline.json │ │ │ │ │ ├── spec-string-basic-tab-multiline.toml │ │ │ │ │ ├── spec-string-basic-tab.json │ │ │ │ │ ├── spec-string-basic-tab.toml │ │ │ │ │ ├── spec-string-basic.json │ │ │ │ │ ├── spec-string-basic.toml │ │ │ │ │ ├── spec-string-escape-1.json │ │ │ │ │ ├── spec-string-escape-1.toml │ │ │ │ │ ├── spec-string-escape-2.json │ │ │ │ │ ├── spec-string-escape-2.toml │ │ │ │ │ ├── spec-string-escape-3.json │ │ │ │ │ ├── spec-string-escape-3.toml │ │ │ │ │ ├── spec-string-escape-4.json │ │ │ │ │ ├── spec-string-escape-4.toml │ │ │ │ │ ├── spec-string-escape-5.json │ │ │ │ │ ├── spec-string-escape-5.toml │ │ │ │ │ ├── spec-string-escape-6.json │ │ │ │ │ ├── spec-string-escape-6.toml │ │ │ │ │ ├── spec-string-escape-7.json │ │ │ │ │ ├── spec-string-escape-7.toml │ │ │ │ │ ├── spec-string-escape-8.json │ │ │ │ │ ├── spec-string-escape-8.toml │ │ │ │ │ ├── spec-string-escape-9.json │ │ │ │ │ ├── spec-string-escape-9.toml │ │ │ │ │ ├── spec-string-literal-1.json │ │ │ │ │ ├── spec-string-literal-1.toml │ │ │ │ │ ├── spec-string-literal-2.json │ │ │ │ │ ├── spec-string-literal-2.toml │ │ │ │ │ ├── spec-string-literal-3.json │ │ │ │ │ ├── spec-string-literal-3.toml │ │ │ │ │ ├── spec-string-literal-4.json │ │ │ │ │ ├── spec-string-literal-4.toml │ │ │ │ │ ├── spec-string-literal-multiline-1.json │ │ │ │ │ ├── spec-string-literal-multiline-1.toml │ │ │ │ │ ├── spec-string-literal-multiline-2.json │ │ │ │ │ ├── spec-string-literal-multiline-2.toml │ │ │ │ │ ├── spec-string-literal-multiline-3.json │ │ │ │ │ ├── spec-string-literal-multiline-3.toml │ │ │ │ │ ├── spec-string-literal-multiline-4.json │ │ │ │ │ └── spec-string-literal-multiline-4.toml │ │ │ │ │ └── table │ │ │ │ │ ├── spec-extend-dotted-object-1.json │ │ │ │ │ ├── spec-extend-dotted-object-1.toml │ │ │ │ │ ├── spec-extend-dotted-object-2.json │ │ │ │ │ ├── spec-extend-dotted-object-2.toml │ │ │ │ │ ├── spec-extend-dotted-object-3.json │ │ │ │ │ ├── spec-extend-dotted-object-3.toml │ │ │ │ │ ├── spec-table-1.json │ │ │ │ │ ├── spec-table-1.toml │ │ │ │ │ ├── spec-table-2.json │ │ │ │ │ ├── spec-table-2.toml │ │ │ │ │ ├── spec-table-3.json │ │ │ │ │ ├── spec-table-3.toml │ │ │ │ │ ├── spec-table-4.json │ │ │ │ │ ├── spec-table-4.toml │ │ │ │ │ ├── spec-table-5.json │ │ │ │ │ ├── spec-table-5.toml │ │ │ │ │ ├── spec-table-6.json │ │ │ │ │ ├── spec-table-6.toml │ │ │ │ │ ├── spec-table-7.json │ │ │ │ │ ├── spec-table-7.toml │ │ │ │ │ ├── spec-table-8.json │ │ │ │ │ ├── spec-table-8.toml │ │ │ │ │ ├── spec-table-inline-1.json │ │ │ │ │ ├── spec-table-inline-1.toml │ │ │ │ │ ├── spec-table-inline-2.json │ │ │ │ │ ├── spec-table-inline-2.toml │ │ │ │ │ ├── spec-table-inline-3.json │ │ │ │ │ ├── spec-table-inline-3.toml │ │ │ │ │ ├── spec-table.json │ │ │ │ │ └── spec-table.toml │ │ │ │ ├── apostrophes-in-literal-string.json │ │ │ │ ├── apostrophes-in-literal-string.toml │ │ │ │ ├── array │ │ │ │ ├── array-subtables.json │ │ │ │ ├── array-subtables.toml │ │ │ │ ├── open-parent-table.json │ │ │ │ └── open-parent-table.toml │ │ │ │ ├── boolean.json │ │ │ │ ├── boolean.toml │ │ │ │ ├── dates-and-times │ │ │ │ ├── datetimes.json │ │ │ │ ├── datetimes.toml │ │ │ │ ├── localtime.json │ │ │ │ └── localtime.toml │ │ │ │ ├── empty-inline-table.json │ │ │ │ ├── empty-inline-table.toml │ │ │ │ ├── five-quotes.json │ │ │ │ ├── five-quotes.toml │ │ │ │ ├── hex-char.json │ │ │ │ ├── hex-char.toml │ │ │ │ ├── multiline-basic-str │ │ │ │ ├── ends-in-whitespace-escape.json │ │ │ │ └── ends-in-whitespace-escape.toml │ │ │ │ ├── no-newlines.json │ │ │ │ ├── no-newlines.toml │ │ │ │ ├── trailing-comma.json │ │ │ │ └── trailing-comma.toml │ │ │ ├── test_data.py │ │ │ ├── test_error.py │ │ │ └── test_misc.py │ ├── syntax │ │ ├── pyrex.vim │ │ └── python.vim │ └── tests │ │ ├── motion_decorator.py │ │ ├── test.sh │ │ ├── test_bash │ │ ├── test_autocommands.sh │ │ ├── test_autopep8.sh │ │ ├── test_folding.sh │ │ ├── test_pymodelint.sh │ │ └── test_textobject.sh │ │ ├── test_helpers_bash │ │ ├── test_createvimrc.sh │ │ ├── test_prepare_between_tests.sh │ │ ├── test_prepare_once.sh │ │ └── test_variables.sh │ │ ├── test_helpers_vimscript │ │ ├── inserting_text.vim │ │ ├── md5sum.vim │ │ └── moving_around.vim │ │ ├── test_procedures_vimscript │ │ ├── autopep8.vim │ │ ├── folding1.vim │ │ ├── folding2.vim │ │ ├── folding3.vim │ │ ├── folding4.vim │ │ ├── pymodelint.vim │ │ ├── pymoderun.vim │ │ ├── pymodeversion.vim │ │ └── textobject.vim │ │ ├── test_python_sample_code │ │ ├── algorithms.py │ │ ├── folding1.py │ │ ├── folding2.py │ │ ├── from_autopep8.py │ │ └── pymoderun_sample.py │ │ └── utils │ │ ├── pymoderc │ │ └── vimrc ├── vim-qmake │ ├── README.adoc │ ├── ftdetect │ │ └── qmake.vim │ ├── ftplugin │ │ └── qmake.vim │ └── syntax │ │ └── qmake.vim ├── vim-qml │ ├── CONTRIBUTORS.md │ ├── README.md │ ├── bin │ │ └── update_contributors.sh │ ├── ftdetect │ │ └── qml.vim │ ├── ftplugin │ │ └── qml.vim │ ├── indent │ │ └── qml.vim │ └── syntax │ │ └── qml.vim ├── vim-racket │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── racket.vim │ ├── ftplugin │ │ └── racket.vim │ ├── indent │ │ └── racket.vim │ ├── syntax │ │ └── racket.vim │ └── test │ │ ├── delimiters.rkt │ │ ├── number-syntax-test.rkt │ │ └── type-syntax.rkt ├── vim-raku │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── raku.vim │ ├── ftplugin │ │ └── raku.vim │ ├── indent │ │ └── raku.vim │ ├── syntax │ │ └── raku.vim │ ├── t │ │ └── 07_raku_folding.t │ ├── t_source │ │ └── raku │ │ │ ├── basic.t │ │ │ ├── basic.t.html │ │ │ ├── comments.t │ │ │ ├── comments.t.html │ │ │ ├── grammars.t │ │ │ ├── grammars.t.html │ │ │ ├── metaops.t │ │ │ ├── metaops.t.html │ │ │ ├── pod.t │ │ │ ├── pod.t.html │ │ │ ├── quoting.t │ │ │ └── quoting.t.html │ └── tools │ │ └── preproc.pl ├── vim-raml │ ├── README.md │ ├── doc │ │ └── vim-raml.txt │ ├── ftdetect │ │ └── raml.vim │ ├── ftplugin │ │ └── raml.vim │ └── syntax │ │ └── raml.vim ├── vim-ruby-bundler │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── compiler │ │ └── bundler.vim │ ├── doc │ │ └── bundler.txt │ └── plugin │ │ └── bundler.vim ├── vim-ruby-minitest │ ├── README.markdown │ ├── after │ │ └── syntax │ │ │ ├── ruby.vim │ │ │ └── ruby │ │ │ └── minitest.vim │ └── doc │ │ └── ft-ruby-minitest-syntax.txt ├── vim-ruby-rails │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── after │ │ ├── ftplugin │ │ │ ├── coffee │ │ │ │ └── rails.vim │ │ │ ├── css │ │ │ │ └── rails.vim │ │ │ ├── javascript │ │ │ │ └── rails.vim │ │ │ ├── less │ │ │ │ └── rails.vim │ │ │ ├── ruby │ │ │ │ └── rails.vim │ │ │ ├── sass │ │ │ │ └── rails.vim │ │ │ └── scss │ │ │ │ └── rails.vim │ │ └── syntax │ │ │ ├── coffee │ │ │ └── rails.vim │ │ │ ├── css │ │ │ └── rails.vim │ │ │ ├── eruby │ │ │ └── rails.vim │ │ │ ├── haml │ │ │ └── rails.vim │ │ │ ├── javascript │ │ │ └── rails.vim │ │ │ ├── less │ │ │ └── rails.vim │ │ │ ├── ruby │ │ │ └── rails.vim │ │ │ ├── sass │ │ │ └── rails.vim │ │ │ └── scss │ │ │ └── rails.vim │ ├── autoload │ │ └── rails.vim │ ├── compiler │ │ └── rails.vim │ ├── doc │ │ └── rails.txt │ ├── ftplugin │ │ └── railslog.vim │ ├── plugin │ │ └── rails.vim │ └── syntax │ │ └── railslog.vim ├── vim-ruby-rake │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── doc │ │ └── rake.txt │ └── plugin │ │ └── rake.vim ├── vim-ruby-rbs │ ├── README.md │ ├── ftplugin │ │ └── rbs.vim │ ├── indent │ │ └── rbs.vim │ └── syntax │ │ └── rbs.vim ├── vim-ruby-rdoc │ ├── Bakefile │ ├── Manifest │ ├── README.rdoc │ ├── ftdetect │ │ └── rdoc.vim │ ├── snippets │ │ └── rdoc.snippets │ └── syntax │ │ └── rdoc.vim ├── vim-ruby-rspec │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── rspec.vim │ └── syntax │ │ └── rspec.vim ├── vim-ruby-rvm │ ├── CONTRIBUTING.markdown │ ├── README.markdown │ ├── doc │ │ └── rvm.txt │ └── plugin │ │ └── rvm.vim ├── vim-ruby │ ├── .rspec │ ├── CONTRIBUTORS │ ├── ChangeLog │ ├── Gemfile │ ├── Gemfile.lock │ ├── INSTALL.markdown │ ├── NEWS │ ├── README.markdown │ ├── autoload │ │ └── rubycomplete.vim │ ├── compiler │ │ ├── eruby.vim │ │ ├── rake.vim │ │ ├── rspec.vim │ │ ├── ruby.vim │ │ └── rubyunit.vim │ ├── doc │ │ ├── ft-ruby-indent.txt │ │ ├── ft-ruby-omni.txt │ │ ├── ft-ruby-plugin.txt │ │ └── ft-ruby-syntax.txt │ ├── etc │ │ └── examples │ │ │ ├── generators │ │ │ └── syntax.rb │ │ │ └── indent │ │ │ └── closing_brackets.rb │ ├── ftdetect │ │ ├── ruby.vim │ │ └── ruby_extra.vim │ ├── ftplugin │ │ ├── eruby.vim │ │ └── ruby.vim │ ├── indent │ │ ├── eruby.vim │ │ └── ruby.vim │ ├── spec │ │ ├── indent │ │ │ ├── arguments_spec.rb │ │ │ ├── basic_spec.rb │ │ │ ├── blocks_spec.rb │ │ │ ├── case_in_spec.rb │ │ │ ├── continuations_spec.rb │ │ │ ├── end_constructs_spec.rb │ │ │ ├── eruby_spec.rb │ │ │ ├── hanging_elements_spec.rb │ │ │ ├── identifiers_spec.rb │ │ │ ├── indent_access_modifier_spec.rb │ │ │ ├── method_definitions_spec.rb │ │ │ ├── nesting_spec.rb │ │ │ └── splat_spec.rb │ │ ├── spec_helper.rb │ │ ├── syntax │ │ │ ├── blocks_spec.rb │ │ │ ├── characters_spec.rb │ │ │ ├── comments_spec.rb │ │ │ ├── line_continuations_spec.rb │ │ │ ├── maxmempattern_limit_spec.rb │ │ │ ├── methods_spec.rb │ │ │ ├── operators_spec.rb │ │ │ ├── regular_expressions_spec.rb │ │ │ ├── statement_modifiers_spec.rb │ │ │ ├── strings │ │ │ │ ├── heredoc_spec.rb │ │ │ │ ├── interpolation_spec.rb │ │ │ │ └── strings_spec.rb │ │ │ └── symbols_spec.rb │ │ └── vim │ │ │ └── plugin │ │ │ └── syntax_test.vim │ └── syntax │ │ ├── eruby.vim │ │ └── ruby.vim ├── vim-rust │ ├── .vintrc.yml │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── after │ │ └── syntax │ │ │ └── rust.vim │ ├── autoload │ │ ├── cargo.vim │ │ ├── cargo │ │ │ └── quickfix.vim │ │ ├── rust.vim │ │ ├── rust │ │ │ ├── debugging.vim │ │ │ ├── delimitmate.vim │ │ │ └── tags.vim │ │ └── rustfmt.vim │ ├── compiler │ │ ├── cargo.vim │ │ └── rustc.vim │ ├── ctags │ │ └── rust.ctags │ ├── doc │ │ └── rust.txt │ ├── ftdetect │ │ └── rust.vim │ ├── ftplugin │ │ ├── rust.vim │ │ └── rust │ │ │ └── tagbar.vim │ ├── indent │ │ └── rust.vim │ ├── plugin │ │ ├── cargo.vim │ │ └── rust.vim │ ├── syntax │ │ └── rust.vim │ ├── syntax_checkers │ │ └── rust │ │ │ ├── cargo.vim │ │ │ └── rustc.vim │ ├── test │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── coverage.vader │ │ ├── indent.vader │ │ ├── run-tests │ │ ├── sample.rs │ │ └── vimrc │ └── triagebot.toml ├── vim-sbt │ ├── README │ ├── ftdetect │ │ └── sbt.vim │ └── syntax │ │ └── sbt.vim ├── vim-scala │ ├── .travis.yml │ ├── LICENSE.TXT │ ├── README.md │ ├── Rakefile │ ├── after │ │ └── syntax │ │ │ └── help.vim │ ├── compiler │ │ └── sbt.vim │ ├── ctags │ │ └── scala.ctags │ ├── doc │ │ └── scala.txt │ ├── ftdetect │ │ └── scala.vim │ ├── ftplugin │ │ ├── scala.vim │ │ ├── scala.xpt.vim │ │ └── scala │ │ │ └── tagbar.vim │ ├── indent │ │ ├── README │ │ ├── scala.vim │ │ └── testfile.scala │ ├── plugin │ │ └── scala.vim │ ├── spec │ │ ├── fixtures │ │ │ ├── multiple_newlines.expected.scala │ │ │ ├── multiple_newlines.scala │ │ │ ├── no_newline.expected.scala │ │ │ ├── no_newline.scala │ │ │ ├── no_newline_after.expected.scala │ │ │ ├── no_newline_after.scala │ │ │ ├── no_package.expected.scala │ │ │ ├── no_package.scala │ │ │ ├── vanilla.expected.scala │ │ │ └── vanilla.scala │ │ ├── import_sorting_spec.rb │ │ └── spec_helper.rb │ └── syntax │ │ ├── scala.vim │ │ └── testfile.scala ├── vim-slim │ ├── LICENSE.txt │ ├── README.md │ ├── ftdetect │ │ └── slim.vim │ ├── ftplugin │ │ └── slim.vim │ ├── indent │ │ └── slim.vim │ └── syntax │ │ └── slim.vim ├── vim-smarty │ ├── README.md │ ├── ftplugin │ │ └── smarty.vim │ └── syntax │ │ └── smarty.vim ├── vim-solidity │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── solidity.vim │ ├── ftplugin │ │ └── solidity.vim │ ├── indent │ │ └── solidity.vim │ └── syntax │ │ └── solidity.vim ├── vim-swift │ ├── LICENSE │ ├── README.md │ ├── ale_linters │ │ └── swift │ │ │ └── swiftpm.vim │ ├── compiler │ │ └── swift.vim │ ├── ctags │ │ └── swift.cnf │ ├── example │ │ ├── MainViewController.swift │ │ ├── URL.swift │ │ └── example.swift │ ├── ftdetect │ │ └── swift.vim │ ├── ftplugin │ │ └── swift.vim │ ├── indent │ │ └── swift.vim │ ├── plugin │ │ └── swift.vim │ ├── syntax │ │ └── swift.vim │ └── syntax_checkers │ │ └── swift │ │ ├── swiftlint.vim │ │ └── swiftpm.vim ├── vim-swig │ ├── LICENSE-en.md │ ├── README.md │ ├── addon-info.json │ ├── doc │ │ └── vim-swig.txt │ ├── ftdetect │ │ └── swig.vim │ ├── ftplugin │ │ └── swig.vim │ └── syntax │ │ └── swig.vim ├── vim-toml │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── toml.vim │ ├── ftplugin │ │ └── toml.vim │ ├── syntax │ │ └── toml.vim │ └── test │ │ └── test.toml ├── vim-twig │ ├── README.markdown │ ├── filetype.vim │ ├── ftplugin │ │ └── twig.vim │ ├── syntax │ │ └── twig.vim │ └── vim-twig-addon-info.txt ├── vim-vala │ ├── LICENSE │ ├── README.md │ ├── UltiSnips │ │ └── vala.snippets │ ├── ftdetect │ │ └── vala.vim │ ├── ftplugin │ │ └── vala.vim │ ├── indent │ │ └── vala.vim │ ├── plugin │ │ └── vala.vim │ ├── syntax │ │ └── vala.vim │ └── syntax_checkers │ │ └── vala │ │ └── valac.vim ├── vim-wasm │ ├── README.md │ ├── ftdetect │ │ └── wast.vim │ ├── ftplugin │ │ └── wast.vim │ ├── indent │ │ └── wast.vim │ └── syntax │ │ └── wast.vim ├── vim-wxapp │ ├── Readme.md │ ├── UltiSnips │ │ ├── javascript │ │ │ └── wx.snippets │ │ ├── json │ │ │ └── wx.snippets │ │ ├── wxml │ │ │ └── wx.snippets │ │ ├── wxs │ │ │ └── wx.snippets │ │ └── wxss │ │ │ └── wx.snippets │ ├── after │ │ └── ftplugin │ │ │ └── wxss.vim │ ├── autoload │ │ ├── wxapp.vim │ │ ├── wxml.json │ │ └── wxmlcomplete.vim │ ├── doc │ │ └── wxapp.txt │ ├── ftdetect │ │ ├── wxml.vim │ │ ├── wxs.vim │ │ └── wxss.vim │ ├── ftplugin │ │ ├── wxml.vim │ │ ├── wxs.vim │ │ └── wxss.vim │ ├── indent │ │ ├── wxml.vim │ │ ├── wxs.vim │ │ └── wxss.vim │ ├── plugin │ │ └── wxapp.vim │ ├── syntax │ │ ├── wxml.vim │ │ ├── wxs.vim │ │ └── wxss.vim │ └── tern │ │ └── wxapp.json ├── vim-xml │ ├── README │ ├── doc │ │ └── xml-plugin.txt │ └── ftplugin │ │ └── xml.vim ├── vim-zephir │ ├── LICENSE │ ├── README.md │ ├── ftdetect │ │ └── zephir.vim │ └── syntax │ │ └── zephir.vim └── vimwiki │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE.md │ ├── README-cn.md │ ├── README.md │ ├── autoload │ └── vimwiki │ │ ├── base.vim │ │ ├── customwiki2html.sh │ │ ├── default.tpl │ │ ├── diary.vim │ │ ├── emoji.vim │ │ ├── html.vim │ │ ├── lst.vim │ │ ├── markdown_base.vim │ │ ├── path.vim │ │ ├── style.css │ │ ├── tags.vim │ │ ├── tbl.vim │ │ ├── u.vim │ │ └── vars.vim │ ├── doc │ ├── design_notes.md │ ├── specification.wiki │ ├── vimwiki-emoji.txt │ └── vimwiki.txt │ ├── ftplugin │ └── vimwiki.vim │ ├── plugin │ └── vimwiki.vim │ └── syntax │ ├── vimwiki.vim │ └── vimwiki_markdown_custom.vim ├── colors └── molokai.vim ├── dict ├── Dockerfile.txt ├── c.txt ├── cpp.txt ├── css.txt ├── docker-compose.txt ├── elixir.txt ├── go.txt ├── html.txt ├── java.txt ├── javascript.txt ├── love2d.txt ├── lua.txt ├── mysql.txt ├── perl.txt ├── php.txt ├── python.txt ├── ruby.txt └── rust.txt └── snippets ├── _.snippets ├── blade.snippets ├── clojure.snippets ├── coffee.snippets ├── cpp.snippets ├── crystal.snippets ├── cs.snippets ├── css.snippets ├── d.snippets ├── dart.snippets ├── eelixir.snippets ├── elixir.snippets ├── elm.snippets ├── erlang.snippets ├── eruby.snippets ├── fsharp.snippets ├── go.snippets ├── gohtmltmpl.snippets ├── graphql.snippets ├── groovy.snippets ├── haskell.snippets ├── haxe.snippets ├── html.snippets ├── htmldjango.snippets ├── io.snippets ├── java.snippets ├── javascript.snippets ├── jinja.snippets ├── js_angular.snippets ├── js_react.snippets ├── js_vue.snippets ├── js_wxapp.snippets ├── jst.snippets ├── jsx.snippets ├── julia.snippets ├── kotlin.snippets ├── less.snippets ├── lisp.snippets ├── ls.snippets ├── lua.snippets ├── make.snippets ├── mustache.snippets ├── mysql.snippets ├── newlisp.snippets ├── nginx.snippets ├── nim.snippets ├── objc.snippets ├── ocaml.snippets ├── perl.snippets ├── phoenix.snippets ├── php.snippets ├── pug.snippets ├── python.snippets ├── r.snippets ├── racket.snippets ├── rails.snippets ├── red.snippets ├── rspec.snippets ├── ruby.snippets ├── rust.snippets ├── scala.snippets ├── scheme.snippets ├── scss.snippets ├── sh.snippets ├── slim.snippets ├── smarty.snippets ├── solidity.snippets ├── swift.snippets ├── tpl_angular.snippets ├── tpl_blaze.snippets ├── tpl_thinkphp.snippets ├── twig.snippets ├── typescript.snippets ├── vala.snippets ├── vim.snippets ├── volt.snippets ├── vue.snippets ├── wxml.snippets ├── wxss.snippets ├── yaml.snippets └── zephir.snippets /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/README.md -------------------------------------------------------------------------------- /_vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/_vimrc -------------------------------------------------------------------------------- /macvim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/macvim.jpg -------------------------------------------------------------------------------- /vimfiles/autoload/pathogen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/autoload/pathogen.vim -------------------------------------------------------------------------------- /vimfiles/bundle/ack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/ack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/ack/autoload/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/autoload/ack.vim -------------------------------------------------------------------------------- /vimfiles/bundle/ack/doc/ack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/doc/ack.txt -------------------------------------------------------------------------------- /vimfiles/bundle/ack/ftplugin/qf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/ftplugin/qf.vim -------------------------------------------------------------------------------- /vimfiles/bundle/ack/plugin/ack.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ack/plugin/ack.vim -------------------------------------------------------------------------------- /vimfiles/bundle/airline-themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline-themes/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/airline-themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline-themes/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/airline/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/airline/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/CONTRIBUTING.md -------------------------------------------------------------------------------- /vimfiles/bundle/airline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/airline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/airline/doc/airline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/doc/airline.txt -------------------------------------------------------------------------------- /vimfiles/bundle/airline/test/.themisrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/airline/test/.themisrc -------------------------------------------------------------------------------- /vimfiles/bundle/auto-pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/auto-pairs/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/bufexplorer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/bufexplorer/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/bufexplorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/bufexplorer/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/css-color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/css-color/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/css-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/css-color/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/css-color/after/syntax/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | runtime after/syntax/typescript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/css-color/tests/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/css-color/tests/bench -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp-funky/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp-funky/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp-funky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp-funky/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/autoload/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/autoload/ctrlp.vim -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/doc/ctrlp.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/doc/ctrlp.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/doc/ctrlp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/doc/ctrlp.txt -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/plugin/ctrlp.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/plugin/ctrlp.vim -------------------------------------------------------------------------------- /vimfiles/bundle/ctrlp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/ctrlp/readme.md -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/AUTHORS -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/ChangeLog -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.0 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/dict.txt -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/arabic.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/arabic.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/autocmd.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/autocmd.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/builtin.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/builtin.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/change.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/change.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/channel.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/channel.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/cmdline.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/cmdline.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/debug.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/debug.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/debugger.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/debugger.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/develop.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/develop.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/diff.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/diff.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/digraph.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/digraph.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/editing.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/editing.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/eval.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/eval.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/farsi.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/farsi.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/filetype.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/filetype.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/fold.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/fold.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_ada.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_ada.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_context.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_context.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_mp.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_mp.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_ps1.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_ps1.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_raku.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_raku.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_rust.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_rust.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/ft_sql.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/ft_sql.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/gui.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/gui.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/gui_w32.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/gui_w32.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/gui_x11.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/gui_x11.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/hangulin.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/hangulin.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/hebrew.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/hebrew.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/help.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/help.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/helphelp.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/helphelp.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/howto.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/howto.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_cscop.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_cscop.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_lua.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_lua.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_mzsch.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_mzsch.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_ole.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_ole.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_perl.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_perl.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_pyth.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_pyth.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_ruby.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_ruby.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_sniff.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_sniff.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/if_tcl.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/if_tcl.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/indent.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/indent.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/index.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/index.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/insert.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/insert.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/intro.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/intro.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/map.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/map.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/mbyte.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/mbyte.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/message.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/message.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/mlang.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/mlang.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/motion.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/motion.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/netbeans.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/netbeans.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/options.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/options.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_390.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_390.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_amiga.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_amiga.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_beos.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_beos.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_dos.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_dos.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_haiku.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_haiku.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_mac.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_mac.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_mint.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_mint.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_msdos.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_msdos.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_os2.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_os2.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_qnx.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_qnx.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_risc.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_risc.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_unix.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_unix.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_vms.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_vms.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/os_win32.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/os_win32.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pattern.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pattern.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_gzip.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_gzip.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_logipat.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_logipat.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_netrw.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_netrw.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_paren.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_paren.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_spec.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_spec.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_tar.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_tar.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_vimball.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_vimball.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/pi_zip.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/pi_zip.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/popup.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/popup.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/print.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/print.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/quickfix.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/quickfix.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/quickref.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/quickref.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/quotes.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/quotes.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/recover.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/recover.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/remote.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/remote.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/repeat.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/repeat.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/rileft.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/rileft.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/russian.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/russian.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/scroll.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/scroll.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/sign.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/sign.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/spell.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/spell.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/sponsor.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/sponsor.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/starting.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/starting.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/syntax.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/syntax.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/tabpage.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/tabpage.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/tags-cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/tags-cn -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/tagsrch.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/tagsrch.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/term.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/term.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/terminal.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/terminal.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/testing.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/testing.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/textprop.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/textprop.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/tips.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/tips.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/todo.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/todo.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/uganda.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/uganda.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/undo.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/undo.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/userfunc.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/userfunc.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_01.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_01.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_02.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_02.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_03.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_03.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_04.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_04.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_05.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_05.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_06.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_06.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_07.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_07.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_08.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_08.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_09.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_09.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_10.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_10.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_11.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_11.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_12.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_12.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_20.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_20.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_21.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_21.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_22.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_22.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_23.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_23.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_24.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_24.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_25.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_25.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_26.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_26.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_27.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_27.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_28.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_28.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_29.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_29.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_30.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_30.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_31.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_31.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_32.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_32.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_40.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_40.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_41.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_41.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_42.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_42.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_43.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_43.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_44.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_44.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_45.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_45.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_50.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_50.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_51.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_51.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_52.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_52.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_90.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_90.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/usr_toc.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/usr_toc.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/various.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/various.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version4.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version4.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version5.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version5.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version6.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version6.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version7.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version7.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version8.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version8.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/version9.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/version9.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/vi_diff.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/vi_diff.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/vim9.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/vim9.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/visual.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/visual.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/windows.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/windows.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/doc/workshop.cnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/doc/workshop.cnx -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/guides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/guides.txt -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/plugin/vimcdoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/plugin/vimcdoc.vim -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/syntax/help_cn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/syntax/help_cn.vim -------------------------------------------------------------------------------- /vimfiles/bundle/doczh/vimcdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/doczh/vimcdoc.sh -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/.travis.yml -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/README.mkd -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/TUTORIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/TUTORIAL -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/TUTORIAL.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/TUTORIAL.mkd -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/doc/emmet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/doc/emmet.txt -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/emmet.vim.vimup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/emmet.vim.vimup -------------------------------------------------------------------------------- /vimfiles/bundle/emmet/unittest.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/emmet/unittest.vim -------------------------------------------------------------------------------- /vimfiles/bundle/eregex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/eregex/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/eregex/config.mk: -------------------------------------------------------------------------------- 1 | VERSION=2.62 2 | 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/eregex/doc/eregex.jax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/eregex/doc/eregex.jax -------------------------------------------------------------------------------- /vimfiles/bundle/eregex/doc/eregex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/eregex/doc/eregex.txt -------------------------------------------------------------------------------- /vimfiles/bundle/fencview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/fencview/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/fencview/fenc_tests/bom_utf-8.txt: -------------------------------------------------------------------------------- 1 | UTF-8 chinese UTF8格式的中文,包含中文标点符号“”。看看能不能看清楚 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/fencview/fenc_tests/shishi-little.txt: -------------------------------------------------------------------------------- 1 | ʩʦʵʫʿ,ʶʳʯʨʬʷ 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/fencview/fenc_tests/utf8cn.txt: -------------------------------------------------------------------------------- 1 | UTF-8 chinese UTF8格式的中文,包含中文标点符号“”。看看能不能看清楚 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/fencview/fenc_tests/utf_8.txt: -------------------------------------------------------------------------------- 1 | 中文 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/gitgutter/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/gitgutter/LICENCE -------------------------------------------------------------------------------- /vimfiles/bundle/gitgutter/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/gitgutter/README.mkd -------------------------------------------------------------------------------- /vimfiles/bundle/gitgutter/test/fixture.txt: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | f 7 | g 8 | h 9 | i 10 | j 11 | 12 | -------------------------------------------------------------------------------- /vimfiles/bundle/gitgutter/test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/gitgutter/test/test -------------------------------------------------------------------------------- /vimfiles/bundle/indentLine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/indentLine/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/indentLine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/indentLine/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/nerdcommenter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/nerdcommenter/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/nerdtree/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/nerdtree/.vintrc.yaml -------------------------------------------------------------------------------- /vimfiles/bundle/nerdtree/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/nerdtree/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/nerdtree/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/nerdtree/LICENCE -------------------------------------------------------------------------------- /vimfiles/bundle/nerdtree/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/nerdtree/_config.yml -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/Dockerfile -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/ftplugin/javascript.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/package.json -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/tests/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | const a = () => { return 2; }; 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/tests/fixtures/foo.rb: -------------------------------------------------------------------------------- 1 | for i in [1, 2, 3] do 2 | p i 3 | end 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/tests/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/tests/vimrc -------------------------------------------------------------------------------- /vimfiles/bundle/prettier/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/prettier/yarn.lock -------------------------------------------------------------------------------- /vimfiles/bundle/promptline/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | roadmap.md 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/promptline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/promptline/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/promptline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/promptline/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/snipmate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/snipmate/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/snipmate/t/parser.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/snipmate/t/parser.vim -------------------------------------------------------------------------------- /vimfiles/bundle/snipmate/t/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/snipmate/t/tests.sh -------------------------------------------------------------------------------- /vimfiles/bundle/sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/sync/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/sync/plugin/sync.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/sync/plugin/sync.vim -------------------------------------------------------------------------------- /vimfiles/bundle/syntastic/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/syntastic/LICENCE -------------------------------------------------------------------------------- /vimfiles/bundle/tabular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tabular/LICENSE.md -------------------------------------------------------------------------------- /vimfiles/bundle/tabular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tabular/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/tagbar/.info: -------------------------------------------------------------------------------- 1 | tagbar 2 | 3465 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/tagbar/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tagbar/.vintrc.yaml -------------------------------------------------------------------------------- /vimfiles/bundle/tagbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tagbar/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/tagbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tagbar/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/tagbar/doc/tagbar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tagbar/doc/tagbar.txt -------------------------------------------------------------------------------- /vimfiles/bundle/targets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/targets/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/cheatsheet.md -------------------------------------------------------------------------------- /vimfiles/bundle/targets/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/plugins.md -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test.vim -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test1.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test1.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test1.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test2.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test2.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test2.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test3.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test3.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test3.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test4.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test4.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test4.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test5.in: -------------------------------------------------------------------------------- 1 | axb 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test5.ok: -------------------------------------------------------------------------------- 1 | ___ 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test6.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test6.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test6.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test7.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test7.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test7.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test8.in: -------------------------------------------------------------------------------- 1 | word another 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test8.ok: -------------------------------------------------------------------------------- 1 | foo another 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test9.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test9.in -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/test9.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/test9.ok -------------------------------------------------------------------------------- /vimfiles/bundle/targets/test/testM.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/targets/test/testM.ok -------------------------------------------------------------------------------- /vimfiles/bundle/tig-explorer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tig-explorer/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/CHANGES.TXT -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/LICENSE.TXT -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/README -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/addon-info.json -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/doc/tlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/doc/tlib.txt -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/etc/tpl_tlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/etc/tpl_tlib.txt -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/macros/tlib.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/macros/tlib.vim -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/spec/tlib/rx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/spec/tlib/rx.vim -------------------------------------------------------------------------------- /vimfiles/bundle/tlib/test/tlib.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/tlib/test/tlib.vim -------------------------------------------------------------------------------- /vimfiles/bundle/undotree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/undotree/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-blade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-blade/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-blade/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-blade/vimrc -------------------------------------------------------------------------------- /vimfiles/bundle/vim-caddy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-caddy/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-caddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-caddy/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-clojure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-clojure/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-clojure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-clojure/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-cpp/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-cppstl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-cppstl/README -------------------------------------------------------------------------------- /vimfiles/bundle/vim-crystal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-crystal/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csharp/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-css3/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/animation-worklet-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/animations-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/backgrounds-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/box-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/break-3.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontAttr contained recto verso 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/cascade-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/cascade-5.vim: -------------------------------------------------------------------------------- 1 | syn match cssFontAttr contained "\" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/color-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/conditional-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/conditional-4.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/cssom-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/easing-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/flexbox-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/font-loading-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/geometry-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/grid-2.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/html5.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssTagName picture rb rtc slot template 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/layout-api-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/multicol-1.vim: -------------------------------------------------------------------------------- 1 | syn match cssFontAttr contained "\" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/namespace-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/page-3.vim: -------------------------------------------------------------------------------- 1 | syn keyword cssFontProp contained marks bleed 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/resize-observer-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/scroll-anchoring-1.vim: -------------------------------------------------------------------------------- 1 | syn match cssFontProp contained "\" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/style-attr.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/syntax-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/tables-3.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/transforms-1.vim: -------------------------------------------------------------------------------- 1 | syn match cssFontProp contained "\" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/transitions-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/typed-om-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/variables-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/web-animations-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/worklets-1.vim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-css3/after/syntax/css/writing-modes-4.vim: -------------------------------------------------------------------------------- 1 | syn match cssFontAttr contained "\" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csv/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csv/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csv/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csv/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csv/csv.vmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csv/csv.vmb -------------------------------------------------------------------------------- /vimfiles/bundle/vim-csv/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-csv/todo.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/LICENSE.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/ftdetect/d.vim: -------------------------------------------------------------------------------- 1 | autocmd BufNewFile,BufRead *.d setf d 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/ftdetect/dd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/ftdetect/dd.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/indent/d.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/indent/d.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/syntax/d.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/syntax/d.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/syntax/dcov.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/syntax/dcov.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/syntax/dd.vim: -------------------------------------------------------------------------------- 1 | runtime! /syntax/ddoc.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/syntax/ddoc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/syntax/ddoc.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/syntax/dsdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/syntax/dsdl.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/array.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/array.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/asm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/asm.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/dub.sdl -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/hybrid.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/hybrid.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/import.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/import.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/module.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/module.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-d/tests/param.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-d/tests/param.d -------------------------------------------------------------------------------- /vimfiles/bundle/vim-dart/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-dart/AUTHORS -------------------------------------------------------------------------------- /vimfiles/bundle/vim-dart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-dart/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-dart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-dart/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-dart/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-dart/doc/dart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-dart/doc/dart.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-docker/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-docker/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-docker/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/Dockerfile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/Gemfile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/bin/nvim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/bin/nvim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/bin/rspec -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/bin/vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/bin/vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elixir/test.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elixir/test.vimrc -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elm/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-elm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-elm/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-erlang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-erlang/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/LICENSE.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/README.mkd -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/install.sh -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/paket.lock -------------------------------------------------------------------------------- /vimfiles/bundle/vim-fsharp/test.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-fsharp/test.fsx -------------------------------------------------------------------------------- /vimfiles/bundle/vim-gitignore/List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-gitignore/List.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/.codecov.yml -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/.coveragerc -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/.dockerignore -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/.editorconfig -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/.vintrc.yaml -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/Dockerfile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/config/buildtags/go.mod: -------------------------------------------------------------------------------- 1 | module config 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/lint/src/errcheck/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/errcheck 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/lint/src/foo/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/foo 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/lint/src/lint/baz.go: -------------------------------------------------------------------------------- 1 | package lint 2 | 3 | func baz() {} 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/lint/src/lint/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/lint 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/lint/src/vet/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/vet 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/package/src/package/bar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/package/src/package/baz/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/package/src/package/go.mod: -------------------------------------------------------------------------------- 1 | module package 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/package/src/package/vendor/foo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/src/example/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/example 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/src/play/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/play 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/src/showname/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/showname 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/src/timeout/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/timeout 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/autoload/go/test-fixtures/test/src/veterror/go.mod: -------------------------------------------------------------------------------- 1 | module vim-go.test/veterror 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/doc/vim-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/doc/vim-go.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/ftplugin/gomod/mappings.vim: -------------------------------------------------------------------------------- 1 | nnoremap (go-mod-fmt) :call go#mod#Format() 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/gosnippets/minisnip/_go_err: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | return {{+err+}} 3 | } 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/gosnippets/minisnip/_go_errt: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | t.Fatal(err) 3 | } 4 | {{++}} 5 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/gosnippets/minisnip/_go_ff: -------------------------------------------------------------------------------- 1 | fmt.Printf("%#v\n", {{++}}) 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/indent/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/indent/go.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/plugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/plugin/go.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/scripts/lint -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/scripts/test -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/syntax/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/syntax/go.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-go/test/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-go/test/parse.go -------------------------------------------------------------------------------- /vimfiles/bundle/vim-gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-gradle/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-graphql/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-graphql/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-graphql/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/after/syntax/javascriptreact/graphql.vim: -------------------------------------------------------------------------------- 1 | runtime! after/syntax/javascript/graphql.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/after/syntax/typescriptreact/graphql.vim: -------------------------------------------------------------------------------- 1 | runtime! after/syntax/typescript/graphql.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-graphql/after/syntax/vue/graphql.vim: -------------------------------------------------------------------------------- 1 | runtime! after/syntax/javascript/graphql.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-haskell/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-haskell/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test001/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test002/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test003/test.vim: -------------------------------------------------------------------------------- 1 | 2jfIi{-# UNPACK #-} ! 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test004/test.hs: -------------------------------------------------------------------------------- 1 | foo = 2 | { field = bar "(" 3 | } 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test004/test.vim: -------------------------------------------------------------------------------- 1 | jo, quux = "" 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test005/test.vim: -------------------------------------------------------------------------------- 1 | ja  2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test006/test.vim: -------------------------------------------------------------------------------- 1 | obar 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test007/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test008/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test009/test.hs: -------------------------------------------------------------------------------- 1 | let x = 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test009/test.vim: -------------------------------------------------------------------------------- 1 | o123 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test010/test.hs: -------------------------------------------------------------------------------- 1 | SomeRecord { name = ")" 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test010/test.vim: -------------------------------------------------------------------------------- 1 | o,  2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test011/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test012/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test013/expected.hs: -------------------------------------------------------------------------------- 1 | -- 2 | type F k = [k] 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test013/test.hs: -------------------------------------------------------------------------------- 1 | -- 2 | type F k = [k] 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test013/test.vim: -------------------------------------------------------------------------------- 1 | =G 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test014/test.hs: -------------------------------------------------------------------------------- 1 | foo :: Monad m 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test015/test.hs: -------------------------------------------------------------------------------- 1 | f x = y 2 | where 3 | y = 2 * x 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test016/test.vim: -------------------------------------------------------------------------------- 1 | Gofoo x = x 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test017/test.hs: -------------------------------------------------------------------------------- 1 | where countUntilClosed (x:xs) 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test017/test.vim: -------------------------------------------------------------------------------- 1 | o| x 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test018/test.vim: -------------------------------------------------------------------------------- 1 | G== 2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haskell/tests/indent/test019/test.vim: -------------------------------------------------------------------------------- 1 | Go| o ,o =  2 | :saveas! result.hs 3 | :q! 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haxe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-haxe/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haxe/doc/vaxe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-haxe/doc/vaxe.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haxe/ftplugin/hxml.vim: -------------------------------------------------------------------------------- 1 | call vaxe#DefaultHxml(expand("%")) 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-haxe/plugin/hxml.vim: -------------------------------------------------------------------------------- 1 | autocmd FileType hxml setlocal commentstring=#%s 2 | 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-html5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-html5/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-html5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-html5/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-html5/config.mk: -------------------------------------------------------------------------------- 1 | VERSION=0.26 2 | 3 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-io/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-io/indent/io.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-io/indent/io.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-io/syntax/io.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-io/syntax/io.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jinja/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jinja/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jinja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jinja/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-coffeescript/Todo.md: -------------------------------------------------------------------------------- 1 | - Don't highlight bad operator combinations 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-coffeescript/ftplugin/litcoffee.vim: -------------------------------------------------------------------------------- 1 | runtime ftplugin/coffee.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-coffeescript/test/test.haml: -------------------------------------------------------------------------------- 1 | :coffeescript 2 | class Hello 3 | # test 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-indent/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-js-indent/test.js -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-svelte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-js-svelte/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-tsuquyomi/test/es6import/vest/resources/importDecPatterns/empty.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-typescript/compiler/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | runtime! compiler/typescript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-typescript/ftplugin/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | runtime! ftplugin/typescript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-typescript/indent/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | runtime! indent/typescript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-typescript/syntax/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | runtime! syntax/typescript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-js-vue/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-js-vue/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-js-vue/UNLICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-json/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-json/license.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-json/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-json/readme.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jst/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jst/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jst/README -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/case.js -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/config.mk -------------------------------------------------------------------------------- /vimfiles/bundle/vim-jsx/extras/ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-jsx/extras/ctags -------------------------------------------------------------------------------- /vimfiles/bundle/vim-julia/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-julia/INSTALL.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-julia/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-julia/LICENSE.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-julia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-julia/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-kotlin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-kotlin/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-kotlin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-kotlin/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-less/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lfe/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-lfe/README.rst -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-lisp/CHANGELOG.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-lisp/LICENSE.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-lisp/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/after: -------------------------------------------------------------------------------- 1 | vim/after -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/autoload: -------------------------------------------------------------------------------- 1 | vim/autoload -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/doc: -------------------------------------------------------------------------------- 1 | vim/doc -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/ftplugin: -------------------------------------------------------------------------------- 1 | vim/ftplugin -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/syntax: -------------------------------------------------------------------------------- 1 | vim/syntax -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/vim/addon-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vlime-api" 3 | } 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lisp/vim/ftplugin/lisp_vlime.vim: -------------------------------------------------------------------------------- 1 | call vlime#plugin#Setup() 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-llvm/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-llvm/CREDITS.TXT -------------------------------------------------------------------------------- /vimfiles/bundle/vim-llvm/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-llvm/LICENSE.TXT -------------------------------------------------------------------------------- /vimfiles/bundle/vim-llvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-llvm/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-llvm/scripts.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-llvm/scripts.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-lua/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-markdown/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-markdown/test/ge_test.md: -------------------------------------------------------------------------------- 1 | ge test 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-mermaid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-mermaid/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-mermaid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-mermaid/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-mustache-handlebars/indent/mustache.vim: -------------------------------------------------------------------------------- 1 | runtime! indent/handlebars.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-mustache-handlebars/syntax/mustache.vim: -------------------------------------------------------------------------------- 1 | runtime! syntax/handlebars.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-nginx/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-nginx/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-nginx/ftplugin/nginx.vim: -------------------------------------------------------------------------------- 1 | setlocal commentstring=#\ %s 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-nim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-nim/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ocaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ocaml/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-perl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-perl/.travis.yml -------------------------------------------------------------------------------- /vimfiles/bundle/vim-perl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-perl/COPYING -------------------------------------------------------------------------------- /vimfiles/bundle/vim-perl/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-perl/Changes -------------------------------------------------------------------------------- /vimfiles/bundle/vim-perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-perl/Makefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-perl/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-pgsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-pgsql/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-pgsql/src/.gitignore: -------------------------------------------------------------------------------- 1 | createdb 2 | errcodes.txt 3 | pgsql.vim 4 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-php-cs-fixer/tests/fixtures/misc/no_closing_tag,full_opening_tag.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-php-cs-fixer/tests/results/misc/no_closing_tag,full_opening_tag.php: -------------------------------------------------------------------------------- 1 | :h:h/javascript/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/ftplugin/less/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/css/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/ftplugin/sass/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/scss/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/ftplugin/scss/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/css/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/coffee/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/javascript/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/eruby/rails.vim: -------------------------------------------------------------------------------- 1 | syn include @rubyTop :h:h/ruby/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/haml/rails.vim: -------------------------------------------------------------------------------- 1 | syn include @hamlRubyTop :h:h/ruby/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/less/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/css/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/sass/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/scss/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby-rails/after/syntax/scss/rails.vim: -------------------------------------------------------------------------------- 1 | source :h:h/css/rails.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ruby/CONTRIBUTORS -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ruby/ChangeLog -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ruby/Gemfile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ruby/Gemfile.lock -------------------------------------------------------------------------------- /vimfiles/bundle/vim-ruby/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-ruby/NEWS -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/.vintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-rust/.vintrc.yml -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-rust/LICENSE-MIT -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-rust/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/doc/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-rust/doc/rust.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/test/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/test/sample.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/test/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-rust/test/vimrc -------------------------------------------------------------------------------- /vimfiles/bundle/vim-rust/triagebot.toml: -------------------------------------------------------------------------------- 1 | [assign] 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-sbt/README: -------------------------------------------------------------------------------- 1 | This vim bundle brings some very basic support for SBT to Vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-scala/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-scala/.travis.yml -------------------------------------------------------------------------------- /vimfiles/bundle/vim-scala/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-scala/LICENSE.TXT -------------------------------------------------------------------------------- /vimfiles/bundle/vim-scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-scala/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-scala/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-scala/Rakefile -------------------------------------------------------------------------------- /vimfiles/bundle/vim-slim/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-slim/LICENSE.txt -------------------------------------------------------------------------------- /vimfiles/bundle/vim-slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-slim/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-smarty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-smarty/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-solidity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-solidity/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-solidity/ftplugin/solidity.vim: -------------------------------------------------------------------------------- 1 | setlocal commentstring=//\ %s 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-swift/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-swift/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-swig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-swig/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-toml/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-toml/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-twig/filetype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-twig/filetype.vim -------------------------------------------------------------------------------- /vimfiles/bundle/vim-vala/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-vala/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-vala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-vala/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-wasm/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wxapp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-wxapp/Readme.md -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wxapp/UltiSnips/wxs/wx.snippets: -------------------------------------------------------------------------------- 1 | extends javascript 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wxapp/UltiSnips/wxss/wx.snippets: -------------------------------------------------------------------------------- 1 | extends css 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wxapp/indent/wxs.vim: -------------------------------------------------------------------------------- 1 | runtime! indent/javascript.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-wxapp/indent/wxss.vim: -------------------------------------------------------------------------------- 1 | runtime! indent/css.vim 2 | -------------------------------------------------------------------------------- /vimfiles/bundle/vim-xml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-xml/README -------------------------------------------------------------------------------- /vimfiles/bundle/vim-zephir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-zephir/LICENSE -------------------------------------------------------------------------------- /vimfiles/bundle/vim-zephir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vim-zephir/README.md -------------------------------------------------------------------------------- /vimfiles/bundle/vimwiki/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vimwiki/.travis.yml -------------------------------------------------------------------------------- /vimfiles/bundle/vimwiki/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vimwiki/Dockerfile -------------------------------------------------------------------------------- /vimfiles/bundle/vimwiki/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vimwiki/LICENSE.md -------------------------------------------------------------------------------- /vimfiles/bundle/vimwiki/README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vimwiki/README-cn.md -------------------------------------------------------------------------------- /vimfiles/bundle/vimwiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/bundle/vimwiki/README.md -------------------------------------------------------------------------------- /vimfiles/colors/molokai.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/colors/molokai.vim -------------------------------------------------------------------------------- /vimfiles/dict/Dockerfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/Dockerfile.txt -------------------------------------------------------------------------------- /vimfiles/dict/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/c.txt -------------------------------------------------------------------------------- /vimfiles/dict/cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/cpp.txt -------------------------------------------------------------------------------- /vimfiles/dict/css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/css.txt -------------------------------------------------------------------------------- /vimfiles/dict/docker-compose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/docker-compose.txt -------------------------------------------------------------------------------- /vimfiles/dict/elixir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/elixir.txt -------------------------------------------------------------------------------- /vimfiles/dict/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/go.txt -------------------------------------------------------------------------------- /vimfiles/dict/html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/html.txt -------------------------------------------------------------------------------- /vimfiles/dict/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/java.txt -------------------------------------------------------------------------------- /vimfiles/dict/javascript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/javascript.txt -------------------------------------------------------------------------------- /vimfiles/dict/love2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/love2d.txt -------------------------------------------------------------------------------- /vimfiles/dict/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/lua.txt -------------------------------------------------------------------------------- /vimfiles/dict/mysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/mysql.txt -------------------------------------------------------------------------------- /vimfiles/dict/perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/perl.txt -------------------------------------------------------------------------------- /vimfiles/dict/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/php.txt -------------------------------------------------------------------------------- /vimfiles/dict/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/python.txt -------------------------------------------------------------------------------- /vimfiles/dict/ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/ruby.txt -------------------------------------------------------------------------------- /vimfiles/dict/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/dict/rust.txt -------------------------------------------------------------------------------- /vimfiles/snippets/_.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/_.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/blade.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/blade.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/clojure.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/clojure.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/coffee.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/coffee.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/cpp.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/crystal.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/cs.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/cs.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/css.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/d.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/d.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/dart.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/dart.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/eelixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/eelixir.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/elixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/elixir.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/elm.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/erlang.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/eruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/eruby.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/fsharp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/fsharp.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/go.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/gohtmltmpl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/gohtmltmpl.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/graphql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/groovy.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/groovy.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/haskell.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/haskell.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/haxe.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/html.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/htmldjango.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/htmldjango.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/io.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/io.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/java.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/javascript.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/jinja.snippets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vimfiles/snippets/js_angular.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/js_angular.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/js_react.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/js_vue.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/js_vue.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/js_wxapp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/js_wxapp.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/jst.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/jst.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/jsx.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/jsx.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/julia.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/julia.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/kotlin.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/less.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/lisp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/lisp.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/ls.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/ls.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/lua.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/lua.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/make.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/make.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/mustache.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/mustache.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/mysql.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/mysql.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/newlisp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/newlisp.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/nginx.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/nginx.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/nim.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/objc.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/ocaml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/perl.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/phoenix.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/phoenix.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/php.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/pug.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/pug.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/python.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/r.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/racket.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/rails.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/rails.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/red.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/red.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/rspec.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/rspec.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/ruby.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/rust.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/rust.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/scala.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/scala.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/scheme.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/scheme.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/scss.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/sh.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/slim.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/smarty.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/smarty.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/solidity.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/solidity.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/swift.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/swift.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/tpl_blaze.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/tpl_blaze.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/twig.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/twig.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/typescript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/typescript.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/vala.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/vim.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/volt.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/volt.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/vue.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/vue.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/wxml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/wxml.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/wxss.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vimfiles/snippets/yaml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruchee/vimrc/HEAD/vimfiles/snippets/yaml.snippets -------------------------------------------------------------------------------- /vimfiles/snippets/zephir.snippets: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------