From 10ca739f52b0f33d13058a7c88c1603f308ce3a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Fri, 4 Oct 2024 14:05:31 +0200 Subject: [PATCH] Add .helix to .gitignore [helix] can use project specific configuration in the `.helix` directory under the project root. For gst-rs development, this can be used to select a group of features: .helix/languages.toml: ```toml [language-server.rust-analyzer.config] cargo = { features = ["v1_26"] } ``` It can also be used to configure debugging targets, thought debugging experience with helix is lacking currently. [helix]: https://helix-editor.com/ Part-of: --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 324c57f7d..ca7b4b823 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ target/ **/*.rs.bk +.helix/