随笔分类 - OS-开发经验
摘要:centos7 install vim8 Git and dependency Git: https://github.com/vim/vim configure install
阅读全文
该文被密码保护。
摘要:```
➜ ~ pwd
/Users/muahao
➜ ~ cat ~/.ssh/config
Host * ServerAliveInterval 60 ControlMaster auto ControlPath ~/.ssh/%h-%p-%r ControlPersist yes ```
阅读全文
摘要:UNIX世界的软件开发大多都是协作式的,因此,Patch(补丁)是一个相当重要的东西,因为几乎所有的大型UNIX项目的普通贡献者,都是通过 Patch来提交代码的。作为最重要的开源项目之一,Linux,也是这样的。普通开发者从软件仓库clone下代码,然后写入代码,做一个Patch, 最后用E ma
阅读全文
摘要:$cat ~/.vimrc set nocompatible " be iMproved, required filetype off " required " " set the runtime path to include Vundle and initialize set rtp+=~/.v
阅读全文
摘要:切换工作台和目录 切换标签页 标准模式下: MacVim 还可以借助快捷键来完成 tab 的关闭、切换 NerdTree 在 .vimrc 中的常用配置
阅读全文
摘要:vundle 和nerdtree vundle git: https://github.com/VundleVim/Vundle.vim.git nerdtree git : https://github.com/scrooloose/nerdtree.git 注意 :vundle 是一个插件管理器
阅读全文
摘要:自己总结 1. 在我的工作目录里的.vimrc中做了这样的配置: 2. 在项目根目录里利用“sudo ctags R ”,生成了tags文件。 http://blog.csdn.net/syfly007/article/details/6413523 http://www.cnblogs.com/c
阅读全文
摘要:Linux调试工具strace和gdb常用命令小结 strace和gdb是Linux环境下的两个常用调试工具,这里是个人在使用过程中对这两个工具常用参数的总结,留作日后查看使用。 strace调试工具 strace工具用于跟踪进程执行时的系统调用和所接收的信号,包括参数、返回值、执行时间。在Linu
阅读全文