Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial implementation of zsh shell plugin #686

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/rezplugins/shell/rezconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ csh:
tcsh:
prompt: '>'

zsh:
prompt: '%'

cmd:
prompt: '$G'

Expand Down
104 changes: 104 additions & 0 deletions src/rezplugins/shell/zsh.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
"""
Zsh shell
"""
import os
import os.path
from rez.shells import Shell
from rez.utils.platform_ import platform_
from rezplugins.shell.sh import SH
from rez import module_root_path


class Zsh(SH):
rcfile_arg = '--rcs'
norc_arg = '--no-rcs'
_executable = None

@property
def executable(cls):
if cls._executable is None:
cls._executable = Shell.find_executable('zsh')
return cls._executable

@classmethod
def name(cls):
return 'zsh'

@classmethod
def startup_capabilities(cls, rcfile=False, norc=False, stdin=False,
command=False):
if norc:
cls._overruled_option('rcfile', 'norc', rcfile)
rcfile = False
if command is not None:
cls._overruled_option('stdin', 'command', stdin)
cls._overruled_option('rcfile', 'command', rcfile)
stdin = False
rcfile = False
if stdin:
cls._overruled_option('rcfile', 'stdin', rcfile)
rcfile = False
return (rcfile, norc, stdin, command)

@classmethod
def get_startup_sequence(cls, rcfile, norc, stdin, command):
rcfile, norc, stdin, command = \
cls.startup_capabilities(rcfile, norc, stdin, command)

files = []
envvar = None
do_rcfile = False

if rcfile or norc:
do_rcfile = True
if rcfile and os.path.exists(os.path.expanduser(rcfile)):
files.append(rcfile)
else:
for file_ in (
"~/.zprofile",
"~/.zlogin",
"~/.zshrc",
"~/.zshenv"):
if os.path.exists(os.path.expanduser(file_)):
files.append(file_)

bind_files = [
"~/.zprofile",
"~/.zshrc"
]

return dict(
stdin=stdin,
command=command,
do_rcfile=do_rcfile,
envvar=envvar,
files=files,
bind_files=bind_files,
source_bind_files=True
)

def _bind_interactive_rez(self):
super(Zsh, self)._bind_interactive_rez()
completion = os.path.join(module_root_path, "completion", "complete.sh")
self.source(completion)


def register_plugin():
if platform_.name != "windows":
return Zsh


# Copyright 2013-2016 Allan Johns.
#
# This library is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.