├── .gitignore ├── .travis.yml ├── LICENSE ├── Lin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Lin.xcscheme │ └── LinTests.xcscheme ├── Lin ├── Completions.plist ├── DVTCompletingTextView.h ├── DVTFilePath.h ├── DVTSourceCodeLanguage+Lin.h ├── DVTSourceCodeLanguage+Lin.m ├── DVTSourceCodeLanguage.h ├── DVTSourceTextView+Lin.h ├── DVTSourceTextView+Lin.m ├── DVTSourceTextView.h ├── DVTTextCompletionController+Lin.h ├── DVTTextCompletionController+Lin.m ├── DVTTextCompletionController.h ├── DVTTextCompletionDataSource+Lin.h ├── DVTTextCompletionDataSource+Lin.m ├── DVTTextCompletionDataSource.h ├── DVTTextCompletionSession.h ├── DVTTextStorage.h ├── IDEIndex.h ├── IDEIndexCollection.h ├── IDEIndexCompletionItem.h ├── IDEWorkspace+Lin.h ├── IDEWorkspace+Lin.m ├── IDEWorkspace.h ├── Info.plist ├── LINLocalization.h ├── LINLocalization.m ├── LINLocalizationParser.h ├── LINLocalizationParser.m ├── LINTextCompletionItem.h ├── LINTextCompletionItem.m ├── Lin.h ├── Lin.m ├── MethodSwizzle.h ├── MethodSwizzle.m └── Xcode.h ├── LinTests ├── Info.plist ├── LINLocalizationParserTests.m └── Localizations.strings ├── Makefile ├── README.md └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | script: 3 | - make clean test 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/LICENSE -------------------------------------------------------------------------------- /Lin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lin.xcodeproj/xcshareddata/xcschemes/Lin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin.xcodeproj/xcshareddata/xcschemes/Lin.xcscheme -------------------------------------------------------------------------------- /Lin.xcodeproj/xcshareddata/xcschemes/LinTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin.xcodeproj/xcshareddata/xcschemes/LinTests.xcscheme -------------------------------------------------------------------------------- /Lin/Completions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/Completions.plist -------------------------------------------------------------------------------- /Lin/DVTCompletingTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTCompletingTextView.h -------------------------------------------------------------------------------- /Lin/DVTFilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTFilePath.h -------------------------------------------------------------------------------- /Lin/DVTSourceCodeLanguage+Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceCodeLanguage+Lin.h -------------------------------------------------------------------------------- /Lin/DVTSourceCodeLanguage+Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceCodeLanguage+Lin.m -------------------------------------------------------------------------------- /Lin/DVTSourceCodeLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceCodeLanguage.h -------------------------------------------------------------------------------- /Lin/DVTSourceTextView+Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceTextView+Lin.h -------------------------------------------------------------------------------- /Lin/DVTSourceTextView+Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceTextView+Lin.m -------------------------------------------------------------------------------- /Lin/DVTSourceTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTSourceTextView.h -------------------------------------------------------------------------------- /Lin/DVTTextCompletionController+Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionController+Lin.h -------------------------------------------------------------------------------- /Lin/DVTTextCompletionController+Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionController+Lin.m -------------------------------------------------------------------------------- /Lin/DVTTextCompletionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionController.h -------------------------------------------------------------------------------- /Lin/DVTTextCompletionDataSource+Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionDataSource+Lin.h -------------------------------------------------------------------------------- /Lin/DVTTextCompletionDataSource+Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionDataSource+Lin.m -------------------------------------------------------------------------------- /Lin/DVTTextCompletionDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionDataSource.h -------------------------------------------------------------------------------- /Lin/DVTTextCompletionSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextCompletionSession.h -------------------------------------------------------------------------------- /Lin/DVTTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/DVTTextStorage.h -------------------------------------------------------------------------------- /Lin/IDEIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEIndex.h -------------------------------------------------------------------------------- /Lin/IDEIndexCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEIndexCollection.h -------------------------------------------------------------------------------- /Lin/IDEIndexCompletionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEIndexCompletionItem.h -------------------------------------------------------------------------------- /Lin/IDEWorkspace+Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEWorkspace+Lin.h -------------------------------------------------------------------------------- /Lin/IDEWorkspace+Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEWorkspace+Lin.m -------------------------------------------------------------------------------- /Lin/IDEWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/IDEWorkspace.h -------------------------------------------------------------------------------- /Lin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/Info.plist -------------------------------------------------------------------------------- /Lin/LINLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINLocalization.h -------------------------------------------------------------------------------- /Lin/LINLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINLocalization.m -------------------------------------------------------------------------------- /Lin/LINLocalizationParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINLocalizationParser.h -------------------------------------------------------------------------------- /Lin/LINLocalizationParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINLocalizationParser.m -------------------------------------------------------------------------------- /Lin/LINTextCompletionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINTextCompletionItem.h -------------------------------------------------------------------------------- /Lin/LINTextCompletionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/LINTextCompletionItem.m -------------------------------------------------------------------------------- /Lin/Lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/Lin.h -------------------------------------------------------------------------------- /Lin/Lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/Lin.m -------------------------------------------------------------------------------- /Lin/MethodSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/MethodSwizzle.h -------------------------------------------------------------------------------- /Lin/MethodSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/MethodSwizzle.m -------------------------------------------------------------------------------- /Lin/Xcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Lin/Xcode.h -------------------------------------------------------------------------------- /LinTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/LinTests/Info.plist -------------------------------------------------------------------------------- /LinTests/LINLocalizationParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/LinTests/LINLocalizationParserTests.m -------------------------------------------------------------------------------- /LinTests/Localizations.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/LinTests/Localizations.strings -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nek023/Lin/HEAD/screenshot.gif --------------------------------------------------------------------------------