osx - How to tell Sublime(Linter) to use ZSH instead of BASH? -


i'm using zsh sublimelinter taking path bash shell, resulting in unfound executables. have example eslint installed using npm globally, , needs find in nvm directory set in .zprofile. debug output of sublime:

sublimelinter: user shell: /bin/bash  sublimelinter: computed path using /bin/bash: /usr/local/bin /usr/bin /bin /usr/sbin /sbin 

i've set default shell in system zsh using chsh -s /bin/zsh have no idea why it's using bash , can't find info this.

i'm using sublime text 3 on osx.

i'm not sure why it's using bash instead of zsh. isn't problem ensure not have bash files such .bash_profile in home folder though you're using zsh. also, i'd try make sure open st via zsh (again, doesn't make difference).

if it's still not working, manually specify path linter via sublimelinter's user settings json file:

    "paths": {         "linux": [],         "osx": [             "/path-to-linter"         ],         "windows": []     } 

Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -