Sublime Forum

ALT+F3 case sensitive?

#1

Any change to configure ALT+F3 to be case sensitive.?

0 Likes

#2

use alt+shift+f3 instead? :unamused:

0 Likes

#3

I can’t find the source of the command find_all_under

But I now remember word highlight provides case sensitive selection, I should use ALT+ENTER instead of ALT+F3 Thanks BoundInCode!

0 Likes

#4

[quote]use alt+shift+f3 instead?
[/quote]

Nothing is selected with that command :unamused:

I think find_all should be case sensitive.

Word Highlight is not helping when I need to select non-words.

I need to write a plugin for this!??

0 Likes

#5

It is case-sensitive or not depending on the state of the corresponding toggle button in the find panel

0 Likes

#6

ahh, thanks for clarification!

0 Likes

#7

It is a good idea to add a keybinding to control when using case sensitive and when not?

What about:

ALT+F3 case sensitive
ALT+SHIFT+F3 case insensitive

0 Likes

#8

[quote]It is a good idea to add a keybinding to control when using case sensitive and when not?

What about:

ALT+F3 case sensitive
ALT+SHIFT+F3 case insensitive[/quote]

What are the commands for those? So I can set a key binding to toggle case sensitive and not case sensitive.

0 Likes

#9

Nevermind! Hover over the button in the find console and it tells you the key bindings:

Regex - super+alt+R
Case - super+alt+C
Word - super+alt+W

Now I just have to reset the key bindings I set for those!

Here are the defaults OSX:

[code] { “keys”: “super+alt+c”], “command”: “toggle_case_sensitive”, “context”:

		{ "key": "setting.is_widget", "operator": "equal", "operand": true }
	]
},
{ "keys": "super+alt+r"], "command": "toggle_regex", "context":
	
		{ "key": "setting.is_widget", "operator": "equal", "operand": true }
	]
},
{ "keys": "super+alt+w"], "command": "toggle_whole_word", "context":
	
		{ "key": "setting.is_widget", "operator": "equal", "operand": true }
	]
},
{ "keys": "super+alt+a"], "command": "toggle_preserve_case", "context":
	
		{ "key": "setting.is_widget", "operator": "equal", "operand": true }
	]
},

[/code]

0 Likes