Skip to content

Instantly share code, notes, and snippets.

View icon-tech-mb's full-sized avatar

Michael Balzer icon-tech-mb

  • ICON Technologies
View GitHub Profile
@icon-tech-mb
icon-tech-mb / labview_mods.ini
Last active December 4, 2023 01:25
LabVIEW.ini modifications to improve usability and speed
; Disable live view of the code being updated as it is dragged around the block diagram. This can be a big performance hit.
; User can also press 'x' while dragging to disable the feature when set to True
; https://forums.ni.com/t5/LabVIEW/Labview-2016-new-improvments-to-selecting-moving-and-resizing/m-p/3337796/highlight/true#M979928
LiveDrag=False
; Disable live selection highlight of items on front panel and block diagram.
; https://forums.ni.com/t5/LabVIEW/Slow-and-laggy-Front-Panel-selection-at-edit-time/m-p/3853567
LiveSelection=False
; Disable the maintain connected wire logic when dragging code into and out of structures
; User can also press 'w' while dragging to disable the feature when set to True
DragAutoWire=False
@icon-tech-mb
icon-tech-mb / LabVIEW.ahk
Last active October 23, 2018 08:43
AutoHotkey shortcuts for LabVIEW
#NoEnv
; This setting can miss clicks when running LabVIEW in a VM. Comment it out if this is an issue.
SendMode Input
SetTitleMatchMode, 2
; Apply shortcuts to any LabVIEW window
#IfWinActive ahk_class LVDChild
; Middle mouse modifiers
; Use middle mouse rather than ctrl+shift+mouse to activate the grab/pan tool
MButton::send {ctrl down}{shift down}{MButton down}{shift up}{ctrl up}