Skip to content

Instantly share code, notes, and snippets.

@02015678
Last active November 8, 2023 11:35
Show Gist options
  • Select an option

  • Save 02015678/cae341f4262fa73325e30eb925a21659 to your computer and use it in GitHub Desktop.

Select an option

Save 02015678/cae341f4262fa73325e30eb925a21659 to your computer and use it in GitHub Desktop.
Bind key setting file for Cadence Virtuoso Schematic Composer
; Bindkey setting for Cadence Virtuoso Schematic Composer
; Author: Garrett Zhou
; Reference: Cadence build-in example schBindKeys.il
; 9 to add net probe, SHIFT+9 to delete net probe, CTRL+9 to delete all probe
; Mouse-Btn1 Double click to Descend, Mouse-Btn3 Double click to Return
when( isCallable(`schGetEnv)
hiSetBindKeys("Schematics" list(
list("<Key>9" "geEnterAddNetProbe()" )
list("<Key>(" "geEnterDeleteNetProbe()" )
list("Ctrl<Key>9" "geDeleteAllProbe()" )
list("None<Btn1Down>(2)" "schSingleSelectPt(),schHiDescendRead()" "mouseAddPt(t)" )
list("None<Btn3Down>(2)" "schSingleSelectPt(),schHiReturn()" "mouseAddPt(t)" )
))
)
@chinli72
Copy link
Copy Markdown

chinli72 commented Feb 3, 2023

Very handy. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment