Browse Source

Fix typo 'Command vim' -> 'Vim command'

DricomDragon 5 years ago
parent
commit
a0564eb13d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Guides/ics-vim.md

+ 4 - 4
Guides/ics-vim.md

@@ -18,7 +18,7 @@ SUMMARY:TP - CCUBE - C000
 
 ## Shrink first dash
 
-Command vim : `:%s/ - \(.*\) \?\(-\?\) \?/,\1\2/g`
+Vim command : `:%s/ - \(.*\) \?\(-\?\) \?/,\1\2/g`
 
 Before :
 ```
@@ -34,7 +34,7 @@ SUMMARY:CM,CCUBE
 
 ## Remove extra location
 
-Command vim : `%s/ - .*$//`
+Vim command : `%s/ - .*$//`
 
 Before :
 ```
@@ -50,7 +50,7 @@ SUMMARY:CM,CCUBE
 
 ## Remove semester from subjects
 
-Command vim : `:%s/S[3579]\+//`
+Vim command : `:%s/S[3579]\+//`
 
 Before :
 ```
@@ -66,7 +66,7 @@ SUMMARY:TD,ALL
 
 ## Swap type of course and subject
 
-Command vim : `%s/SUMMARY:\(.*\),\(.*\)/SUMMARY:\2,\1/c`
+Vim command : `%s/SUMMARY:\(.*\),\(.*\)/SUMMARY:\2,\1/c`
 
 Before :
 ```