Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 24, 2019 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/0464b4c2c67ec056d7fe295af1730f41 to your computer and use it in GitHub Desktop.
Save ryantm/0464b4c2c67ec056d7fe295af1730f41 to your computer and use it in GitHub Desktop.
/nix/store/4gik0z2am2c3glqghmms9vyp3zlqcwam-vim-vint-0.3.20
├── bin
│   └── vint
├── lib
│   └── python3.7
│   └── site-packages
│   ├── vim_vint-0.3.20.dist-info
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE.txt
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── vint
│   ├── asset
│   │   ├── default_config.yaml
│   │   └── void_config.yaml
│   ├── asset.py
│   ├── ast
│   │   ├── dictionary
│   │   │   ├── abbreviations.py
│   │   │   ├── autocmd_events.py
│   │   │   ├── builtins.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── abbreviations.cpython-37.pyc
│   │   │   ├── autocmd_events.cpython-37.pyc
│   │   │   ├── builtins.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __init__.py
│   │   ├── node_type.py
│   │   ├── parsing.py
│   │   ├── plugin
│   │   │   ├── abstract_ast_plugin.py
│   │   │   ├── builtin_identifiers.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── abstract_ast_plugin.cpython-37.pyc
│   │   │   │   ├── builtin_identifiers.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── scope_plugin
│   │   │   ├── identifier_classifier.py
│   │   │   ├── __init__.py
│   │   │   ├── map_and_filter_parser.py
│   │   │   ├── __pycache__
│   │   │   │   ├── identifier_classifier.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── map_and_filter_parser.cpython-37.pyc
│   │   │   │   ├── redir_assignment_parser.cpython-37.pyc
│   │   │   │   ├── reference_reachability_tester.cpython-37.pyc
│   │   │   │   ├── scope_detector.cpython-37.pyc
│   │   │   │   ├── scope_linker.cpython-37.pyc
│   │   │   │   └── two_way_scope_reference_attacher.cpython-37.pyc
│   │   │   ├── redir_assignment_parser.py
│   │   │   ├── reference_reachability_tester.py
│   │   │   ├── scope_detector.py
│   │   │   ├── scope_linker.py
│   │   │   └── two_way_scope_reference_attacher.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── node_type.cpython-37.pyc
│   │   │   ├── parsing.cpython-37.pyc
│   │   │   └── traversing.cpython-37.pyc
│   │   └── traversing.py
│   ├── bootstrap.py
│   ├── _bundles
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── vimlparser.cpython-37.pyc
│   │   └── vimlparser.py
│   ├── compat
│   │   ├── __init__.py
│   │   ├── itertools
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   └── unittest
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-37.pyc
│   ├── encodings
│   │   ├── decoder.py
│   │   ├── decoding_strategy.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── decoder.cpython-37.pyc
│   │   ├── decoding_strategy.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── __init__.py
│   ├── linting
│   │   ├── cli.py
│   │   ├── config
│   │   │   ├── config_cmdargs_source.py
│   │   │   ├── config_comment_source.py
│   │   │   ├── config_container.py
│   │   │   ├── config_default_source.py
│   │   │   ├── config_dict_source.py
│   │   │   ├── config_filenames.py
│   │   │   ├── config_file_source.py
│   │   │   ├── config_global_source.py
│   │   │   ├── config_project_source.py
│   │   │   ├── config_source.py
│   │   │   ├── config_util.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── config_cmdargs_source.cpython-37.pyc
│   │   │   ├── config_comment_source.cpython-37.pyc
│   │   │   ├── config_container.cpython-37.pyc
│   │   │   ├── config_default_source.cpython-37.pyc
│   │   │   ├── config_dict_source.cpython-37.pyc
│   │   │   ├── config_filenames.cpython-37.pyc
│   │   │   ├── config_file_source.cpython-37.pyc
│   │   │   ├── config_global_source.cpython-37.pyc
│   │   │   ├── config_project_source.cpython-37.pyc
│   │   │   ├── config_source.cpython-37.pyc
│   │   │   ├── config_util.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── env.py
│   │   ├── file_filter.py
│   │   ├── formatter
│   │   │   ├── formatter.py
│   │   │   ├── __init__.py
│   │   │   ├── json_formatter.py
│   │   │   ├── __pycache__
│   │   │   │   ├── formatter.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json_formatter.cpython-37.pyc
│   │   │   │   └── statistic_formatter.cpython-37.pyc
│   │   │   └── statistic_formatter.py
│   │   ├── __init__.py
│   │   ├── level.py
│   │   ├── linter.py
│   │   ├── policy
│   │   │   ├── abstract_policy.py
│   │   │   ├── __init__.py
│   │   │   ├── prohibit_abbreviation_option.py
│   │   │   ├── prohibit_autocmd_with_no_group.py
│   │   │   ├── prohibit_command_rely_on_user.py
│   │   │   ├── prohibit_command_with_unintended_side_effect.py
│   │   │   ├── prohibit_encoding_opt_after_scriptencoding.py
│   │   │   ├── prohibit_equal_tilde_operator.py
│   │   │   ├── prohibit_implicit_scope_builtin_variable.py
│   │   │   ├── prohibit_implicit_scope_variable.py
│   │   │   ├── prohibit_invalid_map_call.py
│   │   │   ├── prohibit_missing_scriptencoding.py
│   │   │   ├── prohibit_no_abort_function.py
│   │   │   ├── prohibit_set_nocompatible.py
│   │   │   ├── prohibit_unnecessary_double_quote.py
│   │   │   ├── prohibit_unused_variable.py
│   │   │   ├── prohibit_using_undeclared_variable.py
│   │   │   ├── __pycache__
│   │   │   │   ├── abstract_policy.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── prohibit_abbreviation_option.cpython-37.pyc
│   │   │   │   ├── prohibit_autocmd_with_no_group.cpython-37.pyc
│   │   │   │   ├── prohibit_command_rely_on_user.cpython-37.pyc
│   │   │   │   ├── prohibit_command_with_unintended_side_effect.cpython-37.pyc
│   │   │   │   ├── prohibit_encoding_opt_after_scriptencoding.cpython-37.pyc
│   │   │   │   ├── prohibit_equal_tilde_operator.cpython-37.pyc
│   │   │   │   ├── prohibit_implicit_scope_builtin_variable.cpython-37.pyc
│   │   │   │   ├── prohibit_implicit_scope_variable.cpython-37.pyc
│   │   │   │   ├── prohibit_invalid_map_call.cpython-37.pyc
│   │   │   │   ├── prohibit_missing_scriptencoding.cpython-37.pyc
│   │   │   │   ├── prohibit_no_abort_function.cpython-37.pyc
│   │   │   │   ├── prohibit_set_nocompatible.cpython-37.pyc
│   │   │   │   ├── prohibit_unnecessary_double_quote.cpython-37.pyc
│   │   │   │   ├── prohibit_unused_variable.cpython-37.pyc
│   │   │   │   └── prohibit_using_undeclared_variable.cpython-37.pyc
│   │   │   └── reference
│   │   │   ├── googlevimscriptstyleguide.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── googlevimscriptstyleguide.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── policy_registry.py
│   │   ├── policy_set.py
│   │   └── __pycache__
│   │   ├── cli.cpython-37.pyc
│   │   ├── env.cpython-37.pyc
│   │   ├── file_filter.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── level.cpython-37.pyc
│   │   ├── linter.cpython-37.pyc
│   │   ├── policy_registry.cpython-37.pyc
│   │   └── policy_set.cpython-37.pyc
│   ├── __pycache__
│   │   ├── asset.cpython-37.pyc
│   │   ├── bootstrap.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   └── utils
│   ├── array.py
│   ├── __init__.py
│   └── __pycache__
│   ├── array.cpython-37.pyc
│   └── __init__.cpython-37.pyc
└── nix-support
└── propagated-build-inputs
39 directories, 161 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment