-
hi, you've mentioned kcl in this blog posting https://moonrepo.dev/blog/moon-v1.29 and that it has no rust binding.
im pretty sure that that's not true as kcl is written itself in rust.
the lib can …
-
In many languages `%` is the modulo operator, but not in KCL! In KCL, % is used as a substitution in a pipeline (`|>`).
Trying to use `%` as an operator should be a parse error, or at the very lea…
-
## Bug Report
I am using NixOS, where the directories of packages are readonly.
The kcl installer v0.10.3 seems to try to create a directory `kcl` under `$KCL_LIB_HOME`
```
panic: mkdir /nix…
-
This KCL program parses:
```
fn f = (i) => { return i + 1}
0 |> f(%)
```
This equivalent program doesn't:
```diff
fn f = (i) => { return i + 1}
- 0 |> f(%)
+ 0 |> if true {
+ f(%)
+ } else {
…
-
## Feature Request
I would like KCL to support editing strings embedded in yaml block strings as is common with kcl functions.
**Is your feature request related to a problem? Please describe:**
…
-
See https://github.com/github-linguist/linguist/blob/main/CONTRIBUTING.md#adding-a-language
It would be nice to support Sublime Text also. It has a few [restrictions](https://forum.sublimetext.com/t/…
-
## Feature Request
**Is your feature request related to a problem? Please describe:**
I'm trying to understand how to regenerate these module bindings for any given module. It seems ambiguous ho…
-
![image](https://github.com/user-attachments/assets/85853c77-39ca-40e6-8678-18d9b73f7de0)
-
## Feature Request
**Is your feature request related to a problem? Please describe:**
Currently, KCL itself can be installed through Nix/Devbox, but the language server cannot. Thus, if I'm settin…
-
## Bug Report
Please answer these questions before submitting your issue. Thanks!
### 1. Minimal reproduce step (Required)
use Lazyvim
and nvim: 0.10.1
```lua
return {
{ "kcl-lang/kcl…