Explorar o código

Add command to escape \n character

DricomDragon %!s(int64=5) %!d(string=hai) anos
pai
achega
c440491ff8
Modificáronse 1 ficheiros con 13 adicións e 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
+```