Explorar el Código

Add command to escape \n character

DricomDragon hace 5 años
padre
commit
c440491ff8
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      Guides/ics-vim.md

+ 13 - 0
Guides/ics-vim.md

@@ -2,3 +2,16 @@
 
 Tips to modify an autogenerated ics file with the Vim text editor.
 
+## Remove unescaped \n
+
+Commande vim : `:%s/\\n//g`
+
+Before :
+```
+SUMMARY:TP - CCUBE - C000\n
+```
+
+After :
+```
+SUMMARY:TP - CCUBE - C000
+```