Quellcode durchsuchen

Add command to swap subject and type of course

DricomDragon vor 5 Jahren
Ursprung
Commit
9856cbb48a
1 geänderte Dateien mit 14 neuen und 0 gelöschten Zeilen
  1. 14 0
      Guides/ics-vim.md

+ 14 - 0
Guides/ics-vim.md

@@ -63,3 +63,17 @@ After :
 SUMMARY:TD,EPS
 SUMMARY:TD,ALL
 ```
+
+## Swap type of course and subject
+
+Command vim : `%s/SUMMARY:\(.*\),\(.*\)/SUMMARY:\2,\1/c`
+
+Before :
+```
+SUMMARY:TD,EPS
+```
+
+After :
+```
+SUMMARY:EPS,TD
+```