shawncplus / phpcomplete.vim

Improved PHP omnicompletion
http://www.vim.org/scripts/script.php?script_id=3171
594 stars 111 forks source link

[neocomplete] Error occurred calling omnifunction: phpcomplete#CompletePHP #81

Closed coresh closed 8 years ago

coresh commented 8 years ago

I was trying to edit:

is_arr|

'|' is cursor place. Result: vim error messages outputted.

Used plugin: https://github.com/Shougo/neocomplete.vim

[neocomplete] Error occurred calling omnifunction: phpcomplete#CompletePHP
[neocomplete] function neocomplete#handler#_do_auto_complete..neocomplete#complete#_get_results..neocomplete#complete#_set_results_words..660..<SNR>286_set_complete_results_words..phpcomplete#CompletePHP..phpcomplete#CompleteGeneral..phpcomplete#GetTaglist, line 21
[neocomplete] Vim(let):E431: Format error in tags file "/m/tags"
[neocomplete] Error occurred calling omnifunction: phpcomplete#CompletePHP
[neocomplete] function neocomplete#handler#_do_auto_complete..neocomplete#complete#_get_results..neocomplete#complete#_set_results_words..660..<SNR>286_set_complete_results_words..phpcomplete#CompletePHP..phpcomplete#CompleteGeneral..phpcomplete#GetTaglist, line 21
/usr/local/bin/ctags --version                                                                                                                                                                                                              on  master|✚6?
Exuberant Ctags Development, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Dec  3 2015, 15:49:13
  Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
  Optional compiled features: +wildcards, +regex
