yaml-path

command module
v0.0.0-...-08826e5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2022 License: Apache-2.0 Imports: 6 Imported by: 0

README

Table of Contents

What

yaml-path reads given yaml on stdin and output a sort of 'path' corresponding to given line and column in the file.

Generated path is compilant with BOSH ops-file syntax.

Why

Working with BOSH often require to writes so-called ops-file which are kind of patches for yaml files. Writing the path of the object to modify is a real burden in large yaml files.

This tool is meant to be easily integrated in editor such as emacs.

Usage

usage: yaml-path [<flags>]

Flags:
  -h, --help         Show context-sensitive help (also try --help-long and --help-man).
      --line=0       Cursor line
      --col=0        Cursor column
      --sep="/"      Set path separator
      --name="name"  Set attribut name, empty to disable
      --path=""      Set filepath, empty means stdin
      --version      Show application version.

Example

Given the following yaml file:

top:
  first:
    - name: myname
      attr1: val1
      attr2: val2
      #       ^
    - value2
    - value3
  second:
    child1: value1
    child1: value2
    child3: value3

cat test.yaml | ./yaml-path --line 5 --col 14

Outputs:

/top/first/name=myname/attr2

Installation

git clone https://github.com/jceb/yaml-path.git
cd yaml-path
go install

Integration

Emacs

Get a local copy of this repo :

git clone https://github.com/jceb/yaml-path.git

Install emacs yaml-path package:

cd emacs && make install

Provided functions:

  • yaml-path-at-point : (interactive) display in minibuffer and store to kill ring yaml path for token under cursor
  • yaml-path-get-path-at-point(&optional line col) : return yaml path for token in current buffer at given line and column
  • yaml-path-which-func: integrates yaml-path-get-path-at-point with which-function-mode

Demo:

Demo

Vim

Plugin manager
Manually
install -m 0644 -D yaml-path.vim ~/.vim/plugin/
Configuration

In your ~/.vimrc:

  • g:yamlpath_sep: change default separator (default: /)
  • g:yamlpath_auto: enable automatic call on cursor move on YAML files (default: 0)
  • to call the tool with a keystroke such as F12, add to you ~/.vimrc:
nnoremap <F12> :Yamlpath<CR>
Command

To call the tool with a custom separator once (in command mode): :Yamlpath "."

Demo:

Demo

Neovim

Packer
use({
    "jceb/yaml-path.nvim",
    run = { "go install" },
})

Intellij

  1. Go to preference -> tools -> external tools
  2. Add a new one with this configuration

Demo

Note

The current implementation relies on a very savage hack of golang yaml library vendored in this project.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL