{"id":24756365,"url":"https://github.com/dalance/vseq.vim","last_synced_at":"2026-01-05T05:09:00.888Z","repository":{"id":146818425,"uuid":"63698128","full_name":"dalance/vseq.vim","owner":"dalance","description":"A Vim plugin for generating sequential number vertically","archived":false,"fork":false,"pushed_at":"2016-07-23T15:22:12.000Z","size":12,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-28T13:54:39.502Z","etag":null,"topics":["vim-plugins"],"latest_commit_sha":null,"homepage":"","language":"VimL","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/dalance.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-19T13:54:07.000Z","updated_at":"2019-08-30T04:18:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"fff77236-413a-45d7-87ea-c1b13d805369","html_url":"https://github.com/dalance/vseq.vim","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalance%2Fvseq.vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalance%2Fvseq.vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalance%2Fvseq.vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalance%2Fvseq.vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dalance","download_url":"https://codeload.github.com/dalance/vseq.vim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245066713,"owners_count":20555431,"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","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":["vim-plugins"],"created_at":"2025-01-28T13:51:06.361Z","updated_at":"2026-01-05T05:09:00.860Z","avatar_url":"https://github.com/dalance.png","language":"VimL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vseq.vim\n\n##INTRODUCTION\n*vseq* is a Vim plugin for generating sequential number vertically.  \n\n[![asciicast](https://asciinema.org/a/3i5yptlh2udbl9bkvrteee1ek.png)](https://asciinema.org/a/3i5yptlh2udbl9bkvrteee1ek)\n\n##USAGE\nSelect same numbers vertically by visual block select, and execute `:VSeqIncrDec`. So, the numbers become the incremented sequence by decimal number.  \nUnlike `g\u003cCTRL-A\u003e`, this plugin can select radix manually, and automatically aligns by white space or zero padding.\n\nFor example,  \n\n```\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n0 0 0 0 00\n```\n\nthe previous buffer becomes the following by   \n\n- Select 1st column and execute `:VseqIncrDec`.\n- Select 2nd column and execute `:VseqIncrHex`.\n- Select 3rd column and execute `:VseqDecrDec`.\n- Select 4th column and execute `:VseqDecrHex`.\n- Select 5th column and execute `:VseqIncrDec`.\n\n```\n 0 0 10 a 00\n 1 1  9 9 01\n 2 2  8 8 02\n 3 3  7 7 03\n 4 4  6 6 04\n 5 5  5 5 05\n 6 6  4 4 06\n 7 7  3 3 07\n 8 8  2 2 08\n 9 9  1 1 09\n10 a  0 0 10\n```\n\n###RECOMMENDED\nIf vim-operator-user plugin is installed, key-mappings by operator is avaliable. The key-mappings can do *dot-repeat*.\n\nvim-operator-user plugin\n\nhttps://github.com/kana/vim-operator-user\n\n\n##INTERFACE\n###VARIABLES\n#### `g:vseq#upper_case` ( default value: = 0 )\n\nIf `g:vseq#upper_case` is 1, the alphabets of hex number become uppercase.  \n\n\n#### `g:vseq#padding_right` ( default value: = 0 )\n\nIf `g:vseq#padding_right` is 1, the padding by white space becomes right side of number.  \nThe option is ignored at zero padding.  \n\n\n###COMMANDS\n- `:VSeqIncrOct` : Generate sequential number incrementally by octal format.\n- `:VSeqIncrDec` : Generate sequential number incrementally by decimal format.\n- `:VSeqIncrHex` : Generate sequential number incrementally by hexadecimal format.\n- `:VSeqDecrOct` : Generate sequential number decrementally by octal format.\n- `:VSeqDecrDec` : Generate sequential number decrementally by decimal format.\n- `:VSeqDecrHex` : Generate sequential number decrementally by hexadecimal format.\n\n###KEY-MAPPINGS\n- `\u003cPlug\u003e(vseq-incr-oct)` : call `:VSeqIncrOct`.  \n- `\u003cPlug\u003e(vseq-incr-dec)` : call `:VSeqIncrDec`.\n- `\u003cPlug\u003e(vseq-incr-hex)` : call `:VSeqIncrHex`.\n- `\u003cPlug\u003e(vseq-decr-oct)` : call `:VSeqDecrOct`.  \n- `\u003cPlug\u003e(vseq-decr-dec)` : call `:VSeqDecrDec`.\n- `\u003cPlug\u003e(vseq-decr-hex)` : call `:VSeqDecrHex`.\n\n###KEY-MAPPINGS AS OPERATOR\nThe following mappings is only avaibale when vim-operator-user plugin is installed.  \n\n- `\u003cPlug\u003e(operator-vseq-incr-oct)` : call `:VSeqIncrOct` as operator.  \n- `\u003cPlug\u003e(operator-vseq-incr-dec)` : call `:VSeqIncrDec` as operator.\n- `\u003cPlug\u003e(operator-vseq-incr-hex)` : call `:VSeqIncrHex` as operator.\n- `\u003cPlug\u003e(operator-vseq-decr-oct)` : call `:VSeqDecrOct` as operator.  \n- `\u003cPlug\u003e(operator-vseq-decr-dec)` : call `:VSeqDecrDec` as operator.\n- `\u003cPlug\u003e(operator-vseq-decr-hex)` : call `:VSeqDecrHex` as operator.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalance%2Fvseq.vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdalance%2Fvseq.vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalance%2Fvseq.vim/lists"}