NeoVintageous / NeoVintageous

Vim for Sublime Text.
https://neovintageous.github.io
GNU General Public License v3.0
687 stars 43 forks source link

search and replace forward slash #204

Open gerardroche opened 7 years ago

gerardroche commented 7 years ago

Issue by jasjuang Tuesday Jan 05, 2016 at 03:45 GMT Originally opened as https://github.com/guillermooo/Vintageous/issues/1053


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

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

works fine in vim but returns an error in vintageous

gerardroche commented 7 years ago

Comment by vvreutskiy Tuesday Aug 23, 2016 at 07:35 GMT


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)