let g:deepl#endpoint = "https://api-free.deepl.com/v2/translate" let g:deepl#auth_key = "74c16012-bb47-0639-8421-69926eab39dd:fx" " Translate the current line and display it on a new line. vmap t call deepl#v("EN") vmap t call deepl#v("JA") " aranslate a current line and display on a new line nmap t yypVcall deepl#v("EN") nmap t yypVcall deepl#v("JA") " specify the source language " translate from FR to EN nmap t yypVcall deepl#v("EN", "FR")