web-dev-qa-db-ja.com

MacでChrome開発者デバッグショートカットを使用するにはどうすればよいですか?

Chrome Web Developer Toolsを使用して、WebページでJavaScriptをデバッグしています。Windowsでは、 F11 デバッガーの使用中に関数にステップインする。

しかし、私が押すと F11 私のMacでは、音量がちょうど上がる。 F11fn それもしません。 MacでChrome Web Developerキーボードショートカットを使用するにはどうすればよいですか?

19
David Faux
  • Continue: F8 または Command-/ (スラッシュ)Macまたは Control-/ (スラッシュ)他のプラットフォームでは。
  • Step over: F10 または Command-' (アポストロフィ)Macまたは Control-' (アポストロフィ)他のプラットフォーム。
  • Step into: F11 または Command-; (セミコロン)Macまたは Control-; (セミコロン);他のプラットフォーム。
  • Step out: Shift-F11 または Shift-Command-; (セミコロン)Macまたは Shift-Control-; (セミコロン)他のプラットフォームでは。
  • Next call frame: Control-. (期間)すべてのプラットフォーム。
  • Previous call frame: Control-, (カンマ)すべてのプラットフォーム。

ソース

18

できます:

  1. System Preferences-> Keyboard-> Keyboardに移動します。 EnabledUse F1/F2 as standard function keysがあることを確認してください。

  2. System Preferences-> Keyboard-> Keyboard Shortcutsに移動します。左側のパネルでMission Controlを選択してから、右側のパネルを見てdisableF11をShow Desktopに変更します。

40
Kaihua

これは Karabiner でも実行できます。フルサイズのキーボードのキーマップは次のようになります。

<?xml version="1.0"?>
<root>
  <appdef>
    <appname>CHROME</appname>
    <equal>com.google.Chrome</equal>
  </appdef>

  <item>
    <name>CHROMEDEBUGGINGKEY</name>
    <appendix>This maps the F13, F14 and F15 keys to Chrome debugging keys</appendix>
    <identifier>private.swap_chrome_to_debug_settings</identifier>
    <only>CHROME</only>
    <!--<autogen>__KeyToKey__ KeyCode::SPACE, KeyCode::TAB</autogen>-->
    <autogen>
      __KeyToKey__
      KeyCode::F13, KeyCode::F8
    </autogen>
    <autogen>
      __KeyToKey__
      KeyCode::F14, KeyCode::F10
    </autogen>
    <autogen>
      __KeyToKey__
      KeyCode::F15, KeyCode::SEMICOLON, ModifierFlag::COMMAND_L
    </autogen>
    <autogen>
      __KeyToKey__
      KeyCode::F16, KeyCode::SEMICOLON, ModifierFlag::COMMAND_L, ModifierFlag::SHIFT_L,
    </autogen>
  </item>
</root>
4
jcollum

誰かがKarabiner Elementsを使用している場合、それはブロックしているものである可能性がありますChrome機能的なホットキー。[Function Keys]タブでKarabiner Elementsの設定を開き、[Use all F1、F2、etc. keys]をオンにします標準のファンクションキーとして」というのが私のトリックです。

enter image description here

0