sbmpost / AutoRaise

AutoRaise (and focus) a window when hovering over it with the mouse
GNU General Public License v3.0
1.42k stars 60 forks source link

ignoreApps=“IntelliJ IDEA” doesn't stop raise #192

Closed jsardello closed 5 months ago

jsardello commented 5 months ago

https://github.com/sbmpost/AutoRaise/issues/156 suggests that I should be able to add IntelliJ to my ignoreApps config file. I have a ~/.AutoRaise file setup like this.

#AutoRaise config file
delay=0
focusDelay=1
ignoreApps=“IntelliJ IDEA”

Other config properties work. Any suggestion on what I'm doing wrong with ignoreApps?

sbmpost commented 5 months ago

@jsardello

It took a while to figure out what was going on, but after copy pasting the exact contents you posted above, I could reproduce the problem. It turns out you are using the wrong quote symbols (Looking carefully, you can see they are printed in a somewhat italic font). Below is the corrected version that you can also copy paste if you want:

#AutoRaise config file
delay=0
focusDelay=1
ignoreApps="IntelliJ IDEA"
jsardello commented 5 months ago

Wow! Thanks for digging in. I'm new to Mac OS and I naively thought Text Edit was a plain editor like Notepad. Thanks for making this software, huge QoL improvement for me.