{"id":22541979,"url":"https://github.com/wolandark/dotnet-vim","last_synced_at":"2026-01-31T16:01:46.547Z","repository":{"id":266875495,"uuid":"899625518","full_name":"wolandark/dotnet-vim","owner":"wolandark","description":"Dotnet-Vim - A simple plugin to interface with the dotnet CLI from Vim (WIP)","archived":false,"fork":false,"pushed_at":"2024-12-06T17:04:41.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T19:29:58.691Z","etag":null,"topics":["csharp","dotnet","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wolandark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-06T16:53:34.000Z","updated_at":"2025-01-04T16:55:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"9959470b-7900-4184-8b06-776bcbfc0577","html_url":"https://github.com/wolandark/dotnet-vim","commit_stats":null,"previous_names":["wolandark/dotnet-vim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wolandark/dotnet-vim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fdotnet-vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fdotnet-vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fdotnet-vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fdotnet-vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wolandark","download_url":"https://codeload.github.com/wolandark/dotnet-vim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fdotnet-vim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28947567,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","vim","vim-plugin"],"created_at":"2024-12-07T13:08:02.539Z","updated_at":"2026-01-31T16:01:46.531Z","avatar_url":"https://github.com/wolandark.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dotnet CLI Vim Plugin\n\nA Vim plugin for interfacing with the .NET CLI directly from Vim. This plugin allows you to run common `dotnet` commands seamlessly within the editor.\n\n## Features\n\nThe plugin provides the following commands for interacting with the .NET CLI:\n\n### Commands\n\n| Command                         | Description                                                                 |\n|---------------------------------|-----------------------------------------------------------------------------|\n| `:DotnetBuild`                  | Builds the project in the current directory.                               |\n| `:DotnetRun`                    | Runs the project in the current directory.                                 |\n| `:DotnetTest`                   | Runs tests for the project.                                                |\n| `:DotnetRestore`                | Restores dependencies and project-specific tools.                          |\n| `:DotnetAddClass \u003cname\u003e`        | Adds a new class with the specified name (e.g., `Student`).                |\n| `:DotnetAddInterface \u003cname\u003e`    | Adds a new interface with the specified name (e.g., `IStudent`).           |\n| `:DotnetNewGitignore`           | Creates a new `.gitignore` file for the project.                           |\n| `:DotnetNewProject \u003cname\u003e`      | Creates a new console project with the specified name.                     |\n| `:DotnetAddPackage \u003cname\u003e`      | Adds a NuGet package to the project (e.g., `Newtonsoft.Json`).             |\n| `:DotnetAddReference \u003cpath\u003e`    | Adds a project reference (e.g., `../MyLibrary/MyLibrary.csproj`).          |\n| `:DotnetRemovePackage \u003cname\u003e`   | Removes a NuGet package from the project (e.g., `Newtonsoft.Json`).        |\n| `:DotnetRemoveReference \u003cpath\u003e` | Removes a project reference (e.g., `../MyLibrary/MyLibrary.csproj`).       |\n| `:DotnetClean`                  | Cleans the build outputs of the project or solution.                       |\n\n## Examples\n\nHere are some practical examples of how to use the plugin:\n\n **Build the project**:\n \n   `:DotnetBuild`\n   \n **Run the project**:\n \n`:DotnetRun`\n\n**Test the project**:\n\n`:DotnetTest`\n\n**Restore dependencies**:\n\n`:DotnetRestore`\n\n**Add a new class named Student**:\n\n`:DotnetAddClass Student`\n\nAdd a new interface named IStudent:\n\n`:DotnetAddInterface IStudent`\n\n**Generate a .gitignore file**:\n\n`:DotnetNewGitignore`\n\n**Create a new console project named MyProject**:\n\n`:DotnetNewProject MyProject`\n\n**Add a package, for example, Newtonsoft.Json**:\n\n`:DotnetAddPackage Newtonsoft.Json`\n\n**Add a reference to another project, for example, ../MyLibrary/MyLibrary.csproj**:\n\n`:DotnetAddReference ../MyLibrary/MyLibrary.csproj`\n\n**Remove a package, for example, Newtonsoft.Json**:\n\n`:DotnetRemovePackage Newtonsoft.Json`\n\n**Remove a reference, for example, ../MyLibrary/MyLibrary.csproj**:\n\n`:DotnetRemoveReference ../MyLibrary/MyLibrary.csproj`\n\n**Clean the solution**:\n\n `:DotnetClean`\n\n# Installation\n## Manual Installation\nCreate the plugin directory: `~/.vim/pack/plugins/start/dotnet/`\n\nSave the plugin file as `dotnet.vim` in the above directory.\n\nYou can also place the plugin file under `ftplugin`. See `:h ftplugin`.\n\n## Vim Plugin Managers\nIf you use a plugin manager like vim-plug, add the following line to your .vimrc:\n```\nPlug 'wolandark/dotnet-vim'\n```\n\n# License\nThis plugin is licensed under the MIT License.\n\n# Contributions\nContributions and feature suggestions are welcome! Feel free to open issues or submit pull requests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolandark%2Fdotnet-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolandark%2Fdotnet-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolandark%2Fdotnet-vim/lists"}