Add test for renaming

This commit is contained in:
baabelfish 2016-03-17 01:14:44 +02:00
commit 115215ecf7

View file

@ -0,0 +1,14 @@
Given nim:
var hello = "world"
var other = hello & "!"
hello.echo
echo hello
Do:
Gw:NimRenameSymbol\<cr>\<c-w>something\<cr>
Expect nim:
var something = "world"
var other = something & "!"
something.echo
echo something