zsh support

This commit is contained in:
glmdev 2018-11-28 14:32:18 -06:00
parent 7ec23a19d5
commit d111784755
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ This project is currently a work-in-progress. Only the fish shell is supported a
## Requires ## Requires
- python3 - python3
- source-highlight - source-highlight
- less/cat/ls/ - less/cat/ls/vim
## TODO ## TODO
- Documentation/License - Documentation/License

View File

@ -3,7 +3,7 @@ import os
import subprocess import subprocess
import configparser import configparser
# supported values: fish, bash # supported values: fish, bash, zsh
shell="fish" shell="fish"
print_file="cat" print_file="cat"
@ -14,7 +14,7 @@ list_directory="ls --color=auto"
def set_runtime_var(name, value, options=""): def set_runtime_var(name, value, options=""):
if ( shell == "fish" ): if ( shell == "fish" ):
print("set "+name+" "+options+" \""+value+"\"") print("set "+name+" "+options+" \""+value+"\"")
elif ( shell == "bash" ): elif ( shell == "bash" || shell == "zsh" ):
print("export "+name+"="+"\""+value+"\"") print("export "+name+"="+"\""+value+"\"")
def is_binary_file(filepathname): def is_binary_file(filepathname):