09 2013 档案

摘要:1 #ifndef PRINT_H 2 #define PRINT_H 3 4 #include 5 class ReplaceStdout 6 { 7 public: 8 ReplaceStdout(); 9 ~ReplaceStdout();10 bool isOK() { return _ok; }11 private:12 bool _ok;13 };14 void print(const char* format, ...);15 #endifprint.h 1 #include "print.h" 2 #include 3 #include ... 阅读全文
posted @ 2013-09-23 22:50 国超 阅读(348) 评论(0) 推荐(0) 编辑
摘要:t 新terminal 关闭窗口t 新tabw 关闭tabd 关闭tab或terminal 上一个tab 下一个tab 上一条命令 下一条命令 补全a 跳到行首e 跳到行尾b 跳到词头f 跳到词尾 前移1字符 后移1字符xx 某位置与当前位置间跳动u 删至行首k 删至行尾w 删至词首d 删至词尾h 删除前一个字符d 删除当前字符(当前行无字符关闭当前tab)y 插入u/k/w d 删除的字符r 查找历史命令 复制 粘贴 向上滚屏 向下滚屏 阅读全文
posted @ 2013-09-08 17:16 国超 阅读(925) 评论(0) 推荐(1) 编辑