-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
scd: add page #9224
Merged
Merged
scd: add page #9224
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bbadcc5
Add sam2p
jay-tau 8750b78
Correct typo
jay-tau 7645d12
Add scd.md
jay-tau b60f92d
Fix formatting
jay-tau 7241a42
Delete sam2p.md
kbdharun 2692235
Update pages/common/scd.md
jay-tau 9c3d030
Update pages/common/scd.md
jay-tau d26c5f7
Update pages/common/scd.md
jay-tau 4c4f70a
Update pages/common/scd.md
jay-tau 6ee03df
Update pages/common/scd.md
jay-tau 32aca3e
Update pages/common/scd.md
jay-tau 1a1153b
Update pages/common/scd.md
jay-tau f8a828b
Update pages/common/scd.md
jay-tau 6e5b97a
Update pages/common/scd.md
jay-tau a752e48
Update pages/common/scd.md
jay-tau 8e4b929
Update pages/common/scd.md
jay-tau b494856
Update pages/common/scd.md
jay-tau 6ca5921
Update pages/common/scd.md
jay-tau b1df8eb
Update pages/common/scd.md
jay-tau dd9be3d
Update pages/common/scd.md
jay-tau 0c22ca7
Update pages/common/scd.md
jay-tau b9a8dca
Update pages/common/scd.md
jay-tau d92f8dd
Update pages/common/scd.md
jay-tau 993a87a
Update pages/common/scd.md
jay-tau 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 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,29 @@ | ||
# scd | ||
|
||
> File manager focused on shell integration. | ||
> More information: <https://github.com/cshuaimin/scd>. | ||
|
||
- Index paths recursively for the very first run: | ||
|
||
`scd -ar {{path/to/directory}}` | ||
|
||
- Change to a specific directory: | ||
|
||
`scd {{path/to/directory}}` | ||
|
||
- Change to a path matching specific patterns: | ||
|
||
`scd "{{pattern1 pattern2 ...}}"` | ||
|
||
|
||
jay-tau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Show selection menu and ranking of 20 most likely directories: | ||
|
||
`scd -v` | ||
Comment on lines
+18
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mandatory fix: use long options if they are portable. |
||
|
||
- Add a specific alias for the current directory: | ||
|
||
`scd --alias={{word}}` | ||
|
||
- Change to a directory using a specific alias: | ||
|
||
`scd {{word}}` |
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.
Mandatory fix: use long options if they are portable.
Optional fix: potentially missing mnemonic.
Note: parsing
-ar
failed: can't understand whether-a
and-r
passed or-a
withr
value.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.
@jay-tau, please reply to all my unresolved conversations. :) As README doesn't provide enough info about supported options I assume that long ones exist and requesting changes based on this assumption.