Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created July 7, 2018 21:49
Show Gist options
  • Save ryantm/9f3ec9fa4587a10f4c05cb1d043d96c6 to your computer and use it in GitHub Desktop.
Save ryantm/9f3ec9fa4587a10f4c05cb1d043d96c6 to your computer and use it in GitHub Desktop.
/nix/store/yaywc2r3anf8r8pkw31si2y5phly68r5-vim-vint-0.3.19
├── bin
│   └── vint
├── lib
│   └── python3.6
│   └── site-packages
│   ├── vim_vint-0.3.19.dist-info
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── 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-36.pyc
│   │   │   ├── autocmd_events.cpython-36.pyc
│   │   │   ├── builtins.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── __init__.py
│   │   ├── node_type.py
│   │   ├── parsing.py
│   │   ├── plugin
│   │   │   ├── abstract_ast_plugin.py
│   │   │   ├── builtin_identifiers.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── abstract_ast_plugin.cpython-36.pyc
│   │   │   │   ├── builtin_identifiers.cpython-36.pyc
│   │   │   │   └── __init__.cpython-36.pyc
│   │   │   └── scope_plugin
│   │   │   ├── identifier_classifier.py
│   │   │   ├── __init__.py
│   │   │   ├── map_and_filter_parser.py
│   │   │   ├── __pycache__
│   │   │   │   ├── identifier_classifier.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── map_and_filter_parser.cpython-36.pyc
│   │   │   │   ├── redir_assignment_parser.cpython-36.pyc
│   │   │   │   ├── reference_reachability_tester.cpython-36.pyc
│   │   │   │   ├── scope_detector.cpython-36.pyc
│   │   │   │   ├── scope_linker.cpython-36.pyc
│   │   │   │   └── two_way_scope_reference_attacher.cpython-36.pyc
│   │   │   ├── redir_assignment_parser.py
│   │   │   ├── reference_reachability_tester.py
│   │   │   ├── scope_detector.py
│   │   │   ├── scope_linker.py
│   │   │   └── two_way_scope_reference_attacher.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── node_type.cpython-36.pyc
│   │   │   ├── parsing.cpython-36.pyc
│   │   │   └── traversing.cpython-36.pyc
│   │   └── traversing.py
│   ├── bootstrap.py
│   ├── _bundles
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   └── vimlparser.cpython-36.pyc
│   │   └── vimlparser.py
│   ├── compat
│   │   ├── __init__.py
│   │   ├── itertools
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-36.pyc
│   │   └── unittest
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-36.pyc
│   ├── encodings
│   │   ├── decoder.py
│   │   ├── decoding_strategy.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── decoder.cpython-36.pyc
│   │   ├── decoding_strategy.cpython-36.pyc
│   │   └── __init__.cpython-36.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-36.pyc
│   │   │   ├── config_comment_source.cpython-36.pyc
│   │   │   ├── config_container.cpython-36.pyc
│   │   │   ├── config_default_source.cpython-36.pyc
│   │   │   ├── config_dict_source.cpython-36.pyc
│   │   │   ├── config_filenames.cpython-36.pyc
│   │   │   ├── config_file_source.cpython-36.pyc
│   │   │   ├── config_global_source.cpython-36.pyc
│   │   │   ├── config_project_source.cpython-36.pyc
│   │   │   ├── config_source.cpython-36.pyc
│   │   │   ├── config_util.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── env.py
│   │   ├── file_filter.py
│   │   ├── formatter
│   │   │   ├── formatter.py
│   │   │   ├── __init__.py
│   │   │   ├── json_formatter.py
│   │   │   ├── __pycache__
│   │   │   │   ├── formatter.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── json_formatter.cpython-36.pyc
│   │   │   │   └── statistic_formatter.cpython-36.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-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── prohibit_abbreviation_option.cpython-36.pyc
│   │   │   │   ├── prohibit_autocmd_with_no_group.cpython-36.pyc
│   │   │   │   ├── prohibit_command_rely_on_user.cpython-36.pyc
│   │   │   │   ├── prohibit_command_with_unintended_side_effect.cpython-36.pyc
│   │   │   │   ├── prohibit_encoding_opt_after_scriptencoding.cpython-36.pyc
│   │   │   │   ├── prohibit_equal_tilde_operator.cpython-36.pyc
│   │   │   │   ├── prohibit_implicit_scope_builtin_variable.cpython-36.pyc
│   │   │   │   ├── prohibit_implicit_scope_variable.cpython-36.pyc
│   │   │   │   ├── prohibit_invalid_map_call.cpython-36.pyc
│   │   │   │   ├── prohibit_missing_scriptencoding.cpython-36.pyc
│   │   │   │   ├── prohibit_no_abort_function.cpython-36.pyc
│   │   │   │   ├── prohibit_set_nocompatible.cpython-36.pyc
│   │   │   │   ├── prohibit_unnecessary_double_quote.cpython-36.pyc
│   │   │   │   ├── prohibit_unused_variable.cpython-36.pyc
│   │   │   │   └── prohibit_using_undeclared_variable.cpython-36.pyc
│   │   │   └── reference
│   │   │   ├── googlevimscriptstyleguide.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── googlevimscriptstyleguide.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── policy_registry.py
│   │   ├── policy_set.py
│   │   └── __pycache__
│   │   ├── cli.cpython-36.pyc
│   │   ├── env.cpython-36.pyc
│   │   ├── file_filter.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── level.cpython-36.pyc
│   │   ├── linter.cpython-36.pyc
│   │   ├── policy_registry.cpython-36.pyc
│   │   └── policy_set.cpython-36.pyc
│   ├── __pycache__
│   │   ├── asset.cpython-36.pyc
│   │   ├── bootstrap.cpython-36.pyc
│   │   └── __init__.cpython-36.pyc
│   └── utils
│   ├── array.py
│   ├── __init__.py
│   └── __pycache__
│   ├── array.cpython-36.pyc
│   └── __init__.cpython-36.pyc
└── nix-support
└── propagated-build-inputs
39 directories, 160 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment