Commit Graph

34 Commits

Author SHA1 Message Date
127381497c run rustfmt 2019-09-11 10:36:50 -04:00
f770409a60 cd '-' valueshell implementation and valueshell refactorings. 2019-09-08 05:40:47 -05:00
77c2e4200e Filesystem cd refactor/cleanup. 2019-09-08 04:55:49 -05:00
eecda3ecba Merge pull request #363 from twe4ked/cd-back
Implement `cd -` to return to the previous directory
2019-09-08 01:00:32 -05:00
159cf27e39 Implement cd - to return to the last path for the FilesystemShell 2019-09-08 15:10:46 +10:00
7913ae76f8 Expand pwd command
Expand functionality of the pwd command to better handle the different
types of shells (e.g. FilesystemShell, ValueShell, etc.).
2019-09-07 15:31:16 -07:00
ea24571c22 Remove added newline 2019-09-06 23:24:29 -04:00
1b2fdf7c1e Fix bug with ls globbing a single directory 2019-09-06 23:20:13 -04:00
dcd97b6346 Move internal terminology to tables/rows 2019-09-06 04:23:42 +12:00
7fa09f59c2 Remove unused code
Closes #467
2019-09-01 23:11:05 -07:00
c87fa14fc8 Replace crate visibility identifier with pub(crate)
Result of running:

find src -name *.rs -exec sed -i 's/crate /pub(crate) /g' {} \;
2019-08-29 13:09:09 +02:00
34292b282a Add support for ~ expansion
This ended up being a bit of a yak shave. The basic idea in this commit is to
expand `~` in paths, but only in paths.

The way this is accomplished is by doing the expansion inside of the code that
parses literal syntax for `SyntaxType::Path`.

As a quick refresher: every command is entitled to expand its arguments in a
custom way. While this could in theory be used for general-purpose macros,
today the expansion facility is limited to syntactic hints.

For example, the syntax `where cpu > 0` expands under the hood to
`where { $it.cpu > 0 }`. This happens because the first argument to `where`
is defined as a `SyntaxType::Block`, and the parser coerces binary expressions
whose left-hand-side looks like a member into a block when the command is
expecting one.

This is mildly more magical than what most programming languages would do,
but we believe that it makes sense to allow commands to fine-tune the syntax
because of the domain nushell is in (command-line shells).

The syntactic expansions supported by this facility are relatively limited.
For example, we don't allow `$it` to become a bare word, simply because the
command asks for a string in the relevant position. That would quickly
become more confusing than it's worth.

This PR adds a new `SyntaxType` rule: `SyntaxType::Path`. When a command
declares a parameter as a `SyntaxType::Path`, string literals and bare
words passed as an argument to that parameter are processed using the
path expansion rules. Right now, that only means that `~` is expanded into
the home directory, but additional rules are possible in the future.

By restricting this expansion to a syntactic expansion when passed as an
argument to a command expecting a path, we avoid making `~` a generally
reserved character. This will also allow us to give good tab completion
for paths with `~` characters in them when a command is expecting a path.

In order to accomplish the above, this commit changes the parsing functions
to take a `Context` instead of just a `CommandRegistry`. From the perspective
of macro expansion, you can think of the `CommandRegistry` as a dictionary
of in-scope macros, and the `Context` as the compile-time state used in
expansion. This could gain additional functionality over time as we find
more uses for the expansion system.
2019-08-26 21:03:24 -07:00
721a7b159d switch from reqwest to surf 2019-08-25 07:36:19 +12:00
92ce31ac46 rmwrapped cd - ls 2019-08-22 23:51:43 -05:00
03c29b9a6f Remove an unwrap 2019-08-23 04:44:31 +12:00
399b411a9c Merge pull request #332 from jonathandturner/fix_abs_ls
Fix absolute ls
2019-08-22 20:18:21 +12:00
effbc56ec8 Fix absolute ls 2019-08-22 19:52:57 +12:00
b9b462ffeb Remove dep import 2019-08-22 17:15:14 +12:00
87930ba35a Fix tests 2019-08-22 16:23:57 +12:00
303d27d4b6 Finish adding support for protecting value shells 2019-08-22 16:13:40 +12:00
78ca297e47 WIP 2019-08-22 07:38:09 +12:00
73e3402e2f Merge master 2019-08-22 05:09:23 +12:00
e012e04da0 Disallow fileops on values 2019-08-22 05:03:59 +12:00
5bfb96447a Reduce unwraps
Remove a number of unwraps. In some cases, a `?` just worked as is. I also made it possible to use `?` to go from Result<OutputStream, ShellError> to OutputStream. Finally, started updating PerItemCommand to be able to use the signature deserialization logic, which substantially reduces unwraps.

This is still in-progress work, but tests pass and it should be clear to merge and keep iterating on master.
2019-08-16 20:53:39 -07:00
dd18122a24 WIP 2019-08-15 17:02:02 +12:00
8f78995014 Improve enter and fix bugs 2019-08-11 08:18:14 +12:00
60e7dfcf1b Add back command completions 2019-08-10 17:02:15 +12:00
eeed31837f cleanup 2019-08-10 08:49:43 +12:00
34759b7646 Add back in cd/ls and completions 2019-08-10 07:42:23 +12:00
cabd5bf009 Fix sink plugins 2019-08-09 19:54:21 +12:00
83030094e0 All tests pass 2019-08-09 17:36:43 +12:00
aadacc2d36 Merge master 2019-08-09 16:51:21 +12:00
e8ae46ddb5 Fix the canonicalize of set_path 2019-08-08 12:52:29 +12:00
c231dd32cd Multi shells (#254)
Add multi-shells
2019-08-08 05:49:11 +12:00