We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72fe67 commit 8b968d2Copy full SHA for 8b968d2
2 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Release Notes
2
3
+## v1.4.0 (2026-02-22)
4
+
5
+- ✨ Change comment for Textwire to be `{{-- %s --}}` if you trigger comment when your cursor is on Textwire code.
6
7
## v1.3.0 (2026-02-15)
8
9
- ✨ Added Textwire file icon when users use `nvim-web-devicons` or `mini.icons` plugin.
plugin/init.lua
@@ -24,3 +24,11 @@ parser_config.textwire = {
24
25
require("textwire.icon").set_icon()
26
require("textwire.lsp").attach()
27
28
+-- Change comment for Textwire
29
+vim.api.nvim_create_autocmd("FileType", {
30
+ pattern = "textwire",
31
+ callback = function()
32
+ vim.bo.commentstring = "{{-- %s --}}"
33
+ end,
34
+})
0 commit comments