{"id":23076416,"url":"https://github.com/aileot/vim-among_hml","last_synced_at":"2026-05-05T21:34:53.972Z","repository":{"id":53496226,"uuid":"213163807","full_name":"aileot/vim-among_HML","owner":"aileot","description":"Extend H/M/L motions and move in ratio","archived":false,"fork":false,"pushed_at":"2022-10-05T13:58:08.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T12:16:06.543Z","etag":null,"topics":["motion","neovim","nvim","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aileot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-10-06T12:23:36.000Z","updated_at":"2022-10-05T11:52:41.000Z","dependencies_parsed_at":"2022-09-11T05:40:34.734Z","dependency_job_id":null,"html_url":"https://github.com/aileot/vim-among_HML","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aileot/vim-among_HML","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aileot%2Fvim-among_HML","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aileot%2Fvim-among_HML/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aileot%2Fvim-among_HML/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aileot%2Fvim-among_HML/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aileot","download_url":"https://codeload.github.com/aileot/vim-among_HML/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aileot%2Fvim-among_HML/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32669431,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["motion","neovim","nvim","vim","vim-plugin"],"created_at":"2024-12-16T09:38:54.607Z","updated_at":"2026-05-05T21:34:53.932Z","avatar_url":"https://github.com/aileot.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vim-among_HML\n\nvim-among_HML provides a set of motions, extending H/M/L motion.\n\n## Demo\n\n![among_HML#jump](https://user-images.githubusercontent.com/46470475/193440491-5fd405db-1f3e-4ad5-9e78-f31520a8859a.gif)\n\n(In demo, [edluffy/specs.nvim](https://github.com/edluffy/specs.nvim) flashes\ncursor.)\n\n## Installation\n\nInstall the plugin using your favorite package manager:\n\n[vim-plug](https://github.com/junegunn/vim-plug)\n\n```vim\nPlug 'aileot/vim-among_HML'\n```\n\n[packer.nvim](https://github.com/wbthomason/packer.nvim)\n\n```lua\nuse \"aileot/vim-among_HML\"\n```\n\n[dein.vim](https://github.com/Shougo/dein.vim) in toml\n\n```toml\n[[plugin]]\nrepo = 'aileot/vim-among_HML'\n```\n\n## Examples\n\n### Vim script\n\n```vim\n\" Assign a ratio (0.0 ~ 1.0) to jump within window.\n:call among_HML#jump(1/8.0)  \" Jump to 1/8 height in window.\n:call among_HML#scroll(0.25) \" Drag cursor line to 1/4 height in window.\n```\n\nIf you prefer fraction to decimal, either numerator or denominator must be a\ndecimal in Vim script; otherwise, you would get an integer there.\n\n- Either `1/4` or `3/4` results in `0`.\n- `1/4.0` results in `0.25`, `3.0/4` results in `0.75`.\n\n### Lua\n\n```lua\nrequire(\"among_HML\").jump(1/8)\nrequire(\"among_HML\").scroll(0.25)\n```\n\n### Configuration\n\nThis plugin defines no default keymappings so that you should map keys by\nyourself in your vimrc.\n\n```vim\nset scrolloff=0 \" recommended (default)\n\n\" Jump into the line at 1/4 or 3/4 height of window (i.e., 25% or 75% height);\nnoremap K \u003cCmd\u003ecall among_HML#jump(0.25)\u003cCR\u003e\nnoremap J \u003cCmd\u003ecall among_HML#jump(0.75)\u003cCR\u003e\n\n\" Optional mappings with mnemonics:\n\" Get the Keyword\nnnoremap gK K\nxnoremap gK K\n\" \u003cSpace\u003e-leaving Join in contrast to the default `gJ`\nnnoremap \u003cspace\u003eJ J\nxnoremap \u003cspace\u003eJ J\n```\n\nFor more examples and information, please read\n[documentation](https://github.com/aileot/vim-among_HML/blob/master/doc/among_HML.txt),\nor `:h among_HML` in your Vim/Neovim)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faileot%2Fvim-among_hml","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faileot%2Fvim-among_hml","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faileot%2Fvim-among_hml/lists"}