Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Tags: numToStr/Comment.nvim

Tags

v0.8.0

Toggle v0.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(docs): typo in `Usage` section (#324)

v0.7.0

Toggle v0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

v0.6.1

Toggle v0.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add `arduino` support (#181)

v0.6

Toggle v0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: support nested (injected) code blocks (#138)

This PR fixes commenting in nested (injected) code blocks. Like in markdown you can have multiple code blocks and those code blocks can also have injected languages for example `markdown -> vue -> css/js`

### Before

```vue
<style>
body {
    <!-- color: red; -->
}
</style>

<script>
while (true) {
    <!-- console.log("neovim is awesome!"); -->
}
</script>
```

### After

```vue
<style>
body {
    /* color: red; */
}
</style>

<script>
while (true) {
    // console.log("neovim is awesome!");
}
</script>
```

---

Closes #137
Morty Proxy This is a proxified and sanitized view of the page, visit original site.