Reading view

There are new articles available, click to refresh the page.

yml 文件如何精准搜索 key, 比如 docker-compose 格式中的 services.image 来快速定位

remember5:

背景

用了很久 yml 格式,平常最多 200 行,也很少有重复的单词,ctrl+F 也能快速定位

现在常用 bitnami chart,几千行的 yml 该如何通过快速搜索呢

demo

yml 文件如下

job1:
  name: job1
  image: busybox
  command: ["sleep", "600"]
  
job2:
  name: job2
  image: busybox
  command: ["sleep", "600"]

期望搜索 key= job1.name 能快速定位到job1

常用的 IDE 中是否有相关插件实现呢

❌