科学网

 找回密码
  注册

tag 标签: insert

相关帖子

版块 作者 回复/查看 最后发表

没有相关内容

相关日志

linux安装盘包含两张或以上iso文件
ppthelion 2016-11-30 15:19
先mkdir /media/ cdrom, 然后mount至这个文件夹,执行install, 然后静待出现eject DVD 1 and insert DVD 2 to continue弹窗, ctrl+shit+T开启新的终端,umount这个目录(不能直接原窗口,不然打断安装进程)。 重新mount第二张iso, 点继续。。 ok
个人分类: Study_little_thing|2 次阅读|0 个评论
Matlab: Inserting Imagery
lixujeremy 2015-10-24 22:12
Summary 我在前面已经有过讨论 图片插入另一图片的代码 ,此处之方法比之前文将更加强大。 Code Specification 这里介绍代码属性配置: InsertAtts_1.Scale=0.5; 配置被插入图片的转换尺度 InsertAtts_1.Xoffset=0.04;X 轴偏移量,归一化为背景图片的 width InsertAtts_1.Yoffset=0.08;Y 轴偏移量,归一化为背景图片的 height InsertAtts_1.widthedge=15;X 轴边缘 width ,若该数值大于等于 1 ,表示此处数值代表像元尺寸,若是数值在 ; 边缘背景颜色 示例结果如下: picinsert.rar References Matlab: Inserting Images .
个人分类: Matlab|2150 次阅读|0 个评论
[转载]LIST的insert操作
EnergeticYi 2013-7-2 10:13
http://www.cplusplus.com/reference/list/list/insert/
3 次阅读|0 个评论
根据bwa比对的SAM初步估计片段大小
kangyu 2013-4-16 16:56
Linux命令即可,较快,但是不太严格
个人分类: Bioinformatics|5299 次阅读|0 个评论
我的vimrc文件内容
huozhenhua 2011-11-11 09:59
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=ucs-bom,utf-8,latin1 endif set nocompatible " Use Vim defaults (much better!) set bs=indent,eol,start " allow backspacing over everything in insert mode "set ai " always set autoindenting on "set backup " keep a backup file set viminfo='20,\"50 " read/write a .viminfo file, don't store more " than 50 lines of registers set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time " Only do this part when compiled with support for autocommands if has("autocmd") augroup fedora autocmd! " In text files, always limit the width of text to 78 characters " autocmd BufRead *.txt set tw=78 " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if line("'\"") 0 line ("'\"") = line("$") | \ exe "normal! g'\"" | \ endif " don't write swapfile on most commonly used directories for NFS mounts or USB sticks autocmd BufNewFile,BufReadPre /media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp " start with spec file template autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec augroup END endif if has("cscope") filereadable("/usr/bin/cscope") set csprg=/usr/bin/cscope set csto=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 != "" cs add $CSCOPE_DB endif set csverb endif " Switch syntax highlighting on, when the terminal has colors " Also switch on highlighting the last used search pattern. if t_Co 2 || has("gui_running") syntax on set hlsearch endif filetype plugin on if term=="xterm" set t_Co=8 set t_Sb= ESCi :inoremap ] c-r=ClosePair(']')CR :inoremap ESCi :inoremap c-r=ClosePair('')CR " 打开文件时,总是跳到退出之前的光标处 autocmd BufReadPost * \ if line("'\"") 0 line("'\"") = line("$") | \ exe "normal! g`\"" | \ endif " 用浅色高亮当前行 if has("gui_running") autocmd InsertLeave * se nocul autocmd InsertEnter * se cul endif filetype plugin on "允许使用ftplugin目录下的文件类型特定脚本 filetype indent on "允许使用indent目录下的文件类型缩进 " 设置自动粘贴功能。 set pastetoggle=F3 " 设置以缩进的方式自动折叠和设置快捷方式 set foldmethod=indent " map F3 zO " 打开折叠 map F4 zc " 关闭折叠 map F5 zR " 打开所有折叠 map F6 zM " 关闭所有折叠 " 使用 murphy 调色板 colo torte " 用空格键来开关折叠 set foldenable set foldmethod=manual nnoremap space @=((foldclosed(line('.')) 0) ? 'zc' : 'zo')CR " 隐藏掉菜单和工具条。 set guioptions-=m set guioptions-=T map silent F2 :if guioptions =~# 'T' Bar \set guioptions-=T Bar \set guioptions-=m bar \else Bar \set guioptions+=T Bar \set guioptions+=m Bar \endifCR " 标签页设置 if has("gui_running") set showtabline=2 map! tn tabnew nmap C-c :tabcloseCR endif " 标签页只显示文件名 function ShortTabLabel () let bufnrlist = tabpagebuflist (v:lnum) let label = bufname (bufnrlist ) let filename = fnamemodify (label, ':t') return filename endfunction set guitablabel=%{ShortTabLabel()} " 使回格键(backspace)正常处理indent, eol, start等 set backspace=eol,start,indent " 允许backspace和光标键跨越行边界 " set whichwrap+=,,h,l " 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位) set mouse=a set selection=exclusive set selectmode=mouse,key " 启动的时候不显示那个援助索马里儿童的提示 set shortmess=atI " 通过使用: commands命令,告诉我们文件的哪一行被改变过 set report=0 " 不让vim发出讨厌的滴滴声 set noerrorbells " 在被分割的窗口间显示空白,便于阅读 set fillchars=vert:\ ,stl:\ ,stlnc:\ """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " 搜索和匹配 " """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " 高亮显示匹配的括号 set showmatch " 匹配括号高亮的时间(单位是十分之一秒) set matchtime=3 " 在搜索的时候忽略大小写 set ignorecase " 不要高亮被搜索的句子(phrases) " set nohlsearch " 在搜索时,输入的词句的逐字符高亮(类似firefox的搜索) set incsearch " 输入:set list命令是应该显示些啥? set listchars=tab:\|\ ,trail:.,extends:,precedes:,eol:$ " Tab补全时忽略这些忽略这些 set wildignore=*.o,*.obj,*.bak,*.exe " 光标移动到buffer的顶部和底部时保持3行距离 set scrolloff=3 "搜索出之后高亮关键词 set hlsearch nmap silent leadercr :nohcr """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " CTags的设定 " """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" set tags=tags; " 按照名称排序 let Tlist_Sort_Type = "name" " 在右侧显示窗口 let Tlist_Use_Right_Window = 1 " 压缩方式 let Tlist_Compart_Format = 1 " 如果只有一个buffer,kill窗口也kill掉buffer let Tlist_Exist_OnlyWindow = 1 " 不要关闭其他文件的tags let Tlist_File_Fold_Auto_Close = 0 " 不要显示折叠树 let Tlist_Enable_Fold_Column = 0
个人分类: Linux使用|3245 次阅读|0 个评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-5-29 17:35

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部