shebang-set-grammar

Detect grammar from file's first line when looks like shebang (#! /bin/...)

julien-lang

1,494

5

0.8.0

MIT

GitHub

shebang-set-grammar Atom package

shebang-set-grammar is a package for Atom that auto-detect the files' grammar from the shebang.

When opening a file with Atom, let's say a Python file for instance, Atom automaticaly set the Python grammar (syntax highlighting). This is done by looking at the file extension ".py". Atom knows that a .py extension means Python. ".sh" => shell, ".php" => PHP, ".js" => Java script...

But, as a Unix user, I often write scripts without defining the script language in the file extention. I prefer to make the file executable and define how to execute it in the shebang:

In that case, when Atom open this file, the grammar is not detected. I can define it manually in Atom but I would prefer if it would be done automaticaly by reading the shebang.

This is what this module is doing!

Process description