Sublime Forum

Multiple Selection Issues

#1

Not sure if this has already been brought up, but I’m having a hard time using Multiple Selections (CTRL+D) for variable renaming.

I’m using the latest relase for Windows 64 bits.

Take for example the following JavaScript snippet:

function name(argument) { var something = argument; if(argument === 'undefined') { argument = 'argument'; } alert(argument); }

Or Ruby:

def name(argument) something = argument if argument == 'undefined' argument = 'argument' end puts argument end

Typing CTRL+D over the *argument *variable only selects two instances at the time…

0 Likes

#2

You have to press ctrl+d multiple times or use alt+f3

0 Likes

#3

Fair enough. From the screencast on the frontpage I wrongly deduced that you only need to press CTRL+D once.

0 Likes