├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Windows.runsettings │ └── build.yaml ├── .gitignore ├── EmojiSense.sln ├── LICENSE ├── README.md ├── art └── EmojiSense.gif ├── src ├── CharHelper.cs ├── EmojiSense.csproj ├── EmojiSensePackage.cs ├── Emojis.cs ├── IntelliSense.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── Icon.png ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── source.extension.cs └── source.extension.vsixmanifest └── vs-publish.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Windows.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/workflows/Windows.runsettings -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/.gitignore -------------------------------------------------------------------------------- /EmojiSense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/EmojiSense.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/README.md -------------------------------------------------------------------------------- /art/EmojiSense.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/art/EmojiSense.gif -------------------------------------------------------------------------------- /src/CharHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/CharHelper.cs -------------------------------------------------------------------------------- /src/EmojiSense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/EmojiSense.csproj -------------------------------------------------------------------------------- /src/EmojiSensePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/EmojiSensePackage.cs -------------------------------------------------------------------------------- /src/Emojis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/Emojis.cs -------------------------------------------------------------------------------- /src/IntelliSense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/IntelliSense.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/src/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vs-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/EmojiSense/HEAD/vs-publish.json --------------------------------------------------------------------------------