guillermooo / Vintageous

Vi/Vim emulation for Sublime Text 3
http://guillermooo.bitbucket.org/Vintageous/
Other
1.64k stars 115 forks source link

search and replace forward slash #1053

Open jasjuang opened 8 years ago

jasjuang commented 8 years ago

Lets say I want to replace "123" into "../.."

:%s/123/..\/../g

works fine in vim but returns an error in vintageous

vvreutskiy commented 8 years ago

Another case: I want to replace backslashes with slashes. Text: C:\src\backend\Project\bin\Debug Command: :s/\\/\//g Vim result (expected): C:/src/backend/Project/bin/Debug Vintageous result: C:\src\backend\Project\bin\Debug Sublime Console output: Vintageous: expected __EOF__, got / instead (:s/\\/\//g)