[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#74298: [PATCH] ; Improve comment indenting in 'lua-ts-mode'
From: |
john muhl |
Subject: |
bug#74298: [PATCH] ; Improve comment indenting in 'lua-ts-mode' |
Date: |
Sun, 10 Nov 2024 13:00:31 -0600 |
User-agent: |
mu4e 1.12.1; emacs 31.0.50 |
0001-Improve-comment-indenting-in-lua-ts-mode.patch
Description: Text Data
john muhl <jm@pub.pink> writes:
> Tags: patch
>
> This improves nested comment indenting such that:
>
> local tbl = {
> one = 1,
> -- comment
> two = 2,
> }
>
> becomes:
>
> local tbl = {
> one = 1,
> -- comment
> two = 2,
> }