{"id":13454179,"url":"https://github.com/FredKSchott/CoVim","last_synced_at":"2025-03-24T05:33:23.120Z","repository":{"id":8322894,"uuid":"9873882","full_name":"FredKSchott/CoVim","owner":"FredKSchott","description":"Collaborative Editing for Vim","archived":true,"fork":false,"pushed_at":"2017-12-23T16:01:23.000Z","size":82,"stargazers_count":2941,"open_issues_count":14,"forks_count":97,"subscribers_count":75,"default_branch":"master","last_synced_at":"2024-09-26T23:05:07.106Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://fredkschott.com/post/2013/05/introducing-covim-real-time-collaboration-for-vim/","language":"Vim script","has_issues":false,"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/FredKSchott.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":"2013-05-05T20:10:16.000Z","updated_at":"2024-09-11T08:47:53.000Z","dependencies_parsed_at":"2022-08-07T02:15:29.781Z","dependency_job_id":null,"html_url":"https://github.com/FredKSchott/CoVim","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/FredKSchott%2FCoVim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FredKSchott%2FCoVim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FredKSchott%2FCoVim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FredKSchott%2FCoVim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FredKSchott","download_url":"https://codeload.github.com/FredKSchott/CoVim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221939097,"owners_count":16904909,"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":[],"created_at":"2024-07-31T08:00:51.632Z","updated_at":"2024-10-28T21:30:26.606Z","avatar_url":"https://github.com/FredKSchott.png","language":"Vim script","funding_links":[],"categories":["Vim script","Vim Script","VimL"],"sub_categories":[],"readme":"\u003cimg src=\"http://fredkschott.com/img/CoVim_Icon.png\" width=\"46\" height=\"46\" /\u003e CoVim\n==========================\nCollaborative Editing for Vim (One of Vim's [most requested features](http://www.vim.org/sponsor/vote_results.php)) is finally here! Think Google Docs for Vim. \n\n__By: Fred Schott, Sam Haney__  \n__Follow [@FredKSchott](http://www.twitter.com/fredkschott) for development news and updates!__\n\n \n\n\n![Demo Gif](http://i.imgur.com/CZeKkAI.gif \"Demo Gif\")\n\n## Features\n- Allows multiple users to connect to the same document online\n- Displays collaborators with uniquely colored cursors \n- Works with your existing configuration\n- Easy to set up \u0026 use\n- And [More!](http://fredkschott.com/post/2013/05/introducing-covim-real-time-collaboration-for-vim/)\n\n## Installation\n\nCoVim requires a version of Vim compiled with python 2.5+. Visit [Troubleshooting](https://github.com/FredKSchott/CoVim/wiki#troubleshooting) if you're having trouble starting Vim.\nAlso note that the Twisted \u0026 Argparse libraries can also be installed via apt-get \u0026 yum.\n\n#### Install With [Pathogen](https://github.com/tpope/vim-pathogen):\n\n1. `pip install twisted argparse service_identity`\n2. `cd ~/.vim/bundle`\n3. `git clone git://github.com/FredKSchott/CoVim.git`  \n\n#### Install With [Vundle](https://github.com/gmarik/vundle):\n\n1. `pip install twisted argparse service_identity`\n2. Add `Plugin 'FredKSchott/CoVim'` to your `~/.vimrc`\n3. `vim +PluginInstall +qall`\n\n#### Install Manually:\n\n1. `pip install twisted argparse service_identity`\n2. Add `CoVimClient.vim` \u0026 `CoVimServer.py` to `~/.vim/plugin/`\n\n\u003e If Vim is having trouble finding modules (twisted, argparse, etc) do the following:\n\u003e \n\u003e 1. run `pip show MODULE_NAME` and get the `Location:` path\n\u003e 2. add the following line to your .vimrc: `python import sys; sys.path.append(\"/module/location/path/\")` using the module path found in step 1.\n\u003e 3. Repeat until all modules are included in your path\n\u003e \n\u003e If you're still having trouble, [visit the wiki](https://github.com/FredKSchott/CoVim/wiki) for additional troubleshooting \u0026 FAQ \n\n## Usage\n__To start a new CoVim server:__ `:CoVim start [port] [name]` (or, from the command line: `./CoVimServer.py [port]`)  \n__To connect to a running server:__ `:CoVim connect [host address / 'localhost'] [port] [name]`  \n__To disconnect:__ `:CoVim disconnect`  \n__To quit Vim while CoVim is connected:__ `:CoVim quit` or `:qall!`\n\n\n## Customization\n#### Add any the following to your .vimrc to customize CoVim:\n\n```\nlet CoVim_default_name = \"YOURNAME\"\nlet CoVim_default_port = \"YOURPORT\"  \n```\n\n## Links\n__[Announcement Post](http://www.fredkschott.com/post/50510962864/introducing-covim-collaborative-editing-for-vim)__  \n__[FAQ](https://github.com/FredKSchott/CoVim/wiki#faq)__  \n__[Troubleshooting](https://github.com/FredKSchott/CoVim/wiki#troubleshooting)__\n\n\n## Special Thanks\nTufts Professor [Ming Chow](http://www.linkedin.com/in/mchow01) for leading the [Senior Capstone Project](http://tuftsdev.github.io/SoftwareEngineering/) that CoVim was born in.  \n\n[![Analytics](https://ga-beacon.appspot.com/UA-39778226-2/CoVim/Readme.md)](https://github.com/igrigorik/ga-beacon)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFredKSchott%2FCoVim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFredKSchott%2FCoVim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFredKSchott%2FCoVim/lists"}