You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atom won't detect files that don't have the extension '.lua' even if the file begins with a lua shebang.
If a file begins with #!/usr/bin/lua5 #!/usr/bin/lua5.1 #!/usr/bin/lua5.2
etc., Atom should detect it and provide syntax highlighting, the same way it does for a Python file with the shebang #!/usr/bin/python3
The text was updated successfully, but these errors were encountered:
I created a new file, named it warnings2.lua and saved this to it: #!/usr/bin/python
Upon opening it in atom was recogniced as lua file. The file was made with notepad because atom remembers last language setting for a file.
Same happens when I create an unique file without extensions with #!/usr/bin/lua in it. The language is recognized.
The only issue is with #!/usr/bin/lua5.1 and #!/usr/bin/lua5.2 and similar. #!/usr/bin/python2.7 seems to be recognized as python even if there is no file extension.
Atom won't detect files that don't have the extension '.lua' even if the file begins with a lua shebang.
If a file begins with
#!/usr/bin/lua5
#!/usr/bin/lua5.1
#!/usr/bin/lua5.2
etc., Atom should detect it and provide syntax highlighting, the same way it does for a Python file with the shebang
#!/usr/bin/python3
The text was updated successfully, but these errors were encountered: