gitextract_srotazw1/ ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Lin/ │ ├── DVTDualProxyWindow.h │ ├── DVTFilePath.h │ ├── DVTSourceTextView.h │ ├── IDEEditorDocument.h │ ├── IDEIndex+Lin.h │ ├── IDEIndex+Lin.m │ ├── IDEIndex.h │ ├── IDEIndexCollection.h │ ├── IDEWorkspace.h │ ├── IDEWorkspaceWindow.h │ ├── LNAlertAccessoryView.h │ ├── LNAlertAccessoryView.m │ ├── LNAlertAccessoryView.xib │ ├── LNButtonCell.h │ ├── LNButtonCell.m │ ├── LNDetector.h │ ├── LNDetector.m │ ├── LNEntity.h │ ├── LNEntity.m │ ├── LNHorizontalLine.h │ ├── LNHorizontalLine.m │ ├── LNImageButtonCell.h │ ├── LNImageButtonCell.m │ ├── LNLocalization.h │ ├── LNLocalization.m │ ├── LNLocalizationCollection.h │ ├── LNLocalizationCollection.m │ ├── LNLocalizedStringCollectionOperation.h │ ├── LNLocalizedStringCollectionOperation.m │ ├── LNPopoverContentView.h │ ├── LNPopoverContentView.m │ ├── LNPopoverContentView.xib │ ├── LNPopoverWindow.h │ ├── LNPopoverWindow.m │ ├── LNPopoverWindowController.h │ ├── LNPopoverWindowController.m │ ├── LNRegularExpressionPattern+type.h │ ├── LNRegularExpressionPattern+type.m │ ├── LNRegularExpressionPattern.h │ ├── LNRegularExpressionPattern.m │ ├── LNTableCornerView.h │ ├── LNTableCornerView.m │ ├── LNTableHeaderCell.h │ ├── LNTableHeaderCell.m │ ├── LNTableView.h │ ├── LNTableView.m │ ├── LNUserDefaultsManager.h │ ├── LNUserDefaultsManager.m │ ├── Lin-Info.plist │ ├── Lin-Prefix.pch │ ├── Lin.h │ ├── Lin.m │ ├── MethodSwizzle.h │ ├── MethodSwizzle.m │ ├── NSBundle+versions.h │ ├── NSBundle+versions.m │ ├── NSPopoverFrame+Lin.h │ ├── NSPopoverFrame+Lin.m │ ├── NSPopoverFrame.h │ ├── NSTableView+editedColumnIdentifier.h │ ├── NSTableView+editedColumnIdentifier.m │ └── en.lproj/ │ └── InfoPlist.strings ├── Lin.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── Lin.xcscheme │ └── LinTests.xcscheme ├── LinTests/ │ ├── LNDetectorTestSet.h │ ├── LNDetectorTestSet.m │ ├── LNDetectorTests.m │ ├── LNLocalizationTests.m │ ├── LinTests-Info.plist │ ├── LinTests-Prefix.pch │ ├── Localizable.strings │ └── en.lproj/ │ └── InfoPlist.strings ├── Makefile └── README.md