c6c4d4ddb1
Merge pull request #589 from jankoprowski/eof
...
Stop printing CTRL-D on EOF
2019-09-04 08:43:18 +12:00
a2b3e4c9d7
Merge pull request #588 from jankoprowski/documentation
...
Mention pkg-config package in installation instruction
2019-09-04 08:42:48 +12:00
ab97459d0e
Stop printing CTRL-D on EOF
2019-09-03 21:40:42 +02:00
5b706599e9
Mention pkg-config package in installation instruction
...
Ubuntu distributions does not came with pkg-config by default.
OpenSSL package's documentation mention pkg-config as requirement:
https://docs.rs/openssl/0.10.24/openssl/#automatic
2019-09-03 20:29:22 +02:00
a2700308a7
Merge pull request #584 from androbtech/valueshell-ls
...
ls is aware of paths given to list when entered files/values.
2019-09-03 05:54:08 -05:00
3256b7adb3
if path to ls given that does not exist, report the error.
2019-09-03 05:24:04 -05:00
1d0ed7e957
ls lists contents of value entered with or without path given.
2019-09-03 05:17:44 -05:00
68cdeaf8ac
Merge pull request #583 from androbtech/help-refinement
...
Help refinement.
2019-09-03 05:02:15 -05:00
b031d4cd77
can view list of commands for details.
2019-09-03 04:36:23 -05:00
030d73147e
can view help for a given command by entering a command.
2019-09-03 04:05:52 -05:00
a449d2c005
If path to cd given. Report the error with the path given.
2019-09-03 03:49:20 -05:00
6a8dddedc3
Merge pull request #582 from androbtech/cd-valueshell
...
cd can be aware inside a value entered.
2019-09-03 03:08:21 -05:00
b0a02518f9
cd can be awared inside a value entered.
2019-09-03 02:43:37 -05:00
9e3d14cbbf
Merge pull request #581 from jonathandturner/fetch
...
Split fetch command away from open
2019-09-03 18:33:23 +12:00
8a9cdcab17
Split fetch command away from open
2019-09-03 18:04:46 +12:00
fa859f1461
Merge branch 'master' of github.com:nushell/nushell
2019-09-02 21:53:26 -07:00
7bd2fa1bfc
Merge pull request #580 from est31/trailing_spaces
...
Trim trailing whitespace and set it in editorconfig
2019-09-03 16:25:41 +12:00
1464feaab7
Merge pull request #579 from est31/serde_instead_of_specialization
...
Use serde instead of specialization
2019-09-03 16:24:55 +12:00
cf0efb811e
Trim trailing whitespace and set it in editorconfig
2019-09-03 02:52:52 +02:00
35d576f540
Remove use of specialization
2019-09-03 02:13:41 +02:00
225ef8e75d
Use serde to deserialize the remaining things
2019-09-03 02:10:48 +02:00
cc8872b4ee
Use serde to deserialize Tagged<Value>
2019-09-03 01:41:26 +02:00
9ba2e75ac1
Move code into separate visit function
2019-09-03 01:32:54 +02:00
e8880a1a57
Deserialize Block using serde
2019-09-02 22:30:51 +02:00
9b3a561e83
Small refactor
2019-09-02 22:06:46 +02:00
d5494e58a4
ExtractType doesn't have to be implemented for Option any more
2019-09-02 21:12:09 +02:00
4a00887e9d
Merge pull request #578 from jonathandturner/fix_577
...
Fix line completion for extended chars
2019-09-03 07:09:26 +12:00
95feb1ff16
Fix line completion for extended chars
2019-09-03 06:06:25 +12:00
3d912a2c1d
Merge pull request #575 from nushell/remove-unused-code
...
Remove unused code
2019-09-02 20:24:18 +12:00
556f4b2f12
Merge branch 'master' of github.com:nushell/nushell
2019-09-01 23:14:59 -07:00
2cb290b77b
Merge pull request #573 from androbtech/embed
...
can embed a new field to the table.
2019-09-02 01:14:06 -05:00
7fa09f59c2
Remove unused code
...
Closes #467
2019-09-01 23:11:05 -07:00
246c9c06dc
Merge pull request #569 from est31/serde_instead_of_specialization
...
Remove use of ExtractType in deserialize_any
2019-09-01 22:39:13 -07:00
9773f8fbab
Merge pull request #572 from nushell/bigint
...
Migrated numerics to BigInt/BigDecimal
2019-09-01 22:39:01 -07:00
9488c41dcd
can embed a new field to the table
2019-09-02 00:37:13 -05:00
ca0183a136
Migrated numerics to BigInt/BigDecimal
...
This commit migrates Value's numeric types to BigInt and BigDecimal. The
basic idea is that overflow errors aren't great in a shell environment,
and not really necessary.
The main immediate consequence is that new errors can occur when
serializing Nu values to other formats. You can see this in changes to
the various serialization formats (JSON, TOML, etc.). There's a new
`CoerceInto` trait that uses the `ToPrimitive` trait from `num_traits`
to attempt to coerce a `BigNum` or `BigDecimal` into a target type, and
produces a `RangeError` (kind of `ShellError`) if the coercion fails.
Another possible future consequence is that certain performance-critical
numeric operations might be too slow. If that happens, we can introduce
specialized numeric types to help improve the performance of those
situations, based on the real-world experience.
2019-09-01 22:14:41 -07:00
3d5e31c55d
Merge pull request #571 from nushell/bigint
...
Migrated numerics to BigInt/BigDecimal
2019-09-01 22:08:48 -07:00
8a29c9e6ab
Migrated numerics to BigInt/BigDecimal
...
This commit migrates Value's numeric types to BigInt and BigDecimal. The
basic idea is that overflow errors aren't great in a shell environment,
and not really necessary.
The main immediate consequence is that new errors can occur when
serializing Nu values to other formats. You can see this in changes to
the various serialization formats (JSON, TOML, etc.). There's a new
`CoerceInto` trait that uses the `ToPrimitive` trait from `num_traits`
to attempt to coerce a `BigNum` or `BigDecimal` into a target type, and
produces a `RangeError` (kind of `ShellError`) if the coercion fails.
Another possible future consequence is that certain performance-critical
numeric operations might be too slow. If that happens, we can introduce
specialized numeric types to help improve the performance of those
situations, based on the real-world experience.
2019-09-01 21:00:30 -07:00
510ecaa77b
Merge pull request #567 from sharksforarms/crates-io-badge
...
Add crates.io badge
2019-09-02 14:48:38 +12:00
113c2c380f
deserialize_any isn't used any more
2019-09-02 04:07:02 +02:00
bbde86c20d
Use serde to deserialize bare bools
...
There are still tagged bools in use so we can't
remove the ExtractType implementation.
2019-09-02 03:45:00 +02:00
2dc78b2caf
Add crates.io badge
2019-09-01 20:43:30 -05:00
a69a0bc5ee
Use serde to deserialize options
2019-09-02 03:40:21 +02:00
e8bbd330e0
Deserialize tuples with serde
2019-09-02 03:40:18 +02:00
79a779dbea
Deserialize vecs with serde
2019-09-02 03:37:30 +02:00
5491b54859
Make key and struct_field optional in DeserializerItem
...
The main point of this struct seems to be debugging,
as key_struct_field is unused except for debugging.
2019-09-02 03:31:11 +02:00
36c181706d
Merge pull request #566 from jonathandturner/fix_538
...
Allow % in bare words
2019-09-02 12:59:01 +12:00
f9d54c2f25
Allow % in bare words
2019-09-02 12:32:15 +12:00
90f190e54a
Merge pull request #565 from jonathandturner/fix_open_panic
...
Fix unwrap in open
2019-09-02 12:30:09 +12:00
abfd417430
Fix unwrap in open
2019-09-02 11:55:33 +12:00