-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "feat: introduce raw strings (#113)"
This reverts commit b10a7b9.
- Loading branch information
Showing
18 changed files
with
427,997 additions
and
434,973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
- main | ||
jobs: | ||
main: | ||
name: setup, lint and test | ||
name: install | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
def "nur build" [] { | ||
def "nur run" [] { | ||
tree-sitter generate | ||
} | ||
|
||
def "nur test" [] { | ||
tree-sitter test | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
vim.filetype.add({ extension = { nu = "nu" }, filename = { ["nurfile"] = "nu" } }) | ||
|
||
vim.api.nvim_create_autocmd("FileType", { | ||
pattern = "nu", | ||
callback = function(event) | ||
vim.bo[event.buf].commentstring = "# %s" | ||
end, | ||
pattern = "nu", | ||
callback = function(event) vim.bo[event.buf].commentstring = "# %s" end, | ||
}) | ||
|
||
require("nvim-treesitter.parsers").get_parser_configs().nu = { | ||
install_info = { | ||
url = "https://github.com/nushell/tree-sitter-nu", | ||
files = { "src/parser.c", "src/scanner.c" }, | ||
branch = "main", | ||
}, | ||
filetype = "nu", | ||
install_info = { | ||
url = "https://github.com/nushell/tree-sitter-nu", | ||
files = { "src/parser.c" }, | ||
branch = "main", | ||
}, | ||
filetype = "nu", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.