{"id":20044983,"url":"https://github.com/gryf/dragvisuals","last_synced_at":"2025-08-05T06:12:45.080Z","repository":{"id":149006026,"uuid":"93015156","full_name":"gryf/dragvisuals","owner":"gryf","description":"Pathogenised Damian Conways dragvisuals","archived":false,"fork":false,"pushed_at":"2017-06-01T04:04:47.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-02T07:38:52.765Z","etag":null,"topics":["vim","vim-plugin"],"latest_commit_sha":null,"homepage":null,"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/gryf.png","metadata":{"files":{"readme":"README.rst","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":"2017-06-01T04:04:33.000Z","updated_at":"2022-12-06T13:32:10.000Z","dependencies_parsed_at":"2023-09-02T12:26:59.470Z","dependency_job_id":null,"html_url":"https://github.com/gryf/dragvisuals","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gryf/dragvisuals","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gryf%2Fdragvisuals","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gryf%2Fdragvisuals/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gryf%2Fdragvisuals/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gryf%2Fdragvisuals/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gryf","download_url":"https://codeload.github.com/gryf/dragvisuals/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gryf%2Fdragvisuals/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268844819,"owners_count":24316058,"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-08-05T02:00:12.334Z","response_time":2576,"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":["vim","vim-plugin"],"created_at":"2024-11-13T11:03:18.326Z","updated_at":"2025-08-05T06:12:45.073Z","avatar_url":"https://github.com/gryf.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"dragvisuals\n===========\n\nThis is **exact** copy of `Damian Conway`_ script for moving visually selected\nblocks around. The purpose of this repository is to make it more convenient for\npackage managers like Pathogen_.\n\nInstallation\n------------\n\nTo install it, any kind of Vim package manager can be used, like NeoBundle_,\nPathogen_, Vundle_ or vim-plug_.\n\nFor manual installation, copy subdirectories from this repository to your\n``~/.vim`` directory.\n\nUsage\n-----\n\nTo use it, add the following  to your ``.vimrc``:\n\n.. code:: vim\n\n   vmap  \u003cexpr\u003e  \u003cLEFT\u003e   DVB_Drag('left')\n   vmap  \u003cexpr\u003e  \u003cRIGHT\u003e  DVB_Drag('right')\n   vmap  \u003cexpr\u003e  \u003cDOWN\u003e   DVB_Drag('down')\n   vmap  \u003cexpr\u003e  \u003cUP\u003e     DVB_Drag('up')\n   vmap  \u003cexpr\u003e  D        DVB_Duplicate()\n\n   \" Remove any introduced trailing whitespace after moving...\n   let g:DVB_TrimWS = 1\n\nOr, if you use the arrow keys for normal motions, choose four other keys for\nblock dragging. For example:\n\n.. code:: vim\n\n   vmap  \u003cexpr\u003e  h        DVB_Drag('left')\n   vmap  \u003cexpr\u003e  l        DVB_Drag('right')\n   vmap  \u003cexpr\u003e  j        DVB_Drag('down')\n   vmap  \u003cexpr\u003e  k        DVB_Drag('up')\n\nOr:\n\n.. code:: vim\n\n   vmap  \u003cexpr\u003e  \u003cS-LEFT\u003e   DVB_Drag('left')\n   vmap  \u003cexpr\u003e  \u003cS-RIGHT\u003e  DVB_Drag('right')\n   vmap  \u003cexpr\u003e  \u003cS-DOWN\u003e   DVB_Drag('down')\n   vmap  \u003cexpr\u003e  \u003cS-UP\u003e     DVB_Drag('up')\n\nOr even:\n\n.. code:: vim\n\n   vmap  \u003cexpr\u003e   \u003cLEFT\u003e\u003cLEFT\u003e   DVB_Drag('left')\n   vmap  \u003cexpr\u003e  \u003cRIGHT\u003e\u003cRIGHT\u003e  DVB_Drag('right')\n   vmap  \u003cexpr\u003e   \u003cDOWN\u003e\u003cDOWN\u003e   DVB_Drag('down')\n   vmap  \u003cexpr\u003e     \u003cUP\u003e\u003cUP\u003e     DVB_Drag('up')\n\nLicense\n-------\n\nThis work is placed under public domain.\n\n.. _Pathogen: https://github.com/tpope/vim-pathogen\n.. _Vundle: https://github.com/gmarik/Vundle.vim\n.. _NeoBundle: https://github.com/Shougo/neobundle.vim\n.. _vim-plug: https://github.com/junegunn/vim-plug\n.. _Damian Conway: https://github.com/thoughtstream/Damian-Conway-s-Vim-Setup\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgryf%2Fdragvisuals","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgryf%2Fdragvisuals","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgryf%2Fdragvisuals/lists"}