├── .gitattributes ├── .gitignore ├── AgentSmith.sln ├── AgentSmith.sln.DotSettings ├── LICENSE ├── README.md └── src ├── AgentSmith.Test ├── AgentSmith.Test.csproj ├── Comments │ └── Reflow │ │ └── XmlCommentReflowerTest.cs ├── SpellCheck │ ├── CamelHumpLexerTest.cs │ └── WordLexerTest.cs ├── TestEnvironment.cs └── app.config ├── AgentSmith ├── Actions.xml ├── AgentSmith.csproj ├── Analyzers │ └── StringLiteralTypoAnalyzer.cs ├── Comments │ ├── AddXmlCommentQuickFix.cs │ ├── CanBeSurroundedWithMetatagsHighlight.cs │ ├── CommentAnalyzer.cs │ ├── IdentifierResolver.cs │ ├── InternalMemberMissingXmlCommentHighlighting.cs │ ├── KeywordUtil.cs │ ├── MissingXMLCommentHighlight.cs │ ├── NamespaceDoc.cs │ ├── PrivateMemberMissingXmlCommentHighlighting.cs │ ├── PublicMemberMissingXmlCommentHighlighting.cs │ ├── Reflow │ │ ├── CommentReflowAction.cs │ │ ├── CommentReflowAndRetagAction.cs │ │ ├── LineBuilder.cs │ │ ├── Paragraph.cs │ │ ├── ParagraphLine.cs │ │ ├── ParagraphLineItem.cs │ │ ├── ReflowAndRetagCodeCleanup.cs │ │ ├── ReflowAndRetagMenuAction.cs │ │ ├── ReflowCodeCleanup.cs │ │ ├── ReflowMenuAction.cs │ │ ├── XmlCommentParagraphParser.cs │ │ ├── XmlCommentReflowableBlockLexer.cs │ │ ├── XmlCommentReflower.cs │ │ └── XmlComments │ │ │ └── XmlCommentNodeBase.cs │ ├── SurroundWithMetatagsQuickFix.cs │ ├── WordIsNotInDictionaryHighlight.cs │ ├── XmlCommentSyntaxQuickFix.cs │ └── XmlDocLexer.cs ├── IAgentSmithZone.cs ├── IdentifierScanDaemonStage.cs ├── IdentifierScanDaemonStageProcess.cs ├── Identifiers │ ├── IdentifierSpellCheckAnalyzer.cs │ ├── IdentifierSpellCheckHighlighting.cs │ ├── IdentifierSpellCheckQuickFix.cs │ └── RenameBulbItem.cs ├── InlineCommentScanDaemonStage.cs ├── InlineCommentScanDaemonStageProcess.cs ├── MemberMatch │ ├── AccessLevelDescription.cs │ ├── AccessLevelMap.cs │ ├── AccessLevels.cs │ ├── ComplexMatchEvaluator.cs │ ├── Declaration.cs │ ├── DeclarationDescription.cs │ ├── FuzzyBool.cs │ ├── Match.cs │ ├── MatchDeclarationDescription.cs │ ├── ParamDirection.cs │ └── TypeDeclarationMap.cs ├── Options │ ├── AgentSmithGeneralPage.cs │ ├── AgentSmithOptionsPage.cs │ ├── AgentSmithOptionsUI.xaml │ ├── AgentSmithOptionsUI.xaml.cs │ ├── AgentSmithSettings.cs │ ├── CommentOptionsPage.cs │ ├── CommentOptionsUI.xaml │ ├── CommentOptionsUI.xaml.cs │ ├── CustomDictionariesOptionsPage.cs │ ├── CustomDictionariesOptionsUI.xaml │ ├── CustomDictionariesOptionsUI.xaml.cs │ ├── EditCustomDictionaryDialog.xaml │ ├── EditCustomDictionaryDialog.xaml.cs │ ├── IdentifierOptionsPage.cs │ ├── IdentifierOptionsUI.xaml │ ├── IdentifierOptionsUI.xaml.cs │ ├── IntegerTextBox.cs │ ├── ReflowAndRetagOptionsPage.cs │ ├── ReflowAndRetagOptionsUI.xaml │ ├── ReflowAndRetagOptionsUI.xaml.cs │ ├── ResXOptionsUI.xaml │ ├── ResXOptionsUI.xaml.cs │ ├── ResourceOptionsPage.cs │ ├── StringOptionsPage.cs │ ├── StringOptionsUI.xaml │ ├── StringOptionsUI.xaml.cs │ ├── ThemedIcons.Options.Generated.Xaml │ ├── ThemedIcons.Options.Generated.cs │ ├── WhitespaceOptionsList.cs │ ├── XmlDocumentationGeneralOptionsPage.cs │ ├── XmlDocumentationOptionsPage.cs │ ├── XmlDocumentationOptionsUI.xaml │ ├── XmlDocumentationOptionsUI.xaml.cs │ └── samplePage.png ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ResX │ ├── ResXDaemonStage.cs │ ├── ResXProcess.cs │ ├── ResXQuickFix.cs │ └── ResXSpellHighlighting.cs ├── Resources │ └── OptionsIcon.gif ├── SmartPaste │ └── SmartPasteAction.cs ├── SpellCheck │ ├── AddToDictionaryBulbItem.cs │ ├── CamelHumpLexer.cs │ ├── LexerToken.cs │ ├── NetSpell │ │ ├── Affix │ │ │ ├── AffixEntry.cs │ │ │ ├── AffixRule.cs │ │ │ └── AffixUtility.cs │ │ ├── ContainsResult.cs │ │ ├── CustomDictionary.cs │ │ ├── ISpellChecker.cs │ │ ├── MultilingualSpellchecker.cs │ │ ├── OpenOfficeDictionaryImporter.cs │ │ ├── Phonetic │ │ │ ├── PhoneticRule.cs │ │ │ └── PhoneticUtility.cs │ │ ├── SpellChecker.cs │ │ ├── SuggestionEnum.cs │ │ ├── Word.cs │ │ └── WordDictionary.cs │ ├── ReplaceWordWithBulbItem.cs │ ├── SpellCheckHighlightBase.cs │ ├── SpellCheckManager.cs │ ├── SpellCheckUtil.cs │ ├── TokenNodeTypeBase.cs │ └── WordLexer.cs ├── StringLiteralScanDaemonStage.cs ├── StringLiteralScanDaemonStageProcess.cs ├── Strings │ ├── StringSpellCheckHighlighting.cs │ ├── StringSpellCheckQuickFix.cs │ └── StringSpellChecker.cs ├── ZoneMarker.cs ├── app.config └── dic │ ├── de-DE.dic │ ├── en-AU.dic │ ├── en-CA.dic │ ├── en-GB.dic │ └── en-US.dic ├── Directory.Build.props └── Plugin.props /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/.gitignore -------------------------------------------------------------------------------- /AgentSmith.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/AgentSmith.sln -------------------------------------------------------------------------------- /AgentSmith.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/AgentSmith.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/README.md -------------------------------------------------------------------------------- /src/AgentSmith.Test/AgentSmith.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/AgentSmith.Test.csproj -------------------------------------------------------------------------------- /src/AgentSmith.Test/Comments/Reflow/XmlCommentReflowerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/Comments/Reflow/XmlCommentReflowerTest.cs -------------------------------------------------------------------------------- /src/AgentSmith.Test/SpellCheck/CamelHumpLexerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/SpellCheck/CamelHumpLexerTest.cs -------------------------------------------------------------------------------- /src/AgentSmith.Test/SpellCheck/WordLexerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/SpellCheck/WordLexerTest.cs -------------------------------------------------------------------------------- /src/AgentSmith.Test/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/TestEnvironment.cs -------------------------------------------------------------------------------- /src/AgentSmith.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith.Test/app.config -------------------------------------------------------------------------------- /src/AgentSmith/Actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Actions.xml -------------------------------------------------------------------------------- /src/AgentSmith/AgentSmith.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/AgentSmith.csproj -------------------------------------------------------------------------------- /src/AgentSmith/Analyzers/StringLiteralTypoAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Analyzers/StringLiteralTypoAnalyzer.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/AddXmlCommentQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/AddXmlCommentQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/CanBeSurroundedWithMetatagsHighlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/CanBeSurroundedWithMetatagsHighlight.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/CommentAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/CommentAnalyzer.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/IdentifierResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/IdentifierResolver.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/InternalMemberMissingXmlCommentHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/InternalMemberMissingXmlCommentHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/KeywordUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/KeywordUtil.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/MissingXMLCommentHighlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/MissingXMLCommentHighlight.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/NamespaceDoc.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/PrivateMemberMissingXmlCommentHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/PrivateMemberMissingXmlCommentHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/PublicMemberMissingXmlCommentHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/PublicMemberMissingXmlCommentHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/CommentReflowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/CommentReflowAction.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/CommentReflowAndRetagAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/CommentReflowAndRetagAction.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/LineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/LineBuilder.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/Paragraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/Paragraph.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ParagraphLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ParagraphLine.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ParagraphLineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ParagraphLineItem.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ReflowAndRetagCodeCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ReflowAndRetagCodeCleanup.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ReflowAndRetagMenuAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ReflowAndRetagMenuAction.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ReflowCodeCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ReflowCodeCleanup.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/ReflowMenuAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/ReflowMenuAction.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/XmlCommentParagraphParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/XmlCommentParagraphParser.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/XmlCommentReflowableBlockLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/XmlCommentReflowableBlockLexer.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/XmlCommentReflower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/XmlCommentReflower.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/Reflow/XmlComments/XmlCommentNodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/Reflow/XmlComments/XmlCommentNodeBase.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/SurroundWithMetatagsQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/SurroundWithMetatagsQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/WordIsNotInDictionaryHighlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/WordIsNotInDictionaryHighlight.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/XmlCommentSyntaxQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/XmlCommentSyntaxQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/Comments/XmlDocLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Comments/XmlDocLexer.cs -------------------------------------------------------------------------------- /src/AgentSmith/IAgentSmithZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/IAgentSmithZone.cs -------------------------------------------------------------------------------- /src/AgentSmith/IdentifierScanDaemonStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/IdentifierScanDaemonStage.cs -------------------------------------------------------------------------------- /src/AgentSmith/IdentifierScanDaemonStageProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/IdentifierScanDaemonStageProcess.cs -------------------------------------------------------------------------------- /src/AgentSmith/Identifiers/IdentifierSpellCheckAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Identifiers/IdentifierSpellCheckAnalyzer.cs -------------------------------------------------------------------------------- /src/AgentSmith/Identifiers/IdentifierSpellCheckHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Identifiers/IdentifierSpellCheckHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Identifiers/IdentifierSpellCheckQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Identifiers/IdentifierSpellCheckQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/Identifiers/RenameBulbItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Identifiers/RenameBulbItem.cs -------------------------------------------------------------------------------- /src/AgentSmith/InlineCommentScanDaemonStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/InlineCommentScanDaemonStage.cs -------------------------------------------------------------------------------- /src/AgentSmith/InlineCommentScanDaemonStageProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/InlineCommentScanDaemonStageProcess.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/AccessLevelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/AccessLevelDescription.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/AccessLevelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/AccessLevelMap.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/AccessLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/AccessLevels.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/ComplexMatchEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/ComplexMatchEvaluator.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/Declaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/Declaration.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/DeclarationDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/DeclarationDescription.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/FuzzyBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/FuzzyBool.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/Match.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/MatchDeclarationDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/MatchDeclarationDescription.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/ParamDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/ParamDirection.cs -------------------------------------------------------------------------------- /src/AgentSmith/MemberMatch/TypeDeclarationMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/MemberMatch/TypeDeclarationMap.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/AgentSmithGeneralPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/AgentSmithGeneralPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/AgentSmithOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/AgentSmithOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/AgentSmithOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/AgentSmithOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/AgentSmithOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/AgentSmithOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/AgentSmithSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/AgentSmithSettings.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/CommentOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CommentOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/CommentOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CommentOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/CommentOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CommentOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/CustomDictionariesOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CustomDictionariesOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/CustomDictionariesOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CustomDictionariesOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/CustomDictionariesOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/CustomDictionariesOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/EditCustomDictionaryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/EditCustomDictionaryDialog.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/EditCustomDictionaryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/EditCustomDictionaryDialog.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/IdentifierOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/IdentifierOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/IdentifierOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/IdentifierOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/IdentifierOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/IdentifierOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/IntegerTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/IntegerTextBox.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/ReflowAndRetagOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ReflowAndRetagOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/ReflowAndRetagOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ReflowAndRetagOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/ReflowAndRetagOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ReflowAndRetagOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/ResXOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ResXOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/ResXOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ResXOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/ResourceOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ResourceOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/StringOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/StringOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/StringOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/StringOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/StringOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/StringOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/ThemedIcons.Options.Generated.Xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ThemedIcons.Options.Generated.Xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/ThemedIcons.Options.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/ThemedIcons.Options.Generated.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/WhitespaceOptionsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/WhitespaceOptionsList.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/XmlDocumentationGeneralOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/XmlDocumentationGeneralOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/XmlDocumentationOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/XmlDocumentationOptionsPage.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/XmlDocumentationOptionsUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/XmlDocumentationOptionsUI.xaml -------------------------------------------------------------------------------- /src/AgentSmith/Options/XmlDocumentationOptionsUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/XmlDocumentationOptionsUI.xaml.cs -------------------------------------------------------------------------------- /src/AgentSmith/Options/samplePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Options/samplePage.png -------------------------------------------------------------------------------- /src/AgentSmith/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AgentSmith/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AgentSmith/ResX/ResXDaemonStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/ResX/ResXDaemonStage.cs -------------------------------------------------------------------------------- /src/AgentSmith/ResX/ResXProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/ResX/ResXProcess.cs -------------------------------------------------------------------------------- /src/AgentSmith/ResX/ResXQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/ResX/ResXQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/ResX/ResXSpellHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/ResX/ResXSpellHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Resources/OptionsIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Resources/OptionsIcon.gif -------------------------------------------------------------------------------- /src/AgentSmith/SmartPaste/SmartPasteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SmartPaste/SmartPasteAction.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/AddToDictionaryBulbItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/AddToDictionaryBulbItem.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/CamelHumpLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/CamelHumpLexer.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/LexerToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/LexerToken.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Affix/AffixEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Affix/AffixEntry.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Affix/AffixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Affix/AffixRule.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Affix/AffixUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Affix/AffixUtility.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/ContainsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/ContainsResult.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/CustomDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/CustomDictionary.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/ISpellChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/ISpellChecker.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/MultilingualSpellchecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/MultilingualSpellchecker.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/OpenOfficeDictionaryImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/OpenOfficeDictionaryImporter.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Phonetic/PhoneticRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Phonetic/PhoneticRule.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Phonetic/PhoneticUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Phonetic/PhoneticUtility.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/SpellChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/SpellChecker.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/SuggestionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/SuggestionEnum.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/Word.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/NetSpell/WordDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/NetSpell/WordDictionary.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/ReplaceWordWithBulbItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/ReplaceWordWithBulbItem.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/SpellCheckHighlightBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/SpellCheckHighlightBase.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/SpellCheckManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/SpellCheckManager.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/SpellCheckUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/SpellCheckUtil.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/TokenNodeTypeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/TokenNodeTypeBase.cs -------------------------------------------------------------------------------- /src/AgentSmith/SpellCheck/WordLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/SpellCheck/WordLexer.cs -------------------------------------------------------------------------------- /src/AgentSmith/StringLiteralScanDaemonStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/StringLiteralScanDaemonStage.cs -------------------------------------------------------------------------------- /src/AgentSmith/StringLiteralScanDaemonStageProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/StringLiteralScanDaemonStageProcess.cs -------------------------------------------------------------------------------- /src/AgentSmith/Strings/StringSpellCheckHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Strings/StringSpellCheckHighlighting.cs -------------------------------------------------------------------------------- /src/AgentSmith/Strings/StringSpellCheckQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Strings/StringSpellCheckQuickFix.cs -------------------------------------------------------------------------------- /src/AgentSmith/Strings/StringSpellChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/Strings/StringSpellChecker.cs -------------------------------------------------------------------------------- /src/AgentSmith/ZoneMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/ZoneMarker.cs -------------------------------------------------------------------------------- /src/AgentSmith/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/app.config -------------------------------------------------------------------------------- /src/AgentSmith/dic/de-DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/dic/de-DE.dic -------------------------------------------------------------------------------- /src/AgentSmith/dic/en-AU.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/dic/en-AU.dic -------------------------------------------------------------------------------- /src/AgentSmith/dic/en-CA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/dic/en-CA.dic -------------------------------------------------------------------------------- /src/AgentSmith/dic/en-GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/dic/en-GB.dic -------------------------------------------------------------------------------- /src/AgentSmith/dic/en-US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/AgentSmith/dic/en-US.dic -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Plugin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheitmann/AgentSmith/HEAD/src/Plugin.props --------------------------------------------------------------------------------