Skip to content

Commit

Permalink
add covim plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ma6174 committed May 24, 2013
1 parent b859482 commit 446e55c
Show file tree
Hide file tree
Showing 5 changed files with 627 additions and 0 deletions.
1 change: 1 addition & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ Bundle 'ctrlp-modified.vim'
Bundle 'last_edit_marker.vim'
"Bundle 'Python-mode-klen'
Bundle 'SQLComplete.vim'
"Bundle 'FredKSchott/CoVim'
"Bundle 'djangojump'
" ...

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
- clone bundle 程序:`git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle`
- 打开vim并执行bundle程序`:BundleInstall`

## 2013年5月24日更新

- 增加covim团队协作工具
- 需要安装:`pip install twisted`
- 开启方法:`:CoVim start [port] [name] `
- 连接服务器:`:CoVim connect [host address / 'localhost'] [port] [name]`
- 退出:`Quit Vim` or `:CoVim disconnect`

## 2013年5月18日更新

- 增加代码格式优化功能
Expand Down
63 changes: 63 additions & 0 deletions doc/CoVim.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
*CoVim.txt* Collaborative Editing for Vim
*covim*


___ _ ~
_ / __\___/\ /(_)_ __ ___ ~
(_)/ / / _ \ \ / / | '_ ` _ \ ~
_/ /__| (_) \ V /| | | | | | | ~
(_)____/\___/ \_/ |_|_| |_| |_| ~

Reference Manual~

==============================================================================
CONTENTS *covim-contents*

1.Intro...................................|covim-intro|
1.Usage...................................|covim-usage|
1.About...................................|covim-about|
1.License.................................|covim-license|

==============================================================================
INTRO *covim-intro*

CoVim provides an easy way to add people to your Vim session for real-time
collaboration. Once connected, other users will show up in your Vim client
with their own cursors, able to move around and edit anywhere in the document.

Demo:
https://github.com/FredKSchott/CoVim


==============================================================================
USAGE *covim-usage*

To start a new CoVim server:
:CoVim start [port] [name]
(or, start a CoVim server from the command line: ./server.py [port])

To connect to a running server:
:CoVim connect [host address / 'localhost'] [port] [name]

To disconnect:
:CoVim disconnect
(CoVim automatically disconnects on quit)


==============================================================================
ABOUT *covim-about*

CoVim is currently maintained by the handsome:
Fred K. Schott (github: fredkschott)

Find the latest version of CoVim here:
https://github.com/FredKSchott/CoVim


==============================================================================
LICENCE *covim-licence*

CoVim is licensed under MIT License. See LICENSE file for full license.


vim:tw=78:sw=4:ft=help:norl:
Loading

0 comments on commit 446e55c

Please sign in to comment.