{"id":13595778,"url":"https://github.com/babarot/zsh-vimode-visual","last_synced_at":"2026-03-15T18:45:47.504Z","repository":{"id":25264687,"uuid":"28689961","full_name":"babarot/zsh-vimode-visual","owner":"babarot","description":"Implement the vim-like visual mode to vi-mode of zsh","archived":false,"fork":false,"pushed_at":"2020-07-05T16:28:37.000Z","size":26,"stargazers_count":108,"open_issues_count":4,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-25T13:54:31.473Z","etag":null,"topics":["zplug","zsh"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/babarot.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":"2015-01-01T16:13:36.000Z","updated_at":"2024-09-30T03:14:30.000Z","dependencies_parsed_at":"2022-08-23T22:10:35.105Z","dependency_job_id":null,"html_url":"https://github.com/babarot/zsh-vimode-visual","commit_stats":null,"previous_names":["babarot/zsh-vimode-visual","b4b4r07/zsh-vimode-visual"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/babarot/zsh-vimode-visual","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fzsh-vimode-visual","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fzsh-vimode-visual/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fzsh-vimode-visual/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fzsh-vimode-visual/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/babarot","download_url":"https://codeload.github.com/babarot/zsh-vimode-visual/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/babarot%2Fzsh-vimode-visual/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27775739,"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-12-17T02:00:08.291Z","response_time":55,"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":["zplug","zsh"],"created_at":"2024-08-01T16:01:57.386Z","updated_at":"2025-12-17T02:48:50.596Z","avatar_url":"https://github.com/babarot.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"zsh-vimode-visual\n===\n\n[![](https://img.shields.io/badge/powered%20by-zplug-ca7f85.svg?style=flat)](https://github.com/zplug/zplug)\n\n`zsh-vimode-visual` provides visual mode in [Zsh Line Editer](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html)\n\n## Description\n\n[Zsh Line Editer](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html) has two vi-like editing mode (*viins*, *vicmd*), but Vim has three or more major editing mode such as *insert*, *command*, *visual* and so on. Let's implement visual mode in [Zsh Line Editer](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html).\n\n![](https://raw.githubusercontent.com/b4b4r07/screenshots/master/zsh-vimode-visual/demo.gif)\n\n## Installation\n\nIf you use [zplug](https://github.com/zplug/zplug) as a plugin manager for zsh, all you have to do is to put something like this to your `.zshrc`.\n\n```zsh\nzplug \"b4b4r07/zsh-vimode-visual\"\n```\n\nAlso, if you want to use it without conflict with [`zsh-users/zsh-syntax-highlighting`](https://github.com/zsh-users/zsh-syntax-highlighting), please set as follows.\n\n```zsh\nzplug \"zsh-users/zsh-syntax-highlighting\", defer:2\nzplug \"b4b4r07/zsh-vimode-visual\", defer:3\n```\n\nYou can order the loading by setting the `defer` tag.\nIn addition, if the `defer` tag is set to 2 or more, it's load after running `compinit`.\n\nOtherwise, to install manually:\n\n```console\n$ git clone https://github.com/b4b4r07/zsh-vimode-visual\n$ source ./zsh-vimode-visual/zsh-vimode-visual.zsh\n```\n\n## Configuration\n\n`zsh-vimode-visual` is implemented with ***vivis*** that emulates Vim visual mode and ***vivli*** mode.\n\n```zsh\nbindkey -M vicmd 'V'  vi-vlines-mode\nbindkey -M vicmd 'v'  vi-visual-mode\nbindkey -M vivis ' '  vi-visual-forward-char\nbindkey -M vivis ','  vi-visual-rev-repeat-find\nbindkey -M vivis '0'  vi-visual-bol\nbindkey -M vivis ';'  vi-visual-repeat-find\nbindkey -M vivis 'B'  vi-visual-backward-blank-word\nbindkey -M vivis 'C'  vi-visual-substitute-lines\nbindkey -M vivis 'D'  vi-visual-kill-and-vicmd\nbindkey -M vivis 'E'  vi-visual-forward-blank-word-end\nbindkey -M vivis 'F'  vi-visual-find-prev-char\nbindkey -M vivis 'G'  vi-visual-goto-line\nbindkey -M vivis 'I'  vi-visual-insert-bol\nbindkey -M vivis 'J'  vi-visual-join\nbindkey -M vivis 'O'  vi-visual-exchange-points\nbindkey -M vivis 'R'  vi-visual-substitute-lines\nbindkey -M vivis 'S ' vi-visual-surround-space\nbindkey -M vivis \"S'\" vi-visual-surround-squote\nbindkey -M vivis 'S\"' vi-visual-surround-dquote\nbindkey -M vivis 'S(' vi-visual-surround-parenthesis\nbindkey -M vivis 'S)' vi-visual-surround-parenthesis\nbindkey -M vivis 'T'  vi-visual-find-prev-char-skip\nbindkey -M vivis 'U'  vi-visual-uppercase-region\nbindkey -M vivis 'V'  vi-visual-exit-to-vlines\nbindkey -M vivis 'W'  vi-visual-forward-blank-word\nbindkey -M vivis 'Y'  vi-visual-yank\nbindkey -M vivis '^M' vi-visual-yank\nbindkey -M vivis '^[' vi-visual-exit\nbindkey -M vivis 'b'  vi-visual-backward-word\nbindkey -M vivis 'c'  vi-visual-change\nbindkey -M vivis 'd'  vi-visual-kill-and-vicmd\nbindkey -M vivis 'e'  vi-visual-forward-word-end\nbindkey -M vivis 'f'  vi-visual-find-next-char\nbindkey -M vivis 'gg' vi-visual-goto-first-line\nbindkey -M vivis 'h'  vi-visual-backward-char\nbindkey -M vivis 'j'  vi-visual-down-line\nbindkey -M vivis 'jj' vi-visual-exit\nbindkey -M vivis 'k'  vi-visual-up-line\nbindkey -M vivis 'l'  vi-visual-forward-char\nbindkey -M vivis 'o'  vi-visual-exchange-points\nbindkey -M vivis 'p'  vi-visual-put\nbindkey -M vivis 'r'  vi-visual-replace-region\nbindkey -M vivis 't'  vi-visual-find-next-char-skip\nbindkey -M vivis 'u'  vi-visual-lowercase-region\nbindkey -M vivis 'v'  vi-visual-eol\nbindkey -M vivis 'w'  vi-visual-forward-word\nbindkey -M vivis 'y'  vi-visual-yank\n```\n\n## License\n\nMIT [@b4b4r07](https://twitter.com/b4b4r07)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbabarot%2Fzsh-vimode-visual","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbabarot%2Fzsh-vimode-visual","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbabarot%2Fzsh-vimode-visual/lists"}