From f072ccf710236d14bb6b419202fe97a2f8db1be1 Mon Sep 17 00:00:00 2001
From: Myzel394 <50424412+Myzel394@users.noreply.github.com>
Date: Sun, 26 May 2024 00:31:54 +0200
Subject: [PATCH] feat(docs): Add xml and yaml
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 518327a..a2c1bda 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
# jsonfly.nvim
-Fly through your JSON files with ease.
+Fly through your JSON, XML and YAML files with ease.
Search ✨ blazingly fast ✨ for keys via [Telescope](https://github.com/nvim-telescope/telescope.nvim), navigate through your JSON structure with ease, and insert deeply nested keys without fear.
-json(fly) is a Telescope extension that will show you all keys (including nested ones) in your JSON files and allow you to search and jump to them quickly.
+json(fly) is a Telescope extension that will show you all keys (including nested ones) in your JSON (or XML or YAML) files and allow you to search and jump to them quickly.
It's completely customizable and even supports highlighting of the values.
@@ -48,7 +48,7 @@ Here's how I load it with lazy.nvim with lazy-loading and `j` as the key
"j",
"Telescope jsonfly",
desc = "Open json(fly)",
- ft = { "json" },
+ ft = { "json", "xml", "yaml" },
mode = "n"
}
}