language-objective-c.cson 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. '.source.objc, .source.objcpp':
  2. 'editor':
  3. 'completions': [
  4. 'retain'
  5. 'release'
  6. 'autorelease'
  7. 'description'
  8. 'stringWithFormat:'
  9. 'componentsSeparatedByString:'
  10. 'componentsJoinedByString:'
  11. 'isEqualToString:'
  12. 'UTF8String'
  13. 'lastPathComponent'
  14. 'pathExtension'
  15. 'stringByAbbreviatingWithTildeInPath'
  16. 'stringByAppendingPathComponent:'
  17. 'stringByAppendingPathExtension:'
  18. 'stringByDeletingLastPathComponent'
  19. 'stringByDeletingPathExtension'
  20. 'stringByExpandingTildeInPath'
  21. 'stringByResolvingSymlinksInPath'
  22. 'stringByStandardizingPath'
  23. 'valueForKey:'
  24. 'valueForKeyPath:'
  25. 'setValue:'
  26. 'forKey:'
  27. 'forKeyPath:'
  28. 'NSArray'
  29. 'NSDictionary'
  30. 'NSMutableArray'
  31. 'NSMutableDictionary'
  32. 'NSMutableString'
  33. 'NSString'
  34. ]
  35. # Comment settings are specified in the `language-c` package.
  36. '.source.objcpp, .source.objc':
  37. 'editor':
  38. 'foldEndPattern': '(?<!\\*)\\*\\*/|^\\s*\\}|^@end\\b'