Hello.
This is a simple feature request that I think is easy to implement for anybody knowing something more about TextMate bundles than myself. Is it easy to mark TABs at the beginning of the line that does not have anything else?
I mean, mark as suspicious all lines that math /^\t\s*$/
Thank you, Alberto
On 26 Dec 2008, at 22:07, Alberto Simões wrote:
This is a simple feature request that I think is easy to implement for anybody knowing something more about TextMate bundles than myself.
It’s easy to get up to speed though: http://manual.macromates.com/en/language_grammars
Is it easy to mark TABs at the beginning of the line that does not have anything else?
I mean, mark as suspicious all lines that math /^\t\s*$/
I’ll add something like this to the grammar and commit:
{ name = 'invalid.deprecated.invisible-rule- continuation.makefile'; match = '^\t\s*$'; },
On Tue, Dec 30, 2008 at 9:42 PM, Allan Odgaard mailinglist@textmate.org wrote:
I'll add something like this to the grammar and commit:
{ name = 'invalid.deprecated.invisible-rule-
continuation.makefile'; match = '^\t\s*$'; },
Thank you ;)
On Wed, Dec 31, 2008 at 3:07 PM, Alberto Simões hashashin@gmail.com wrote:
On Tue, Dec 30, 2008 at 9:42 PM, Allan Odgaard mailinglist@textmate.org wrote:
I'll add something like this to the grammar and commit:
{ name = 'invalid.deprecated.invisible-rule-
continuation.makefile'; match = '^\t\s*$'; },
Well, let me do that myself :)