{"id":18251780,"url":"https://github.com/hiroakis/vim-breakline","last_synced_at":"2026-01-19T23:34:57.550Z","repository":{"id":145131236,"uuid":"259506560","full_name":"hiroakis/vim-breakline","owner":"hiroakis","description":"An easy line splitter.","archived":false,"fork":false,"pushed_at":"2020-04-28T03:24:20.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-08T20:48:45.923Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Vim script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hiroakis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-28T02:09:48.000Z","updated_at":"2020-05-01T09:14:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"29380ab3-bc88-4c63-b00d-da29577f3552","html_url":"https://github.com/hiroakis/vim-breakline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hiroakis/vim-breakline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiroakis%2Fvim-breakline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiroakis%2Fvim-breakline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiroakis%2Fvim-breakline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiroakis%2Fvim-breakline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hiroakis","download_url":"https://codeload.github.com/hiroakis/vim-breakline/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hiroakis%2Fvim-breakline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28590207,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T09:48:28.864Z","updated_at":"2026-01-19T23:34:57.534Z","avatar_url":"https://github.com/hiroakis.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-break\n\nAn easy line splitter. Motivation: I deal with a lot of binary data every day at work, and I wanna make shaping them easier.\n\n# Installation\n\nUse your favorite plugin manager.\n\n# Usecase and Usage\n\n## Split lines on every fourth comma \n\nSelect lines with visual mode and run `:Break , 4`.\n\n```golang\nbindata := []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,\n 0x1d, 0x1e, 0x1f, 0x20, 0x21}\n```\n\nThe results are as follows.\n\n```golang\nbindata := []byte{0x01, 0x02, 0x03, 0x04,\n 0x05, 0x06, 0x07, 0x08,\n 0x09, 0x0a, 0x0b, 0x0c,\n 0x0d, 0x0e, 0x0f, 0x10,\n 0x11, 0x12, 0x13, 0x14,\n 0x15, 0x16, 0x17, 0x18,\n 0x19, 0x1a, 0x1b, 0x1c\n 0x1d, 0x1e, 0x1f, 0x20,\n 0x21}\n```\n\n## Split lines on every magic number\n\n`:Break 9f 1`. It's same as `:'\u003c,'\u003es/9f/9f\\r/g`.\n\n```\n1019f3303204000950580000100009f37049badbcab9f100706010a03a000009f2608aabbc1df341bc3899f360200f0820200009c\n```\n\nwill be\n\n```\n1019f\n3303204000950580000100009f\n37049badbcab9f\n100706010a03a000009f\n2608aabbc1df341bc3899f\n360200f0820200009c\n```\n\n## Split lines on every tenth space \n\n`:BreakSpace 10`\n\n```\na b c d e f g h i j k l m n\n```\n\nwill be\n\n```\na b c d e f g h i j \nk l m n\n```\n\n# License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhiroakis%2Fvim-breakline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhiroakis%2Fvim-breakline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhiroakis%2Fvim-breakline/lists"}