{"id":29791142,"url":"https://github.com/tkhoa2711/vim-togglenumber","last_synced_at":"2025-07-28T00:15:12.852Z","repository":{"id":32987044,"uuid":"36614401","full_name":"tkhoa2711/vim-togglenumber","owner":"tkhoa2711","description":"Easy toggle between different number modes in vim","archived":false,"fork":false,"pushed_at":"2020-07-03T10:58:17.000Z","size":24,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-13T10:45:31.886Z","etag":null,"topics":["plugin","vim","vim-togglenumber"],"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/tkhoa2711.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}},"created_at":"2015-05-31T17:39:16.000Z","updated_at":"2021-05-11T09:47:02.000Z","dependencies_parsed_at":"2022-09-03T23:01:45.798Z","dependency_job_id":null,"html_url":"https://github.com/tkhoa2711/vim-togglenumber","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/tkhoa2711/vim-togglenumber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkhoa2711%2Fvim-togglenumber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkhoa2711%2Fvim-togglenumber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkhoa2711%2Fvim-togglenumber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkhoa2711%2Fvim-togglenumber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkhoa2711","download_url":"https://codeload.github.com/tkhoa2711/vim-togglenumber/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkhoa2711%2Fvim-togglenumber/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267443083,"owners_count":24087938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["plugin","vim","vim-togglenumber"],"created_at":"2025-07-28T00:15:10.995Z","updated_at":"2025-07-28T00:15:12.835Z","avatar_url":"https://github.com/tkhoa2711.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"vim-togglenumber\n================\n\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/266fc730ce364cfda36a5c751f06c61f)](https://app.codacy.com/app/tkhoa2711/vim-togglenumber?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=tkhoa2711/vim-togglenumber\u0026utm_campaign=Badge_Grade_Dashboard)\n[![Build Status](https://travis-ci.org/tkhoa2711/vim-togglenumber.svg?branch=master)](https://travis-ci.org/tkhoa2711/vim-togglenumber)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\nEasy toggle between different number modes in vim: `nonumber`, `absolute` and `relative number`, \nwith just one key sequence to rule it all. Most other plugins don't provide a seamless way \nto do all 3 modes at once.\n\n\u003chttp://www.vim.org/scripts/script.php?script_id=5249\u003e\n\nInstallation\n------------\n\nIf you use [pathogen](https://github.com/tpope/vim-pathogen), clone the repo as below:\n\n```sh\ngit clone https://github.com/tkhoa2711/vim-togglenumber.git ~/.vim/bundle/vim-togglenumber\n```\n\nAfter having your help tags regenerated, you can view the reference manual with `:help \ntogglenumber`.\n\nOr the [Vundle](https://github.com/VundleVim/Vundle.vim) way: add the following line to your `.vimrc`,\nsave it and then run `:PluginInstall`.\n\n```viml\nPlugin 'tkhoa2711/vim-togglenumber'\n```\n\nUsage\n-----\n\nBy default, the plugin is triggered with `\u003cLeader\u003en`. However you can add your own \npreferred mapping such as:\n\n```viml\nnnoremap \u003cF6\u003e :ToggleNumber\u003cCR\u003e\n```\n\nThe standard numbering mode in vim is `nonumber`. You may go for other options by \nadding the following to your `.vimrc`:\n\n```viml\nset number\n```\n\nor\n\n```viml\nset relativenumber\n```\n\nExtra\n-----\n\nIn case you have no idea about your `\u003cLeader\u003e` key, or rarely use it, I'd recommend giving the \nfollowing setting a try, put this in your `.vimrc`:\n\n```viml\nlet mapleader = \"\\\u003cSpace\u003e\"\n```\n\nThen, invoking the `\u003cSpace\u003en` key sequence would cycle through the modes effortlessly.\n\nRequirements\n------------\n\n- Vim 7.3 or later\n\nLicense\n-------\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkhoa2711%2Fvim-togglenumber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkhoa2711%2Fvim-togglenumber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkhoa2711%2Fvim-togglenumber/lists"}