Commit 1cad369

mo khan <mo@mokhan.ca>
2013-05-10 02:25:22
comment out way to run xcodebuild and only show errors
1 parent d752461
Changed files (2)
2013-05-07
People
2013-05-07/People/People/main.m
@@ -13,7 +13,7 @@ int main(int argc, const char * argv[])
 {
 
     @autoreleasepool {
-        
+
         // insert code here...
         Person * person = [[Person alloc] init];
         [person setFirstName:@"Mo"];
@@ -21,9 +21,9 @@ int main(int argc, const char * argv[])
         NSLog(@"Hello, World! %@ %@", person.firstName, person.lastName);
         NSLog(@"%@", [person putFirstAndLastTogether:person.firstName]);
         NSLog(@"%@", [person theTruth]);
-        NSLog(@"%@", [person tellMeSomethingIDontKnow]);        
+        NSLog(@"%@", [person tellMeSomethingIDontKnow]);
         [person change:@"Mo" last_name:@"Ka" age:29];
-        NSLog(@"%@", [person tellMeSomethingIDontKnow]);        
+        NSLog(@"%@", [person tellMeSomethingIDontKnow]);
     }
     return 0;
 }
2013-05-07/People/.vimrc
@@ -1,1 +1,2 @@
+":map <leader>c :!xcodebuild | grep error<cr>
 :map <leader>c :!xcodebuild<cr>