(以下是ubuntu上的配置........ 但如果你是在window上的,直接用一下配置吧(懒得介绍了)=.= syntax on filetype indent plugin on set ruler set nu set showcmd :colorscheme blue map <F4> :!g++ -o2 -std=c++ % -o %<<cr> map <F5> :!%<<cr> map <C-A> ggVG"+…
Uiautomator的编译运行过程需要输入好几个命令,太麻烦. 花了点时间写了个简单的bat.方便多了.id输入当前使用的SDK ID号(android list target命令可以查看到),class输入测试类的完整名称,包括包名.放到项目目录下运行即可. @echo Now,uiautomator test start.. @pause @echo Please enter the android sdk id: @set /p id= @echo Please enter the fu…
为什么用Vim 重新调配vim,追求尽量简单些. 安装 官网下载 PC: MS-DOS and MS-Windows下的 For modern MS-Windows systems (starting with XP) you can simply use the executable installer:gvim80.exe 双击执行,放到合适的目录. 不过这个貌似是没有编译的,有些插件不能完全用,最好再在github这里下载gvim_8.0.1763_x64.zip解压到原来安装好的目录里去…
// First program example #import <Foundation/Foundation.h> int main (int argc, const char * argv[]) { @autoreleasepool { NSLog (@"Programming is fun!"); } ; } 在开始解释这程序之前,我们需要先讲述下编译和运行的步骤.你可以使用xcode来编译运行,或者你也可以在终端使用oc的编译命令来编译运行.此处只介绍使用Xcode…