nushell/crates
Dan Davison 4926865c4e
str collect => str join (#6531)
* Initialize join.rs as a copy of collect.rs

* Evolve StrCollect into StrJoin

* Replace 'str collect' with 'str join' everywhere

git ls-files | lines | par-each { |it| sed -i 's,str collect,str join,g' $it }

* Deprecate 'str collect'

* Revert "Deprecate 'str collect'"

This reverts commit 959d14203e.

* Change `str collect` help message to say that it is deprecated

We cannot remove `str collect` currently (i.e. via
`nu_protocol::ShellError::DeprecatedCommand` since a prominent project
uses the API:

b85542c31c/src/virtualenv/activation/nushell/activate.nu (L43)
2022-09-11 11:48:27 +03:00
..
nu_plugin_custom_values bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu_plugin_example bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu_plugin_gstat bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu_plugin_inc bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu_plugin_python fix python plugin example (#6242) 2022-08-05 23:57:31 -04:00
nu_plugin_query bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-cli Add a 'commandline' command for manipulating the current buffer (#6492) 2022-09-09 15:31:32 -05:00
nu-color-config bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-command str collect => str join (#6531) 2022-09-11 11:48:27 +03:00
nu-engine bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-glob bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-json bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-parser Require static path for source-env (#6526) 2022-09-08 23:41:49 +03:00
nu-path bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-plugin Remove --encoding argument during register plugin (#6486) 2022-09-07 09:07:42 -05:00
nu-pretty-hex bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-protocol Add a 'commandline' command for manipulating the current buffer (#6492) 2022-09-09 15:31:32 -05:00
nu-system bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-table bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-term-grid bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
nu-test-support Remove --encoding argument during register plugin (#6486) 2022-09-07 09:07:42 -05:00
nu-utils str collect => str join (#6531) 2022-09-11 11:48:27 +03:00
old bump dev version to v0.68.1 (#6504) 2022-09-07 14:27:33 +12:00
README.md Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00

Nushell core libraries and plugins

These sub-crates form both the foundation for Nu and a set of plugins which extend Nu with additional functionality.

Foundational libraries are split into two kinds of crates:

  • Core crates - those crates that work together to build the Nushell language engine
  • Support crates - a set of crates that support the engine with additional features like JSON support, ANSI support, and more.

Plugins are likewise also split into two types:

  • Core plugins - plugins that provide part of the default experience of Nu, including access to the system properties, processes, and web-connectivity features.
  • Extra plugins - these plugins run a wide range of different capabilities like working with different file types, charting, viewing binary data, and more.