
vim
文章平均质量分 62
mobz
https://github.com/54shady
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
my vimrc
set nocompatible"source $VIMRUNTIME/vimrc_example.vim"source $VIMRUNTIME/mswin.vim"behave mswinset diffexpr=MyDiff()function MyDiff() let opt = '-a --binary ' if &diffopt =~ 'icase' |原创 2012-12-28 13:31:37 · 838 阅读 · 0 评论 -
myfedora vimrc
"set nuset sw=4set ts=4syntax on"vimManagerWindowlet g:winManagerWindowLayout='FileExplorer|TagList'nmap wm :WMToggle"window movennoremap hnnoremap jnnoremap knnoremap l"cscope"" C原创 2014-08-06 23:56:40 · 965 阅读 · 0 评论 -
source insight 和 vim切换使用
在Source Insight中按F12调用gvim,打开对应文件,跳转到对应的行。以下是实现步骤:1.Source Insight中,Options->Custom Commands...->Add...,NewCommand name 随便写,我的是"Edit with Vim"2.Run中写入: "C:\Program Files\Vim\vim63\gvim.exe" --re转载 2014-06-08 05:39:17 · 1998 阅读 · 0 评论 -
vim 的一个错误。Error detected while processing function <SNR>25_updateData..fuf#updateMruList
点击打开链接翻译 2014-06-08 05:30:28 · 12726 阅读 · 0 评论 -
windows下编译gvim.exe
编译准备:1.下载最新的vim的原创 2014-06-08 03:36:18 · 2943 阅读 · 0 评论 -
busy box 1.7.0 cscope.files
#!/bin/shset -xBUSYBOX=$PWDecho $BUSYBOXfind $BUSYBOX/ -name *.[chsS] > $BUSYBOX/cscope.filescscope -bkq -i $BUSYBOX/cscope.filesctags -n -f tags --fields=+aiS * -L $BUSYBOX/cscope.files原创 2014-04-28 02:23:01 · 989 阅读 · 0 评论 -
cscope.file and tags for uboot 2012.04
#!/bin/bashUBOOT=$PWD#generate the cscope.files find $UBOOT \ -path "$UBOOT/include/configs*" -prune -o \ -path "$UBOOT/board/*"原创 2014-04-13 00:51:55 · 929 阅读 · 0 评论 -
gen kernel cscope.files 2.6.22.6
#!/bin/shset -x KERNEL=$PWDfind $KERNEL/arch/arm/boot/ -name "*.[chsS]" -print > $KERNEL/cscope.filesfind $KERNEL/arch/arm/common/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/a原创 2014-04-28 02:21:05 · 1088 阅读 · 0 评论 -
uboot 12.04 ctags cscope shell file.
#!/bin/bashUBOOT=$PWD#generate the cscope.files find $UBOOT \ -path "$UBOOT/include/configs*" -prune -o \ -path "$UBOOT/board/*" -prune -o \ -path "$UBOOT/nand_spl/*"原创 2014-04-09 01:03:53 · 1367 阅读 · 0 评论 -
uboot 2012.04 tags cscope.files
#!/bin/bashUBOOT=$PWD#generate the cscope.files find $UBOOT \ -path "$UBOOT/include/configs*" -prune -o \ -path "$UBOOT/board/*" -prune -o \ -path "$UBOOT/drivers/serial/*"原创 2014-05-03 23:59:33 · 909 阅读 · 0 评论 -
my .vim readme file
Usagegit clone https://github.com/54shady/dotvim.git .vimln -s ~/.vim/vimrc ~/.vimrclookupfile查找但前目录所有的文件,除了png和gif文件#!/bin/sh# generate tag file for lookupfile pluginecho -e "!_TAG_FILE_SORTED\t2\原创 2016-10-28 14:33:58 · 607 阅读 · 0 评论