Skip to content

Instantly share code, notes, and snippets.

@sjktje
Created April 23, 2015 12:54
Show Gist options
  • Save sjktje/aa54ce247ae447d92609 to your computer and use it in GitHub Desktop.
Save sjktje/aa54ce247ae447d92609 to your computer and use it in GitHub Desktop.
nmap <leader>am :call Abc2midi()<CR>
function! Abc2midi()
let midi_file_name = expand('%:r') . '.mid'
let abc_file_name = expand('%')
let cmd = 'abc2midi -o ' . midi_file_name . ' ' .abc_file_name
call system(cmd)
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment