-
Notifications
You must be signed in to change notification settings - Fork 8
Nushell Support #65
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
Merged
Merged
Nushell Support #65
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
565c218
feat: Add Nushell template
timothebot 53587b8
fix: Call custom fuzzy correct
timothebot fd5dbe7
feat: Add Nushell template to the template engine
timothebot 177034f
docs: Add setup docs and nushell notes
timothebot 6404791
chore: Bump dependency versions
timothebot f606b44
Merge branch 'main' into 63-nushell-support
timothebot a109c74
docs: Improve shell options section
timothebot 4901930
fix: Remove external definition of lacy cmds in nu
timothebot 96ff26d
chore: Bump changelog and version
timothebot 5598d8d
chore: Update cargoHash in flake.nix
timothebot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # START generated Lacy shell config | ||
| module lacy { | ||
| def lacy-query-to-completion [context: string] { | ||
| let query = ($context | split row " " | skip 1 | str join " ") | ||
| if $query == "" { | ||
| return (ls -a | where type == dir | get name) | ||
| } | ||
| if $context ends-with " " { | ||
| return (lacy complete --basename -- $"($query) " | split row " " | uniq) | ||
| } | ||
| return (lacy complete --basename -- $query | split row " " | uniq) | ||
| } | ||
|
|
||
| def lacy-dir-names [context: string] { | ||
| { | ||
| options: { | ||
| case_sensitive: false, | ||
| completion_algorithm: fuzzy, | ||
| sort: false, | ||
| }, | ||
| completions: (lacy-query-to-completion $context) | ||
| } | ||
| } | ||
|
|
||
| export def --env {{ lacy_cmd }} [...args: string@lacy-dir-names] { | ||
| let query = ($args | str join " ") | ||
| let new_path = (lacy prompt {{ return_all }}-- $"($query)") | ||
| if $new_path == "~" { | ||
| {{ cd }} ~ | ||
| {% if custom_fuzzy.enabled %} } else if ($new_path | str contains "\n") { | ||
| let selected = ($new_path | {{ custom_fuzzy.cmd }}) | ||
| if ($selected | path exists) and ($selected | path type) == "dir" { | ||
| {{ cd }} $selected | ||
| } | ||
| {% endif %} } else if ($new_path | path exists) and ($new_path | path type) == "dir" { | ||
| {{ cd }} $new_path | ||
| } else { | ||
| print $"Error: No matching directory found for '($query)'" | ||
| } | ||
| } | ||
| } | ||
| use lacy {{ lacy_cmd }} | ||
| # END generated Lacy shell config | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does, when given lacy only returns the name of the folder instead of the whole path :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that must have slipped through somehow. I didn't add the definitions for every argument to nu, only the main commands. I removed that (so no completion for lacy init/help/complete/prompt), it's not worth the effort imo.
Should work now