IDE in terminal for Python

Tmux Vim To be continued…

April 14, 2017 · 1 min · Me

Vim Note

Use MacVim in Command line 2017年 2月16日 星期四 22时46分40秒 CST Add following in ./bash_profile: alias gvim='/Applications/MacVim.app/Contents/MacOS/Vim -g' Edit more than one file open file Out vim vim file1 file2 : open multiple files vim -o file1 file2 : open multiple files with horizontal windows vim -O file1 file2 : open multiple files with vertical windows in vim e file : open new file sp file : open new file in hroizontal window vsp file : open new file in vertical window close file :bd close current buffer...

February 10, 2017 · 2 min · Me

Vim As IDE

Install Vundle Vundle is short for Vim bundle and is a Vim plugin manager. Official site: https://github.com/VundleVim/Vundle.vim Use following command to install Vundle: $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim Put following lines at the top of your .vimrc to use Vundle. Remove plugins you don’t need, they are for illustration purposes: set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/....

February 8, 2017 · 4 min · Me