Skip to content

Instantly share code, notes, and snippets.

@daveaseeman
Created July 20, 2015 16:30
Show Gist options
  • Save daveaseeman/43ed9101e93ab25507b1 to your computer and use it in GitHub Desktop.
Save daveaseeman/43ed9101e93ab25507b1 to your computer and use it in GitHub Desktop.
Solidworks 2015 Keyboard Shortcuts
User-Defined Toolbar
User-Defined Mouse Gestures
Hide/Show Display Pane
Hide/Show Feature Manager Tree
Hide/Show All Active Toolbars
Full Screen Mode On/Off
Hide/Show Task Pane
Collapse All Items in Feature Tree
Scroll to Top of Feature Tree
Scroll to Bottom of Feature Tree
S
Right Click and Drag
F8
F9
F10
F11
Ctrl+F1
Shift+C
Home
End
New File
Open File
Close File
Save File
Print File
Undo
Redo
Cut
Copy
Paste
Quick Rebuild
Forced (Total) Rebuild
Delete
Repeat Last Command
Help Menu
Rename Selected Feature
Spell Checker
Search SOLIDWORKS Help
Search Knowledge Base
Search Community Forum
Search Commands
Ctrl+N
Ctrl+O
Ctrl+W
Ctrl+S
Ctrl+P
Ctrl+Z
Ctrl+Y
Ctrl+X
Ctrl+C
Ctrl+V
Ctrl+B
Ctrl+Q
Delete
Enter
H
F2
F7
H
K
O
W
General Shortcut
New File Ctrl+N
Open File Ctrl+O
Close File Ctrl+W
Save File Ctrl+S
Print File Ctrl+P
Undo Ctrl+Z
Redo Ctrl+Y
Cut Ctrl+X
Copy Ctrl+C
Paste Ctrl+V
Quick Rebuild Ctrl+B
Forced (Total) Rebuild Ctrl+Q
Delete Delete
Repeat Last Command Enter
Help Menu H
Rename Selected Feature F2
Spell Checker F7
Search SOLIDWORKS Help H
Search Knowledge Base K
Search Community Forum O
Search Commands W
Views Shortcut
Toolbar of View Orientations Spacebar
View Selector cube Ctrl+Spacebar
Front View Ctrl+1
Back View Ctrl+2
Left View Ctrl+3
Right View Ctrl+4
Top View Ctrl+5
Bottom View Ctrl+6
Isometric View Ctrl+7
Normal to View Ctrl+8
Previous View Ctrl+Shift+Z
Take Snapshot Alt+Spacebar
Zoom Shortcut
Zoom Out Z
Zoom In Shift+Z
Zoom to Fit F
Magnifying Glass G
Rotate View 15 Degrees Arrow Keys
Rotate View 90 Degrees Shift+Arrow Keys
Pan View Ctrl+Arrow Keys
Roll View to Normal Screen Alt+L/R Arrow Keys
Display Shortcut
User-Defined Toolbar S
User-Defined Mouse Gestures Right Click and Drag
Hide/Show Display Pane F8
Hide/Show Feature Manager Tree F9
Hide/Show All Active Toolbars F10
Full Screen Mode On/Off F11
Hide/Show Task Pane Ctrl+F1
Collapse All Items in Feature Tree Shift+C
Scroll to Top of Feature Tree Home
Scroll to Bottom of Feature Tree End
Recommended Shortcut
Open File Properties Shift+P
View Planes P
View Sketches Ctrl+K
View Sketch Relations R
Smart Dimension Tool On/Off D
Measure Tool On/Off M
Windows, Tile Vertically T
Windows, Close All Alt+W
# Usage:
# $ ruby shortcuts.rb
# note: make sure you have "general.txt" and other files in same directory
files = ["general", "views", "zoom", "display", "recommended"];
files.each do |table|
contents = "- [#{table.capitalize}](##{table})"
File.open("shortcuts.md", "a"){ |file| file.puts contents }
end
files.each do |name|
# Name the path
path = name + '.txt'
# Push lines of path to an array
array = []
file=File.open(path,"r").each { |line| array.push(line) }
# Add title to table
header = "\n<a name='##{name}'>#{name.capitalize}</a> | Shortcut\n--- | ---\n"
File.open("shortcuts.md", "a"){ |file| file.puts header }
# Iterate through file to add items to table
num_entries = array.length / 2
puts num_entries
(0...num_entries).each do |ii|
entry = array[ii] + " | " + array[ii+num_entries]
entry = entry.split.join(" ")
puts entry
File.open("shortcuts.md", "a"){ |file| file.puts entry }
end
end
Toolbar of View Orientations
View Selector cube
Front View
Back View
Left View
Right View
Top View
Bottom View
Isometric View
Normal to View
Previous View
Take Snapshot
Spacebar
Ctrl+Spacebar
Ctrl+1
Ctrl+2
Ctrl+3
Ctrl+4
Ctrl+5
Ctrl+6
Ctrl+7
Ctrl+8
Ctrl+Shift+Z
Alt+Spacebar
Zoom Out
Zoom In
Zoom to Fit
Magnifying Glass
Rotate View 15 Degrees
Rotate View 90 Degrees
Pan View
Roll View to Normal Screen
Z
Shift+Z
F
G
Arrow Keys
Shift+Arrow Keys
Ctrl+Arrow Keys
Alt+L/R Arrow Keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment