mirror of
https://github.com/nushell/nushell.git
synced 2025-06-01 07:35:49 +02:00
# Description Fixes: #12744 This pr is moving raw string lex logic into `lex_item` function, so we can use raw string inside subexpression, list, closure. ```nushell > [r#'abc'#] ╭───┬─────╮ │ 0 │ abc │ ╰───┴─────╯ > (r#'abc'#) abc > do {r#'aa'#} aa ``` # Tests + Formatting Done # After Submitting NaN