zoxide/templates/xonsh.txt

178 lines
4.7 KiB
Plaintext
Raw Normal View History

2021-04-09 00:05:42 +05:30
{%- let section = "# =============================================================================\n#" -%}
{%- let not_configured = "# -- not configured --" -%}
2020-10-18 14:52:13 +05:30
2021-08-15 20:37:19 +05:30
# pylint: disable=missing-module-docstring
2020-11-11 00:41:26 +05:30
import builtins # pylint: disable=unused-import
2020-10-18 14:52:13 +05:30
import os
import os.path
2020-10-20 23:29:28 +05:30
import subprocess
import sys
2021-10-28 12:23:14 +05:30
import typing
2020-11-11 00:41:26 +05:30
2021-03-01 11:40:10 +05:30
import xonsh.dirstack # type: ignore # pylint: disable=import-error
2021-03-30 18:44:29 +05:30
import xonsh.environ # type: ignore # pylint: disable=import-error
2020-10-18 14:52:13 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# Utility functions for zoxide.
#
2020-11-11 00:41:26 +05:30
2021-03-30 18:44:29 +05:30
def __zoxide_bin() -> str:
"""Finds and returns the location of the zoxide binary."""
2021-10-28 12:23:14 +05:30
zoxide = typing.cast(str, xonsh.environ.locate_binary("zoxide"))
2021-03-30 18:44:29 +05:30
if zoxide is None:
zoxide = "zoxide"
return zoxide
2021-10-28 12:23:14 +05:30
def __zoxide_env() -> typing.Dict[str, str]:
2021-10-05 15:56:04 +05:30
"""Returns the current environment."""
return builtins.__xonsh__.env.detype() # type: ignore # pylint:disable=no-member
2020-10-18 14:52:13 +05:30
def __zoxide_pwd() -> str:
2020-11-11 00:41:26 +05:30
"""pwd based on the value of _ZO_RESOLVE_SYMLINKS."""
2020-10-18 14:52:13 +05:30
{%- if resolve_symlinks %}
2020-11-11 00:41:26 +05:30
pwd = os.getcwd()
2020-10-18 14:52:13 +05:30
{%- else %}
2021-10-05 15:56:04 +05:30
pwd = __zoxide_env().get("PWD")
2020-11-11 00:41:26 +05:30
if pwd is None:
2023-11-19 18:52:15 +05:30
raise RuntimeError("$PWD not found")
2020-10-18 14:52:13 +05:30
{%- endif %}
2020-11-11 00:41:26 +05:30
return pwd
2021-10-28 12:23:14 +05:30
def __zoxide_cd(path: typing.Optional[typing.AnyStr] = None) -> None:
2020-11-11 00:41:26 +05:30
"""cd + custom logic based on the value of _ZO_ECHO."""
if path is None:
args = []
elif isinstance(path, bytes):
args = [path.decode("utf-8")]
elif isinstance(path, str):
args = [path]
_, exc, _ = xonsh.dirstack.cd(args)
if exc is not None:
2023-11-19 18:52:15 +05:30
raise RuntimeError(exc)
2020-11-11 00:41:26 +05:30
{%- if echo %}
print(__zoxide_pwd())
{%- endif %}
class ZoxideSilentException(Exception):
"""Exit without complaining."""
2021-10-28 12:23:14 +05:30
def __zoxide_errhandler(
func: typing.Callable[[typing.List[str]], None]
) -> typing.Callable[[typing.List[str]], int]:
2020-11-11 00:41:26 +05:30
"""Print exception and exit with error code 1."""
2021-10-28 12:23:14 +05:30
def wrapper(args: typing.List[str]) -> int:
2020-11-11 00:41:26 +05:30
try:
func(args)
return 0
except ZoxideSilentException:
return 1
except Exception as exc: # pylint: disable=broad-except
print(f"zoxide: {exc}", file=sys.stderr)
return 1
return wrapper
2020-10-18 14:52:13 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# Hook configuration for zoxide.
#
2021-09-07 02:41:17 +05:30
{% if hook == InitHook::None -%}
{{ not_configured }}
{%- else -%}
2020-10-18 14:52:13 +05:30
# Initialize hook to add new entries to the database.
2021-09-07 02:41:17 +05:30
if "__zoxide_hook" not in globals():
{% if hook == InitHook::Prompt %}
@builtins.events.on_post_prompt # type: ignore # pylint:disable=no-member
2021-09-07 02:41:17 +05:30
{%- else if hook == InitHook::Pwd %}
@builtins.events.on_chdir # type: ignore # pylint:disable=no-member
2021-09-07 02:41:17 +05:30
{%- endif %}
2021-10-28 12:23:14 +05:30
def __zoxide_hook(**_kwargs: typing.Any) -> None:
"""Hook to add new entries to the database."""
pwd = __zoxide_pwd()
2021-03-30 18:44:29 +05:30
zoxide = __zoxide_bin()
2021-10-05 15:56:04 +05:30
subprocess.run(
[zoxide, "add", "--", pwd],
check=False,
env=__zoxide_env(),
)
{% endif %}
2021-09-07 02:41:17 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2022-04-22 13:11:11 +05:30
# When using zoxide with --no-cmd, alias these internal functions as desired.
2020-10-18 14:52:13 +05:30
#
2020-10-20 23:29:28 +05:30
2020-11-11 00:41:26 +05:30
@__zoxide_errhandler
2021-10-28 12:23:14 +05:30
def __zoxide_z(args: typing.List[str]) -> None:
2020-11-11 00:41:26 +05:30
"""Jump to a directory using only keywords."""
if args == []:
__zoxide_cd()
elif args == ["-"]:
__zoxide_cd("-")
elif len(args) == 1 and os.path.isdir(args[0]):
__zoxide_cd(args[0])
else:
2020-10-20 23:29:28 +05:30
try:
2021-03-30 18:44:29 +05:30
zoxide = __zoxide_bin()
cmd = subprocess.run(
[zoxide, "query", "--exclude", __zoxide_pwd(), "--"] + args,
check=True,
2021-10-05 15:56:04 +05:30
env=__zoxide_env(),
stdout=subprocess.PIPE,
2020-11-11 00:41:26 +05:30
)
except subprocess.CalledProcessError as exc:
2020-11-11 00:41:26 +05:30
raise ZoxideSilentException() from exc
2020-10-20 23:29:28 +05:30
result = cmd.stdout[:-1]
__zoxide_cd(result)
2020-10-18 14:52:13 +05:30
2020-10-20 23:29:28 +05:30
2021-10-05 15:56:04 +05:30
@__zoxide_errhandler
2021-10-28 12:23:14 +05:30
def __zoxide_zi(args: typing.List[str]) -> None:
2020-11-11 00:41:26 +05:30
"""Jump to a directory using interactive search."""
2020-10-20 23:29:28 +05:30
try:
2021-03-30 18:44:29 +05:30
zoxide = __zoxide_bin()
cmd = subprocess.run(
2021-10-05 15:56:04 +05:30
[zoxide, "query", "-i", "--"] + args,
check=True,
env=__zoxide_env(),
stdout=subprocess.PIPE,
2020-11-11 00:41:26 +05:30
)
except subprocess.CalledProcessError as exc:
2020-11-11 00:41:26 +05:30
raise ZoxideSilentException() from exc
2020-10-20 23:29:28 +05:30
result = cmd.stdout[:-1]
__zoxide_cd(result)
2020-10-20 23:29:28 +05:30
2020-10-18 14:52:13 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2022-04-11 03:41:51 +05:30
# Commands for zoxide. Disable these using --no-cmd.
2020-10-18 14:52:13 +05:30
#
{%- match cmd %}
{%- when Some with (cmd) %}
builtins.aliases["{{cmd}}"] = __zoxide_z # type: ignore # pylint:disable=no-member
builtins.aliases["{{cmd}}i"] = __zoxide_zi # type: ignore # pylint:disable=no-member
2020-10-18 14:52:13 +05:30
{%- when None %}
2021-04-09 00:05:42 +05:30
{{ not_configured }}
2020-10-18 14:52:13 +05:30
{%- endmatch %}
2021-04-09 00:05:42 +05:30
{{ section }}
2021-04-27 17:37:38 +05:30
# To initialize zoxide, add this to your configuration (usually ~/.xonshrc):
2020-10-18 14:52:13 +05:30
#
# execx($(zoxide init xonsh), 'exec', __xonsh__.ctx, filename='zoxide')