File tree 4 files changed +6
-7
lines changed
4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 17
17
daysUntilClose : 30
18
18
responseRequiredLabel : waiting-for-response
19
19
closeComment : >
20
- This issue has been automatically closed due to inactivity. If you feel
21
- this is still relevant, please comment here or create a fresh issue.
20
+ This issue has been automatically closed due to inactivity. If you feel this is still relevant, please comment here or create a fresh issue.
22
21
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
### Added
13
13
14
- - Nushell: add support for v0.86.0.
14
+ - Nushell: support for v0.86.0.
15
15
16
16
## [ 0.9.2] - 2023-08-04
17
17
@@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
28
### Added
29
29
30
30
- Fish/Zsh: aliases on ` __zoxide_z ` will now use completions.
31
- - Nushell: add support for v0.78.0.
31
+ - Nushell: support for v0.78.0.
32
32
- Fish: plugin now works on older versions.
33
33
- PowerShell: warn when PowerShell version is too old for ` z - ` and ` z + ` .
34
34
- PowerShell: support for PWD hooks on all versions.
Original file line number Diff line number Diff line change 1
1
let
2
2
pkgs = import ( builtins . fetchTarball
3
- "https://github.com/NixOS/nixpkgs/archive/22a6958f46fd8e14830d02856ff63b1d0e5cc3e4 .tar.gz" ) {
3
+ "https://github.com/NixOS/nixpkgs/archive/4d513ab5f170d66afa3387bdd718d41aa936ee9f .tar.gz" ) {
4
4
overlays = [ rust ] ;
5
5
} ;
6
6
rust = import ( builtins . fetchTarball
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def __zoxide_pwd() -> str:
38
38
{%- else %}
39
39
pwd = __zoxide_env().get("PWD")
40
40
if pwd is None:
41
- raise Exception ("$PWD not found")
41
+ raise RuntimeError ("$PWD not found")
42
42
{%- endif %}
43
43
return pwd
44
44
@@ -53,7 +53,7 @@ def __zoxide_cd(path: typing.Optional[typing.AnyStr] = None) -> None:
53
53
args = [path]
54
54
_, exc, _ = xonsh.dirstack.cd(args)
55
55
if exc is not None:
56
- raise Exception (exc)
56
+ raise RuntimeError (exc)
57
57
{%- if echo %}
58
58
print(__zoxide_pwd())
59
59
{%- endif %}
You can’t perform that action at this time.
0 commit comments