{"id":16700154,"url":"https://github.com/guyzmo/vim-etherpad","last_synced_at":"2026-01-02T13:10:15.987Z","repository":{"id":7939426,"uuid":"9331072","full_name":"guyzmo/vim-etherpad","owner":"guyzmo","description":"Plugin to enable collaborative edition on etherpad with the best editor","archived":false,"fork":false,"pushed_at":"2016-03-17T19:57:44.000Z","size":28,"stargazers_count":100,"open_issues_count":5,"forks_count":4,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-01-21T00:29:15.454Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"VimL","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/guyzmo.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":"2013-04-09T20:39:00.000Z","updated_at":"2023-03-06T06:04:28.000Z","dependencies_parsed_at":"2022-09-14T08:40:48.945Z","dependency_job_id":null,"html_url":"https://github.com/guyzmo/vim-etherpad","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/guyzmo%2Fvim-etherpad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guyzmo%2Fvim-etherpad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guyzmo%2Fvim-etherpad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guyzmo%2Fvim-etherpad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guyzmo","download_url":"https://codeload.github.com/guyzmo/vim-etherpad/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243528643,"owners_count":20305458,"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-10-12T18:09:35.393Z","updated_at":"2026-01-02T13:10:15.954Z","avatar_url":"https://github.com/guyzmo.png","language":"VimL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Etherpad Client for VIM\n\nThis plugin uses [EtherpadLiteClient](https://github.com/guyzmo/PyEtherpadLite) to connect\nto a pad on an [EtherPadLite server](https://github.com/ether/etherpad-lite) and enables collaborative edition in your favorite editor.\n\n\u003cvideo width=\"500\" controls\u003e\n\u003csource src=\"http://m0g.net/vim-etherpad-screencast.mp4\" type=\"video/mp4\"\u003e\n\u003csource src=\"http://m0g.net/vim-etherpad-screencast.ogv\" type=\"video/ogg\"\u003e\n[![Demo](https://i.imgur.com/SAqsy1F.gif)\u003cbr /\u003e\nClick me for a demo video of good quality](http://m0g.net/vim-etherpad/)\n\u003c/video\u003e\n\n# Disclaimer\n\nAs is, the plugin is only a Proof-of-Concept, that is still not configurable and not fail-proof.\nIt can get updates from the server, and generate/send changeset to the server, but that part is still pretty buggy.\nThe Vim integration ready to be tested, though still in beta phase. It can happen that a typed change will revert.\n\nSupports pad connection using `websocket` flawlessly, but `xhr-polling` is still beta (it may need several reconnections to work).\n`json-polling` has been implemented, but does not still work. See [SocketIO-client](https://github.com/guyzmo/SocketIO-client) for more.\n\n# Develop\n\nVim needs to be compiled with the `python` option enabled.\n\nThere's a dependency on the python library `requests`:\n\n    pip install requests\n\nTo run the plugin for dev or testing, you can launch vim as follows:\n\n    vim -c 'source plugin/vim-etherpad.vim'\n\n# Configuration in .vimrc\n\n    \" To connect to the pad at URI http://localhost:9001/p/test per default:\n    let g:epad_host = \"localhost\" \" Hostname to connect to\n    let g:epad_port = \"9001\"      \" Port to connect to\n    let g:epad_path = \"p/\"        \" URL Path to the pad\n    let g:epad_pad = \"test\"       \" Name of the pad to connect to\n    \n    \" GUI feel\n    let g:epad_updatetime = 1000  \" lower this for more realtime, higher this for less load\n\n    \" GUI look\n    let g:epad_attributes = 0     \" set to 1 to display attributes (works only with a font that)\n    let g:epad_authors = 0        \" set to 1 to display authors (works only in gui mode)\n\n    \" Enable verbosity\n    let g:epad_verbose = 0        \" set to 1 for INFO level, 2 for DEBUG level\n\n# Use\n\n## To connect to a pad:\n\n    :Etherpad     \" connects to the default URI spec and default pad\n    :Etherpad foo \" connects to the 'foo' pad at default URI\n    :Etherpad http://beta.etherpad.org/p/test \" connects to that pad's URI\n    :Etherpad https://pad.lqdn.fr/p/test      \" another one\n\n## To disconnect from a pad:\n\n    :EtherpadStop\n    \n## To pause (or resume) current pad connection:\n\n    :EtherpadPause\n    \n## To try sending an update (will fail, changeset building library is work in progress):\n\nmake some edits and then:\n\n    :EtherpadUpdate\n\n## To toggle (or set) display of attributes:\n\n    :EtherpadShowAttributes   \" toggle attributes\n    :EtherpadShowAttributes 0 \" disable attributes\n    :EtherpadShowAttributes 1 \" show attributes\n\n## The same with authors:\n\n    :EtherpadShowAuthors   \" toggle authors\n    :EtherpadShowAuthors 0 \" disable authors\n    :EtherpadShowAuthors 1 \" show authors\n\n# Install\n\nthough install is still not recommended, you can install it as a Vundle bundle:\n\n    Bundle 'guyzmo/vim-etherpad'\n\n# License\n\nAll the plugin's code is under the GPLv3.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguyzmo%2Fvim-etherpad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguyzmo%2Fvim-etherpad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguyzmo%2Fvim-etherpad/lists"}