$ head -20 tags                                                                                                                                                                                                                               on  master|✚6?
!_TAG_FILE_FORMAT       2       /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED       1       /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR    Darren Hiebert  /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME      Exuberant Ctags //
!_TAG_PROGRAM_URL       http://ctags.sourceforge.net    /official site/
!_TAG_PROGRAM_VERSION   Development     //
1       lib.2015_09_24__00_18_18/PEAR/SOAP/Base.php     /^            $this->namespace = $m[1];$/;"     n
1       lib/PEAR/SOAP/Base.php  /^            $this->namespace = $m[1];$/;"     n
A       app/code/community/Fontis/Australia/lib/vendor/fontis/auspost-api-php/tests/Auspost/Tests/Common/EnumTest.php   /^    const A = 1;$/;"  d       class:Auspost\Tests\Common::ConcreteEnum
A       lib/piwik/vendor/aws/aws-sdk-php/src/Aws/Route53/Enum/RecordType.php    /^    const A = 'A';$/;"        d       class:Aws\Route53\Enum::RecordType
A       lib/piwik/vendor/aws/aws-sdk-php/tests/Aws/Tests/Common/EnumTest.php    /^    const A = 1;$/;"  d       class:Aws\Tests\Common::ConcreteEnum
A       lib/piwik/vendor/phpunit/php-token-stream/tests/_fixture/source2.php    /^abstract class A {$/;"        c       implementation:abstract
A       lib/piwik/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php       /^class A$/;"   c       namespace:Symfony\Component\Yaml\Tests
A       phpctags.phar   /^class A$/;"   c
A       phpctags.phar   /^class A$/;"   c       namespace:Symfony\Component\Yaml\Tests
A       phpctags.phar   /^interface A$/;"       i
AAAA    lib/piwik/vendor/aws/aws-sdk-php/src/Aws/Route53/Enum/RecordType.php    /^    const AAAA = 'AAAA';$/;"  d       class:Aws\Route53\Enum::RecordType
ABAMPERE        lib.2015_09_24__00_18_18/Zend/Measure/Current.php       /^    const ABAMPERE             = 'ABAMPERE';$/;"      d       class:Zend_Measure_Current
ABAMPERE        lib/Zend/Measure/Current.php    /^    const ABAMPERE             = 'ABAMPERE';$/;"      d       class:Zend_Measure_Current
ABANDON lib/piwik/vendor/aws/aws-sdk-php/src/Aws/Swf/Enum/ChildPolicy.php       /^    const ABANDON = 'ABANDON';$/;"    d       class:Aws\Swf\Enum::ChildPolicy
complex857 commented 8 years ago

Jugging from the error you seem to have a malformed tags file generated. If i remember correctly really long tag names can cause this, but it's more likely a bug in the patched ctags. Could you send me the whole tags file (you can email it to me if all else fails)? We need to find out which tag line is causing the problem and then we can grab the source file that it came from and use it to debug/fix ctags if need be.

coresh commented 8 years ago

Issue: fixed by regenerating tags (as well as possible paste to wiki):

$ ctags -V --links=no -R --fields=+aimS --languages=php --sort=yes  --exclude=@.ctagsignore

file '.ctagsignore' created by:

$ for x in $(find . -type f | grep -vE '\.php|\.git|mage\-\-' | sed 's#.*/##g' | awk -F"." '{print $NF}'); do echo "*.*${x}"; done | sort | uniq > .ctagsignore

.ctagsignore file content:

*__*
.git
*.*_
*.*-
*.*]
*.*0
*.*010_content
*.*010_global
*.*010_not_eav
*.*010_top
*.*010_tree
*.*013_eav
*.*013_store_data
*.*014_tree_filter
*.*015_tree_filter
*.*016_content
*.*016_prepare
*.*017_add_eav
*.*018_add_end
*.*019_update_eav
*.*020_comment
*.*020_content
*.*020_create_list
*.*020_eav
*.*020_eav_top
*.*020_entity
*.*020_entity_api
*.*020_entity_eav
*.*020_entity_flat
*.*020_entity_not_tree
*.*020_entity_product
*.*020_entity_types
*.*020_flat_not_tree_prepare
*.*020_image
*.*020_list
*.*020_not_tree
*.*020_parents
*.*020_prepare_form
*.*020_product_data
*.*020_product_hidden
*.*020_product_relation
*.*020_rss_link
*.*020_save_product_relation
*.*020_save_relation
*.*020_store
*.*020_store_collection
*.*020_stores
*.*020_store_switcher
*.*020_store_var
*.*020_tables
*.*020_top_store
*.*020_tree
*.*020_tree_filter
*.*020_tree_var
*.*020_update_footer
*.*020_upload_image
*.*020_var_sibling
*.*020_wysiwyg
*.*021_default_values
*.*022_default_values_tree
*.*023_eav
*.*023_entity_comment_types
*.*023_layout
*.*024_product_relation_info
*.*025_after_html_top
*.*025_eav
*.*025_prepare_form_eav
*.*026_after_html
*.*026_entity_attribute_types
*.*027_after_html_footer
*.*027_entity_not_tree_footer
*.*028_entity_edit_eav
*.*029_edit_footer
*.*030_attribute
*.*030_attributes
*.*030_breadcrumbs
*.*030_category_data
*.*030_category_hidden
*.*030_category_relation
*.*030_category_relation_info
*.*030_collection_center
*.*030_construct
*.*030_constructor
*.*030_content
*.*030_eav
*.*030_entity_flat
*.*030_entity_product_save
*.*030_entity_store
*.*030_file
*.*030_filter_eav
*.*030_flat_tree_prepare
*.*030_footer
*.*030_list_seo
*.*030_name_attribute
*.*030_not_tree
*.*030_not_tree_eav
*.*030_relation_product
*.*030_resource_alias
*.*030_save
*.*030_save_category_relation
*.*030_save_relation_tree
*.*030_schema_footer
*.*030_store_tables
*.*030_tree
*.*030_tree_top
*.*030_upload_files
*.*030_var_product_relation
*.*032_eav_construct
*.*035_tree
*.*037_store
*.*040_attributes
*.*040_construct_store
*.*040_eav
*.*040_eav_footer
*.*040_eav_prepare_top
*.*040_entity_eav
*.*040_entity_messages
*.*040_entity_product_save_tree
*.*040_entity_resource_alias
*.*040_filter_flat
*.*040_flat_collection
*.*040_footer
*.*040_footer_is_tree
*.*040_grid_attributes
*.*040_list_footer
*.*040_not_eav
*.*040_not_tree
*.*040_not_tree_content
*.*040_product_relation
*.*040_relation_category
*.*040_rss
*.*040_save_product_relation
*.*040_sibling_data
*.*040_sibling_hidden
*.*040_sibling_info
*.*040_sibling_relation
*.*040_sibling_save
*.*040_siblings_table
*.*040_status
*.*040_store
*.*040_store_filter
*.*040_tree
*.*040_upload_image
*.*040_url
*.*040_var_category_relation
*.*040_wysiwyg
*.*042_eav_tree_prepare_top
*.*043_eav_seo_prepare
*.*043_entity_comment_messages
*.*045_before_save_multiple
*.*045_sibling_data_tree
*.*045_sibling_save_tree
*.*046_entity_attribute_messages
*.*047_eav_prepare_bottom
*.*048_eav_prepare_bottom_tree
*.*049_eav_prepare_real_bottom
*.*050_center
*.*050_construct
*.*050_content
*.*050_eav_collection
*.*050_entity_category
*.*050_entity_flat_store
*.*050_entity_relation
*.*050_footer
*.*050_info_footer
*.*050_methods
*.*050_middle
*.*050_not_tree
*.*050_not_tree_store
*.*050_porttype_top
*.*050_product_relation
*.*050_product_relation_table
*.*050_real_save
*.*050_relation_sibling
*.*050_rss
*.*050_save_category_relation
*.*050_seo
*.*050_tree
*.*050_upload_file
*.*050_url_rewrite
*.*050_v2
*.*050_view
*.*050_wysiwyg_is_tree
*.*052_tree_store
*.*053_tree_after
*.*055_entity_category_tree
*.*055_seo_eav
*.*055_tree_eav
*.*060_attribute_yesno
*.*060_category_relation
*.*060_category_relation_table
*.*060_eav
*.*060_eav_title
*.*060_entity_category_save
*.*060_entity_tree
*.*060_file
*.*060_footer
*.*060_list
*.*060_mass_action
*.*060_not_tree
*.*060_not_tree_footer
*.*060_path_tree
*.*060_porttype_entity
*.*060_product_relation
*.*060_product_relation_action
*.*060_save_continue
*.*060_save_sibling_relation
*.*060_stores
*.*060_store_switcher_block
*.*060_tree
*.*060_tree_before_save_no_url_rewrite
*.*060_tree_flat
*.*060_url
*.*060_v2_entity
*.*060_view_tree
*.*063_porttype_entity_comment
*.*065_mass_parents
*.*066_porttype_entity_attribute
*.*070_acl
*.*070_category_relation_action
*.*070_comments
*.*070_comment_table
*.*070_created_at
*.*070_eav
*.*070_eav_tree_before_save_url_rewrite
*.*070_entity_category_save_tree
*.*070_file
*.*070_footer
*.*070_load
*.*070_more_content
*.*070_not_tree_flat
*.*070_parents
*.*070_porttype_footer
*.*070_product_data
*.*070_product_relation
*.*070_product_relation_actions
*.*070_relation_not_tree
*.*070_relation_product_tree
*.*070_save_sibling_relation_tree
*.*070_sibling_relations
*.*070_tree_eav
*.*070_url_rewrite
*.*070_view
*.*070_view2
*.*073_select_count_store
*.*075_select_sql
*.*080_acl_entity
*.*080_attributes
*.*080_binding_top
*.*080_breadcrumbs
*.*080_category_data
*.*080_category_relation
*.*080_category_relation_actions
*.*080_comments_store
*.*080_comment_store_table
*.*080_editors
*.*080_entity_rss
*.*080_footer
*.*080_product_relation
*.*080_relation_category_tree
*.*080_relation_tree
*.*080_save
*.*080_sibling_actions
*.*080_store
*.*080_store_top
*.*080_tree
*.*080_tree_before_save_url_rewrite
*.*080_updated_at
*.*090_after_save_top
*.*090_breadcrumbs_tree
*.*090_category_relation
*.*090_columns_footer
*.*090_content
*.*090_eav_attribute
*.*090_entity_binding
*.*090_exception_upload
*.*090_flat_store
*.*090_footer
*.*090_product_relation_not_tree
*.*090_relation_sibling_tree
*.*090_rss_top
*.*090_sibling_data
*.*090_sibling_grid
*.*090_sibling_relation
*.*090_url_rewrite
*.*093_entity_binding_comment
*.*095_sibling_data_tree
*.*095_sibling_relation_tree
*.*096_entity_binding_attribute
*.*097_get_attributes
*.*098_get_api_data_flat
*.*099_get_api_data_eav
*.*100_after_save_product
*.*100_breadcrumbs_footer
*.*100_eav_attribute_edit
*.*100_eav_functions
*.*100_exception
*.*100_footer
*.*100_global
*.*100_has_eav
*.*100_product_relation_tree
*.*100_real_save
*.*100_relations
*.*100_rss
*.*100_sibling_actions_tree
*.*100_status
*.*100_store
*.*100_url_rewrite
*.*103_url_rewrite_store
*.*105_view_canonical
*.*107_url_rewrite_no_store
*.*110_after_save_category
*.*110_category_relation_not_tree
*.*110_center
*.*110_comment
*.*110_filter
*.*110_footer
*.*110_mass_action_top
*.*110_product_attribute
*.*110_product_relation_action
*.*110_rss
*.*110_rss_footer
*.*110_tree
*.*110_url_rewrite
*.*110_url_rewrite_before_save_not_tree
*.*110_view_seo
*.*120_adminhtml
*.*120_after_save_sibling
*.*120_category_attribute
*.*120_category_relation_action
*.*120_category_relation_tree
*.*120_footer
*.*120_mass_action_flags
*.*120_mass_update
*.*120_relation_product
*.*120_store_filter
*.*120_stores
*.*120_tree_entity
*.*120_url_rewrite_eav
*.*120_view_footer
*.*125_eav_options_default
*.*130_after_save_footer
*.*130_allow_comment
*.*130_end_prepare_not_tree
*.*130_footer
*.*130_mass_action_parents
*.*130_mass_parents
*.*130_relation_category
*.*130_relation_events_top
*.*130_rss
*.*130_sibling_actions
*.*130_url_rewrite
*.*135_entity_comment
*.*135_sibling_actions_tree
*.*140_add_values_not_tree
*.*140_api
*.*140_collection_end
*.*140_comment
*.*140_end_prepare_tree
*.*140_footer
*.*140_product_relation
*.*140_product_relation_actions
*.*140_relation_product_top
*.*145_collection_walk
*.*150_add_values_tree
*.*150_api_entity
*.*150_category_relation
*.*150_category_relation_actions
*.*150_footer
*.*150_relation_events_middle
*.*150_store_filter
*.*160_api_product_related
*.*160_footer
*.*160_get_entity_tree
*.*160_relation_category_top
*.*160_sibling_actions
*.*160_sibling_relation
*.*163_children_relation
*.*165_parent_relation
*.*170_api_category_related
*.*170_footer
*.*170_relation_product_bottom_start
*.*170_sibling_actions_tree
*.*170_tree
*.*175_eav_default_attribute_set
*.*180_allow_comment
*.*180_api_tree
*.*180_footer
*.*180_relation_product_bottom
*.*190_api_sibling
*.*190_default_values
*.*190_relation_product_bottom_end
*.*2
*.*_(2)
*.*200_default_values_rss
*.*200_entity_eav
*.*200_relation_category_bottom_start
*.*2013
*.*210_default_values_comment
*.*210_eav
*.*210_relation_category_bottom
*.*215_default_attribute_values
*.*220_entity_comment
*.*220_footer
*.*220_relation_category_bottom_end
*.*230_comment
*.*230_relation_events_bottom
*.*240_comment_store
*.*240_global_search_top
*.*250_api_comment
*.*250_global_search_entity
*.*260_eav_api
*.*260_global_search_footer
*.*270_admin
*.*270_frontend
*.*280_entity_seo
*.*280_frontend
*.*284_router
*.*287_frontend_footer
*.*290_default_top
*.*290_rest
*.*300_default
*.*300_rest_entity
*.*310_default_footer
*.*310_parent
*.*320_footer
*.*additional
*.*adoc
*.*ai
*.*apache_vhost
*.*apache_vhost_hhvm
*.*api_reference
*.*arcconfig
*.*arclint
*.*as
*.*AUTHORS
*.*authz
*.*bad
*.*bak
*.*BAK
*.*bash
*.*bat
*.*batch_get_item_empty_has_more
*.*batch_get_item_final
*.*batch_get_item_has_more
*.*bin
*.*bowerrc
*.*Bugs
*.*BUGS
*.*bz2
*.*c
*.*calculate_domestic_letter_postage_express_small
*.*calculate_domestic_letter_postage_regular_large
*.*calculate_domestic_parcel_postage_regular
*.*calculate_domestic_parcel_postage_regular_extra_cover
*.*calculate_international_letter_postage_eci_platinum
*.*calculate_international_letter_postage_postcard_air_mail
*.*calculate_international_parcel_postage_air_mail
*.*calculate_international_parcel_postage_air_mail_extra_cover
*.*cfg
*.*cgm
*.*challenge
*.*changelog
*.*Changelog
*.*ChangeLog
*.*CHANGELOG
*.*CHANGES
*.*client_intro
*.*cmd
*.*cnf
*.*code_coverage_id_rsa
*.*complete_multipart_upload
*.*compress
*.*conf
*.*conf~
*.*config
*.*console
*.*COPYING
*.*coverignore
*.*create_db_security_group
*.*credentials
*.*CREDITS
*.*creq
*.*crt
*.*cscfg
*.*csdef
*.*cson
*.*css
*.*css~
*.*csv
*.*csv~
*.*csv~~
*.*ctagsignore
*.*ctagsignore~
*.*cw
*.*dat
*.*db
*.*default
*.*deflate
*.*delete_multiple_objects
*.*delete_multiple_objects_errors
*.*desc
*.*describe_db_instances
*.*describe_instances_no_reservations
*.*describe_instances_two_instances_different_state
*.*describe_instances_two_instances_same_state
*.*describe_snapshots_completed
*.*describe_snapshots_pending
*.*describe_table
*.*describe_table_not_found
*.*describe_vault
*.*describe_vault_error
*.*DESIGN
*.*disable
*.*dist
*.*dll
*.*dont_use
*.*dot_htaccess
*.*DS_Store
*.*dtd
*.*editorconfig
*.*empty
*.*eot
*.*eot?
*.*exe
*.*fdf
*.*feature
*.*fla
*.*flf
*.*fttb
*.*get_bucket_object_versions_page_1
*.*get_bucket_object_versions_page_2
*.*get_bucket_policy_failure
*.*get_bucket_policy_success
*.*GetDistribution_Deployed
*.*GetDistribution_InProgress
*.*GetInvalidation_Completed
*.*GetInvalidation_InProgress
*.*get_item
*.*get_session_token
*.*GetStreamingDistribution_Deployed
*.*GetStreamingDistribution_InProgress
*.*gif
*.*gif_
*.*gif_2
*.*gif_3
*.*gif_4
*.*gif_5
*.*gz
*.*gzip
*.*h
*.*har
*.*head_access_denied
*.*head_failure
*.*head_success
*.*hgignore
*.*htaccess
*.*htc
*.*htm
*.*HTM
*.*html
*.*html~
*.*iam_security_credentials
*.*iam_security_credentials_webapp
*.*icc
*.*icns
*.*ico
*.*icon_license
*.*in
*.*inc
*.*inc~
*.*ini
*.*initiate_multipart_upload
*.*INSTALL
*.*jade
*.*jar
*.*java
*.*jpg
*.*jpg_
*.*js
*.*js~
*.*jshintrc
*.*json
*.*json~
*.*kate-swp
*.*keep
*.*LEGALNOTICE
*.*less
*.*lessify
*.*LICENCE
*.*LICENSE
*.*LICENSE-colors
*.*LICENSE_UMC
*.*links
*.*lint
*.*LISEZMOI
*.*list_buckets
*.*list_countries
*.*list_customer_collection_points
*.*list_customer_collection_points_footscray
*.*list_customer_collection_points_hoppers_crossing
*.*list_customer_collection_points_invalid_last_update
*.*list_customer_collection_points_last_update
*.*list_customer_collection_points_victoria
*.*list_delivery_dates
*.*list_delivery_dates_number_of_dates_1
*.*list_delivery_dates_number_of_dates_2
*.*list_delivery_timeslots
*.*list_delivery_timeslots_monday
*.*ListDistributions_page_1
*.*ListDistributions_page_2
*.*list_domestic_letter_services
*.*list_domestic_letter_sizes
*.*list_domestic_letter_thicknesses
*.*list_domestic_letter_weights
*.*list_domestic_parcel_services
*.*list_domestic_parcel_sizes
*.*list_domestic_parcel_weights
*.*list_international_letter_services
*.*list_international_letter_weights
*.*list_international_parcel_services
*.*list_international_parcel_weights
*.*list_jobs_1
*.*list_jobs_2
*.*list_multipart_uploads_page_1
*.*list_multipart_uploads_page_2
*.*list_objects_empty
*.*list_objects_page_1
*.*list_objects_page_2
*.*list_objects_page_3
*.*list_objects_page_4
*.*list_objects_page_5
*.*list_parts
*.*list_parts_page_1
*.*list_parts_page_2
*.*list_parts_single
*.*list_postcode_capabilities
*.*list_postcode_capabilities_10
*.*list_postcode_capabilities_beverly_hills
*.*list_postcode_capabilities_melbourne
*.*list_rrs_page_1
*.*list_rrs_page_2
*.*list_rrs_page_3
*.*ListStreamingDistributions_page_1
*.*ListStreamingDistributions_page_2
*.*list_tables_final
*.*list_tables_has_more
*.*list_trackings
*.*list_trackings_invalid_id
*.*local
*.*lock
*.*log
*.*ls
*.*m4
*.*mage
*.*mailmap
*.*Makefile
*.*map
*.*markdown
*.*md
*.*mdown
*.*MIT-LICENSE
*.*mkv
*.*mocha
*.*_mocha
*.*mock_response
*.*modgit
*.*modman
*.*ModmanInvalid
*.*ModmanValid
*.*mp4
*.*mxml
*.*myVimLog
*.*new_format
*.*NEWS
*.*npmignore
*.*ods
*.*otf
*.*p12
*.*p7m
*.*package
*.*part
*.*patch
*.*pdf
*.*pem
*.*ph
*.*ph~
*.*phar
*.*phpunit
*.*phtml
*.*phtml~
*.*phtml~~
*.*phtml_no_center
*.*phtml______phtml
*.*pl
*.*plessc
*.*plist
*.*png
*.*png_
*.*PNG
*.*privoxy
*.*project
*.*promo-ZS6hC3XyRNw
*.*properties
*.*ps1
*.*psd
*.*py
*.*query_final
*.*query_has_more
*.*rb
*.*rb~
*.*Readme
*.*README
*.*Redirect
*.*Redirect~
*.*reload
*.*req
*.*rst
*.*rtf
*.*sample
*.*SAVE_IP2LOCATION_DATABASE_HERE
*.*scan_empty_has_more
*.*scan_final
*.*scan_has_more
*.*scc
*.*scss
*.*scss~
*.*scssc
*.*search%2
*.*search_postcode_using_location
*.*search_postcode_using_location_and_state
*.*search_postcode_using_postcode
*.*server_time_1
*.*server_time_2
*.*sess_2etdfaq3qsga0pieg1uqh79580
*.*sess_351pmsgv9piuj095utkhg0cq10
*.*sess_86qrfd5lhki72gutanis8hefh6
*.*sess_k8v1gmdkbe8rfivv5jbkl70ve3
*.*sess_o3bkgg5pb76lk8fg39o2dd6643
*.*sh
*.*sh~
*.*source-highlight
*.*sql
*.*sql~
*.*sreq
*.*sts
*.*svg
*.*swf
*.*sync-php4
*.*tags
*.*tags_usr_local_ctags
*.*tar
*.*template
*.*test
*.*test~
*.*tgz
*.*tmpl
*.*tmSnippet
*.*total_store_99
*.*tpl
*.*TROUBLESHOOTING
*.*ttf
*.*TTF
*.*twig
*.*txt
*.*txt~
*.*TXT
*.*[unite]
*.*upload_part
*.*USAGE
*.*validate_address_correct
*.*validate_address_incorrect
*.*validate-json
*.*vcl
*.*version=
*.*VERSION
*.*vimerr
*.*w32
*.*wadcfg
*.*woff
*.*woff2
*.*wsdl
*.*xcf
*.*xhtml
*.*xml
*.*<?xml
*.*xml~
*.*xsd
*.*xsl
*.*yaml
*.*yml
*.*z
*.*zip