Hi,
I have here sort of strange script language. I would like to have a similar feature like the auto-close tags in HTML.
For instance, the language I am using has some “environments” which can start with
start_config
start_data
start_whatever
and I would like to have Sublime Text to append automatically the
end_config
end_data
end_whatever
tags whenever I type start_* and hit enter. Of course I could implement a snippet for that, but there are a lot of such environments so I would need to write a lot of snippets. However, I think there is a way using an autocomplete or so. A simple plugin would also do the job, but I don’t know exactly where to start. Any ideas?
Thanks in advance!