├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── UE4Intellisense.sln ├── UE4Intellisense.sln.DotSettings ├── UE4Intellisense ├── Actions │ ├── UE4SpecifierCollisitionSuggestedAction.cs │ └── UE4SpecifierNotValidSuggestedAction.cs ├── LICENSE.md ├── Model │ ├── UE4Model.cs │ └── UE4SpecifiersSource.cs ├── Processor │ └── UE4Processor.cs ├── Properties │ └── AssemblyInfo.cs ├── Providers │ ├── UE4CompletionSource.cs │ └── UE4SuggestedActionsSource.cs ├── UE4Intellisense.csproj ├── app.config ├── packages.config ├── resources │ └── screen2.png └── source.extension.vsixmanifest └── UE4SpecsUnitTests ├── Properties └── AssemblyInfo.cs ├── UE4Specifiers.cs ├── UE4SpecsUnitTests.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/README.md -------------------------------------------------------------------------------- /UE4Intellisense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense.sln -------------------------------------------------------------------------------- /UE4Intellisense.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense.sln.DotSettings -------------------------------------------------------------------------------- /UE4Intellisense/Actions/UE4SpecifierCollisitionSuggestedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Actions/UE4SpecifierCollisitionSuggestedAction.cs -------------------------------------------------------------------------------- /UE4Intellisense/Actions/UE4SpecifierNotValidSuggestedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Actions/UE4SpecifierNotValidSuggestedAction.cs -------------------------------------------------------------------------------- /UE4Intellisense/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/LICENSE.md -------------------------------------------------------------------------------- /UE4Intellisense/Model/UE4Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Model/UE4Model.cs -------------------------------------------------------------------------------- /UE4Intellisense/Model/UE4SpecifiersSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Model/UE4SpecifiersSource.cs -------------------------------------------------------------------------------- /UE4Intellisense/Processor/UE4Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Processor/UE4Processor.cs -------------------------------------------------------------------------------- /UE4Intellisense/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UE4Intellisense/Providers/UE4CompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Providers/UE4CompletionSource.cs -------------------------------------------------------------------------------- /UE4Intellisense/Providers/UE4SuggestedActionsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/Providers/UE4SuggestedActionsSource.cs -------------------------------------------------------------------------------- /UE4Intellisense/UE4Intellisense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/UE4Intellisense.csproj -------------------------------------------------------------------------------- /UE4Intellisense/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/app.config -------------------------------------------------------------------------------- /UE4Intellisense/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/packages.config -------------------------------------------------------------------------------- /UE4Intellisense/resources/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/resources/screen2.png -------------------------------------------------------------------------------- /UE4Intellisense/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4Intellisense/source.extension.vsixmanifest -------------------------------------------------------------------------------- /UE4SpecsUnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4SpecsUnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UE4SpecsUnitTests/UE4Specifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4SpecsUnitTests/UE4Specifiers.cs -------------------------------------------------------------------------------- /UE4SpecsUnitTests/UE4SpecsUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4SpecsUnitTests/UE4SpecsUnitTests.csproj -------------------------------------------------------------------------------- /UE4SpecsUnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxcompile/UE4Intellisense/HEAD/UE4SpecsUnitTests/packages.config --------------------------------------------------------------------------------