-————————————————-
ubuntu中如何将终端添加到右键?
在右键里面添加一个“打开终端”的菜单。
sudo apt-get install nautilus-open-terminal
-————————————————-
Install Mannual(By CMM)
一、Install vim
sudo apt-get install vim (vim-full)
sudo apt-get install rar unrar p7zip-full
sudo apt-get install build-essential
二、In comand line, install cscop, ctags:
# sudo apt-get install cscop ctags
三、 taglist的安装和使用:
1、 在home目录下建立.vim文件夹,把taglist文件夹内的内容放入其中
2、 在home目录新建名为“.vimrc”的文件,并拷入以下内容:
set mouse=a
let Tlist_Use_Right_Window=1
let Tlist_File_Fold_Auto_Close=1
map :TlistTogglenoremap :makenoremap :make clean;makenoremap :Tlistnoremap :TlistSyncnoremap :!./vitags.sh:cs resetnoremap :!cvs upnnoremap &#64;&#61;( ( foldclosed(line(‘.’)) <0 ) ? ‘zc’ : ‘zo’)if has(“multi_byte”)
set encoding&#61;utf-8
set fileencoding&#61;chinese
set fileencodings&#61;ucs-bom,utf-8,chinese
endif
set wrap
set hlsearch
filetype plugin on
colorscheme elflord
syntax on
set nocp
filetype plugin on
filetype indent on
if has(“cscope”)
set csprg&#61;/usr/bin/cscope
set csto&#61;0
set cst
set nocsverb
” add any database in current directory
if filereadable(“cscope.out”)
cs add cscope.out
” else add database pointed to by environment
elseif $CSCOPE_DB !&#61; “”
cs add $CSCOPE_DB
endif
set csverb
set cscopetag
endif
set nu
set ts&#61;4
set sw&#61;4
set ru
set hls
set is
set sm
set cin
set cino&#61;:0g0t0(sus
set autoread ” read open files again when changed outside Vim
set incsearch ” use incremental search
set nowrap ” do not wrap lines
set nobackup
set nowritebackup
map :!ctags -R –c-kinds&#61;&#43;p –fields&#61;&#43;iaS –extra&#61;&#43;q .map :!ctags -R .
现在再试试vim -t &#xff0c;这时如果有多个选项的话就会出现一个列表让你选择你需要的那个。
一个好用的工具可以让你的工作效率大大提高&#xff0c;这里只是介绍了一点点&#xff0c;希望大家补充&#xff0c;纠正错误。
更多资料还可以看这里&#xff1a;
使用VIM开发软件项目&#xff0d;&#xff0d; 使用tag文件和taglist插件 (二)
http://www.360doc.com/content/10/0806/17/2555231_44139610.shtml
https://www.cnblogs.com/bluestorm/category/344572.html