├── .github └── workflows │ └── ci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── format.nu ├── languages.ncl ├── languages └── nu.scm ├── package.nix ├── run_test.nu ├── test ├── expected_assignment.nu ├── expected_attribute.nu ├── expected_command.nu ├── expected_comment.nu ├── expected_ctrl.nu ├── expected_data.nu ├── expected_decl.nu ├── expected_disable.nu ├── expected_exe.nu ├── expected_keyword.nu ├── expected_string.nu ├── input_assignment.nu ├── input_attribute.nu ├── input_command.nu ├── input_comment.nu ├── input_ctrl.nu ├── input_data.nu ├── input_decl.nu ├── input_disable.nu ├── input_exe.nu ├── input_keyword.nu └── input_string.nu └── toolkit.nu /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/flake.nix -------------------------------------------------------------------------------- /format.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/format.nu -------------------------------------------------------------------------------- /languages.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/languages.ncl -------------------------------------------------------------------------------- /languages/nu.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/languages/nu.scm -------------------------------------------------------------------------------- /package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/package.nix -------------------------------------------------------------------------------- /run_test.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/run_test.nu -------------------------------------------------------------------------------- /test/expected_assignment.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_assignment.nu -------------------------------------------------------------------------------- /test/expected_attribute.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_attribute.nu -------------------------------------------------------------------------------- /test/expected_command.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_command.nu -------------------------------------------------------------------------------- /test/expected_comment.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_comment.nu -------------------------------------------------------------------------------- /test/expected_ctrl.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_ctrl.nu -------------------------------------------------------------------------------- /test/expected_data.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_data.nu -------------------------------------------------------------------------------- /test/expected_decl.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_decl.nu -------------------------------------------------------------------------------- /test/expected_disable.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_disable.nu -------------------------------------------------------------------------------- /test/expected_exe.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_exe.nu -------------------------------------------------------------------------------- /test/expected_keyword.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_keyword.nu -------------------------------------------------------------------------------- /test/expected_string.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/expected_string.nu -------------------------------------------------------------------------------- /test/input_assignment.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_assignment.nu -------------------------------------------------------------------------------- /test/input_attribute.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_attribute.nu -------------------------------------------------------------------------------- /test/input_command.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_command.nu -------------------------------------------------------------------------------- /test/input_comment.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_comment.nu -------------------------------------------------------------------------------- /test/input_ctrl.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_ctrl.nu -------------------------------------------------------------------------------- /test/input_data.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_data.nu -------------------------------------------------------------------------------- /test/input_decl.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_decl.nu -------------------------------------------------------------------------------- /test/input_disable.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_disable.nu -------------------------------------------------------------------------------- /test/input_exe.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_exe.nu -------------------------------------------------------------------------------- /test/input_keyword.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_keyword.nu -------------------------------------------------------------------------------- /test/input_string.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/test/input_string.nu -------------------------------------------------------------------------------- /toolkit.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blindFS/topiary-nushell/HEAD/toolkit.nu --------------------------------------------------------------------------------