Hello, I have an intermittent problem with Safari 15 on MacOS 12. Most of the time I cannot get the Cmd + Shift + L to work with auto fill. Even if I restart Safari, the problem persists. Any known info for this?
Thanks in advance!
Hello, I have an intermittent problem with Safari 15 on MacOS 12. Most of the time I cannot get the Cmd + Shift + L to work with auto fill. Even if I restart Safari, the problem persists. Any known info for this?
Thanks in advance!
It could be that this keyboard shortcut combination has been mapped to something else.
You can check by opening System Preferences → Keyboard → Shortcuts → Services or App Shortcuts.
For example, under the Services dialog, Shift-Command-L was mapped to Search With Google on my MacBook, which I believe is a default system setting (just disable it). Check in the App Shortcuts dialog, also, in case there are any conflicting entries there. Alternatively, you can map a new shortcut for Bitwarden in the App Shortcuts dialog, if you like (e.g., Option-Command-L).
Hope that helps. Cheers!
Thank you
Looks like mine had the same “Search with Google” option set. I disabled it and had to reboot the system to get it working with Auto-fill again. I’ll have to see if it stays working. I know with Safari 15, Cmd + Shift + L is a default shortcut to open the sidebar too, so hopefully that isn’t conflicting.
I came across this because I also have intermittent issues with Shift-Command-L not working. I disabled the system shortcut as suggested by David H but nothing changed for me. However, I discovered something which may be a bug.
If I do the following, the keyboard shortcut stops working until I quit Safari and restart.
If I do the following, the the shortcut works and continues to do so.
I’m seeing the same issue as Carl. Been like this for a few weeks.
There is a similar discussion here:
Many people (including me) see this problem on M1-based Macs after updating to macOS 12.3.
I have an Intel based Mac and have the same problem.
The solution appears to be to unlock the browser extension before you try and use the keyboard shortcut, at least for me.
I’m experiencing similar issues. When I disable the extension, I can toggle the Safari sidebar with Cmd+Shift+L. When I enable the extension, I can use the shortcut just once with Bitwarden. After that the shortcut doesn’t react at all. Not to any of both.
I think this is a bug. BW for Safari should select a different keyboard shortcut (Cmd+\ for example?) or make it user configurable.
I’ve ask AI to write a apple script that can be paired with BetterTouchTool to workaround this issue
#!/usr/bin/env osascript
(*
Safari Sidebar Toggle
USAGE:
./toggle_safari_sidebar.scpt
DESCRIPTION:
This script toggles the sidebar visibility in Safari.
It works with a Japanese macOS environment by accessing either
"サイドバーを表示" (Show Sidebar) or "サイドバーを非表示" (Hide Sidebar)
menu items under the "表示" (View) menu, depending on the current state.
NOTE:
You may need to grant Accessibility permissions to the script or application
running this script in System Preferences > Security & Privacy > Privacy > Accessibility.
*)
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
-- Click on the View menu (表示)
click menu "表示" of menu bar 1
-- Check if "サイドバーを表示" (Show Sidebar) exists in the menu
if exists menu item "サイドバーを表示" of menu "表示" of menu bar 1 then
-- If it exists, the sidebar is currently hidden, so show it
click menu item "サイドバーを表示" of menu "表示" of menu bar 1
else if exists menu item "サイドバーを非表示" of menu "表示" of menu bar 1 then
-- If "サイドバーを非表示" (Hide Sidebar) exists, the sidebar is currently visible, so hide it
click menu item "サイドバーを非表示" of menu "表示" of menu bar 1
end if
end tell
end tell