Vim - un plugin pour markdown - partie 3 17 March 2014 J’ai ajouté les titres de niveau 2 et 3, nettoyer un peu le code et et remplacer l’utilisation des commandes en mode normal yy et p (qu’un utilisateur peut toujours avoir remappé) par des fonctions d’évaluations: function s:build_title(char) let s:line_content = substitute(getline("."), '.', a:char, 'g') call append('.', s:line_content) endfunction function! quickmarkdown#title1() call s:build_title("=") endfunction function! quickmarkdown#title2() call s:build_title("-") endfunction function! quickmarkdown#title3() call setline(line('.'), '### ' . getline('.')) endfunction À demain. / / / / / / / / / / « Vader, un framework de test pour Vim ---//--- Le format JSON et les caractères de fin de lignes » Please enable JavaScript to view the comments powered by Disqus.