Skip to content

Instantly share code, notes, and snippets.

@Ziggoto
Created August 15, 2020 23:40
Show Gist options
  • Save Ziggoto/dea13c4b980e983dbbf19885bd4ae9ab to your computer and use it in GitHub Desktop.
Save Ziggoto/dea13c4b980e983dbbf19885bd4ae9ab to your computer and use it in GitHub Desktop.
VIM Currency Converter
:let ratio = split(execute('!curl --silent https://api.exchangeratesapi.io/latest\?base\=USD | jq .rates.BRL'))[-1] | let currentLine = getline(line('.')) | echo printf('%f', str2float(currentLine) * str2float(ratio))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment