commit fa54ba5d9e070f12ba768b6279deddbcd5d99eb5
parent 38f7e1bbc00a8db862d9a2323dfe5b0b2b6103ae
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Wed, 16 Oct 2024 17:31:17 +0200
fix: edit spelling mistakes
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/posts/helix-term.md b/content/posts/helix-term.md
@@ -10,10 +10,10 @@ tags: ["development", "helix", "tech"]
For almost a year now, I am an avid user of the "post-modern text editor"
[Helix](https://helix-editor.com/), which replaced [NeoVim](https://neovim.io/)
-for me entirely. In helix I write all kinds of configs, texts and code,
+for me entirely. In Helix I write all kinds of configs, texts and code,
primarily in [R](https://cran.r-project.org/). Helix works flawlessly with it,
especially with the built-in LSP. The only gripe I had with this was, that there
-was no easy way to write R-code in helix and send it directly and interactively
+was no easy way to write R-code in Helix and send it directly and interactively
to R's REPL, as you would in typical R IDEs like
[RStudio](https://posit.co/products/open-source/rstudio/).
@@ -55,7 +55,7 @@ Ctrl-C twice):
```toml
[keys.select]
-C-c = { C-c = [":pipe-to ~/.local/bin/send-to-tmux"] }
+C-c = { C-c = [":pipe-to send-to-tmux.sh"] }
```
## Using helix-term
@@ -63,7 +63,7 @@ C-c = { C-c = [":pipe-to ~/.local/bin/send-to-tmux"] }
The final script(s) in my
[git-repository](https://src.jayvii.de/pub/helix-term/) are slightly more
complicated to allow a more streamlined workflow, such as sending the current
-code-paragraph in insert or normal mode from helix and setting launching a
+code-paragraph in insert or normal mode from Helix and setting launching a
separate tmux-session for each working-directory, so you can run multiple such
processes at the same time.