🍒 YAML toolkit for Neovim users
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes multiline strings for Telescope

Fixes #22

authored by

Eduardo Cuducos and committed by
Eduardo Vicente Gonçalves
74057f40 584d91d4

+10
+2
lua/yaml_nvim/pair.lua
··· 16 16 end 17 17 18 18 local function clean_up_block_value(value) 19 + value = string.gsub(value, "\n", " ") 20 + 19 21 if value:sub(1, 1) ~= "|" then 20 22 return value 21 23 end
+8
tests/sample.yaml
··· 9 9 semifinals: 10 10 - brazil: 1 11 11 germany: 7 12 + details: 13 + - { 14 + stadium: Mineirão 15 + } 12 16 - nederland: 0 13 17 argentina: 0 18 + details: 19 + - { 20 + stadium: Itaquerão 21 + }