[LINUX] [Blender] List of shortcut keys of Python Console that comes standard with Blender

Here is a summary of Python Console shortcuts that come standard with Blender. I am writing as far as I can confirm. There may be some that can be used as standard in the OS, but please understand that it is a shortcut key that seems to be useful in the Python Console because it has not been confirmed.

Windows Mac Linux motion
Shift + F4 shift + fn + F4 Shift + F4 Open Python Console
Return the history entered in the past
Advance the history entered in the past
Tab tab Tab Indent
Shift + tab shift + tab shift + tab Unindent
Home ⌘ + ← Home Move the cursor to the beginning of the line
End ⌘ + → End Move cursor to end of line
Ctrl + ← control + ←
fn + ←
Ctrl + ← Move the cursor to the left word by word
Ctrl + → control + →
fn + →
Ctrl + → Move the cursor to the right word by word
Ctrl + Backspace control + delete Ctrl + Backspace Delete word by word from the cursor position to the beginning of the line
Ctrl + Delete control + fn + delete Ctrl + Delete Delete word by word from the cursor position toward the end of the line
Shift + Enter shift + return Shift + Enter Delete line
Ctrl + Space control + space Ctrl + Space Source code completion
Ctrl + ↑
Ctrl + ↓
control + ↑
control + ↓
Ctrl + ↑
Ctrl + ↓
Full screen console/Release
Ctrl + C control + C Ctrl + C Copy the selection to the clipboard
Ctrl + V control + V Ctrl + V Paste from clipboard
Shift + Ctrl + C shift + control + C Shift + Ctrl + C Copy all scripts executed after opening the Python Console
The execution result is also copied, but at the beginning of the line "#~Is automatically commented on

In order to use the shortcut on Mac, it is necessary to cancel the assignment of control and ⌘ that are assigned to Mission Control etc. as standard according to the following procedure.

  1. Click "System Preferences ..."-
  2. Click "Keyboard"
  3. Click the "Shortcuts" tab
  4. Unassign the shortcut you want to use in Blender Python Console

Recommended Posts

[Blender] List of shortcut keys of Python Console that comes standard with Blender
Clogged with python update of GCP console ①
UnicodeEncodeError struggle with standard output of python3
Clogged with python update of GCP console ② (Solution)
I checked the list of shortcut keys of Jupyter
List of shortcut keys dedicated to all yourself
One-liner that outputs 10000 digits of pi with Python
[Blender x Python] Think of code with symbols
List of python modules
Run Blender with python
Operate Blender with Python
Initialize list with python
[For beginners] Summary of standard input in Python (with explanation)
Get a list of purchased DMM eBooks with Python + Selenium
Python: Create a dictionary from a list of keys and values
[Python3] List of sites that I referred to when I started Python
Summary of Python3 list operations
[Python] Copy of multidimensional list
[Understanding / application of with syntax] Flexible switching of Python standard output destination
I tried to create a list of prime numbers with python
The story of making a standard driver for db with python.
Get a list of files in a folder with python without a path
The story of making a module that skips mail with python
[Python] A program that rotates the contents of the list to the left
Handle Base91 keys with python + redis.
Matrix representation with Python standard input
Getting Started with Python Basics of Python
Convert list to DataFrame with python
Comply with Python coding standard PEP8
This and that of python properties
Life game with Python! (Conway's Game of Life)
10 functions of "language with battery" python
Implementation of Dijkstra's algorithm with python
RPC completed with standard Python3 modules
Coexistence of Python2 and 3 with CircleCI (1.0)
Easy modeling with Blender and Python
About the basics list of Python basics
Get started with Python in Blender
Basic study of OpenCV with Python
Basic summary of scraping with Requests that beginners can absolutely understand [Python]
Get a list of packages installed in your current environment with python
[Python] How to put any number of standard inputs in a list
[Introduction to Python] How to sort the contents of a list efficiently with list sort
"Manim" that can draw animation of mathematical formulas and graphs with Python
Receive a list of the results of parallel processing in Python with starmap
I tried to streamline the standard role of new employees with Python
The result of making the first thing that works with Python (image recognition)
I measured the speed of list comprehension, for and while with python2.7.