Sfoglia il codice sorgente

Add a command to remove semester suffix

Like S7 or S79 in subjects.
DricomDragon 5 anni fa
parent
commit
927b4698d0
1 ha cambiato i file con 15 aggiunte e 0 eliminazioni
  1. 15 0
      Guides/ics-vim.md

+ 15 - 0
Guides/ics-vim.md

@@ -48,3 +48,18 @@ SUMMARY:TP,CCUBE
 SUMMARY:CM,CCUBE
 SUMMARY:CM,CCUBE
 ```
 ```
 
 
+## Remove semester from subjects
+
+Commant vim : `:%s/S[3579]\+//`
+
+Before :
+```
+SUMMARY:TD,EPSS79
+SUMMARY:TD,ALLS7
+```
+
+After :
+```
+SUMMARY:TD,EPS
+SUMMARY:TD,ALL
+```