Skip to content

Commit 96f0994

Browse files
committed
Merge pull request #4 from Simounet/FIX/getters-setters-variable-trimed
Variable trimed on setters/getters creation when default value set
2 parents 9065a3c + 2cc4a8a commit 96f0994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/php-refactoring-toolbox.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function! PhpCreateSettersAndGetters() " {{{
9898
normal gg
9999
let l:properties = []
100100
while search(s:php_regex_member_line, 'eW') > 0
101-
normal w"xyw
101+
normal w"xye
102102
call add(l:properties, @x)
103103
endwhile
104104
for l:property in l:properties

0 commit comments

Comments
 (0)