Replace case in high text 3

Due to the fact that he worked a little on this, it seems that this, or at least, could be done using Sublime Text. I saw several links to the save button in the search and replace panel, which looks like two rounded squares superimposed on each other.

However, I cannot find this at all in my version of Sublime Text 3 (on Mavericks) ...

I also checked the settings to see if this option was disabled, but the only link I could find was:

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

in the default keyword map file ...

Here is a screenshot of my search and replace panel:

enter image description here

+7
replace sublimetext3
source share
3 answers

It looks like it could have been a crash in ST3, which was causing confusion.

I noticed that the keyboard shortcut for replacement never worked for some reason, and also that choosing a replacement from the search menu opened the search bar in the file bar, unlike the regular search and replace bar (where the save button is saved), I understood this is only after installing the soda theme for ST3, which showed the save button in the screenshot.

Strange, when I returned to the default theme, the find> replace menu now works as it should, and I found that the keyboard shortcut was the cause of another program, so it did not work ...

+2
source share

In the latest release of Sublime 3 (3059), there is a special icon in the replacement dialog box to save the case. When you switch and use the input shown in the screenshot, the next line of input will be converted to the following output:

Entrance: "Xhis is my xest."

Exit: "This is my test."

enter image description here

+12
source share

This is not exactly the answer to your almost 1.5 year old question, but you (or someone else) may find the following helpful:

I wrote the ST package, which includes the function of saving the case when editing several options. It even saves cases with delimiters like snake_case, dash-case, dot.case, etc.

It is called MultiEditUtils . Here you can see the described function.

The feature in question

+10
source share

All Articles