Skip to content

Commit

Permalink
remove vim-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tao12345666333 committed Oct 11, 2016
1 parent 6ef3e73 commit 90c9bc8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 26 deletions.
8 changes: 3 additions & 5 deletions README-zh.md
Expand Up @@ -12,23 +12,23 @@

`sudo apt-get install python vim exuberant-ctags git`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **依赖**(RedHat/CentOS 平台)

CentOS 6.7的yum源自带的Python版本较旧,推荐自行安装Python2.7.

`sudo yum install python vim ctags git`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **依赖**(Mac OS 平台)

`brew install python vim git`

`wget http://tenet.dl.sourceforge.net/project/ctags/ctags/5.8/ctags-5.8.tar.gz && tar -zxvf ctags-5.8.tar.gz && cd ctags-5.8 && ./configure && make && sudo make install`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **下载vimrc 文件到用户主目录**

Expand Down Expand Up @@ -60,8 +60,6 @@ Plugin 'gmarik/vundle'
" Plugins from github repos:
" Python and PHP Debugger
Plugin 'fisadev/vim-debug.vim'
" Better file browser
Plugin 'scrooloose/nerdtree'
" Code commenter
Expand Down
8 changes: 3 additions & 5 deletions README.md
Expand Up @@ -14,23 +14,23 @@

`sudo apt-get install python vim exuberant-ctags git`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **Dependencies**(RedHat/CentOS platform)

The CentOS 6.7's default Python is 2.6, it's recommend to install Python2.7.

`sudo yum install python vim ctags git`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **Dependencies**(Mac OS platform)

`brew install python vim git`

`wget http://tenet.dl.sourceforge.net/project/ctags/ctags/5.8/ctags-5.8.tar.gz && tar -zxvf ctags-5.8.tar.gz && cd ctags-5.8 && ./configure && make && sudo make install`

`sudo pip install dbgp vim-debug pep8 flake8 pyflakes isort`
`sudo pip install dbgp pep8 flake8 pyflakes isort`

* **Download vimrc file to user home directory**

Expand Down Expand Up @@ -63,8 +63,6 @@ Plugin 'gmarik/vundle'
" Plugins from github repos:
" Python and PHP Debugger
Plugin 'fisadev/vim-debug.vim'
" Better file browser
Plugin 'scrooloose/nerdtree'
" Code commenter
Expand Down
16 changes: 0 additions & 16 deletions vimrc
Expand Up @@ -37,8 +37,6 @@ Plugin 'gmarik/vundle'

" Plugins from github repos:

" Python and PHP Debugger
Plugin 'fisadev/vim-debug.vim'
" Better file browser
Plugin 'scrooloose/nerdtree'
" Code commenter
Expand Down Expand Up @@ -314,20 +312,6 @@ let NERDTreeIgnore = ['\.pyc$', '\.pyo$']
" show pending tasks list
map <F2> :TaskList<CR>
" Vim-debug ------------------------------

" disable default mappings, have a lot of conflicts with other plugins
let g:vim_debug_disable_mappings = 1
" add some useful mappings
" map <F5> :Dbg over<CR>
" map <F6> :Dbg into<CR>
" map <F7> :Dbg out<CR>
" map <F8> :Dbg here<CR>
" map <F9> :Dbg break<CR>
" map <F10> :Dbg watch<CR>
" map <F11> :Dbg down<CR>
" map <F12> :Dbg up<CR>

" CtrlP ------------------------------

" file finder mapping
Expand Down

1 comment on commit 90c9bc8

@tao12345666333
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

close #13

Please sign in to comment.