tht13 / Python-vscode

A Python language pack for Visual Studio Code
MIT License
17 stars 11 forks source link

Allow `#!/usr/bin/env` to be used. #19

Open ryanpcmcquen opened 7 years ago

ryanpcmcquen commented 7 years ago

The README requires a shebang of #!/usr/bin/python{2,3}. Often the following shebangs are used instead:

#!/usr/bin/env python2
#!/usr/bin/env python3

It'd be awesome if the plugin supported these as well.