You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/manuals/editor-preferences.md
+20-4
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,6 @@ Track Active Tab in Asset Browser
29
29
Lint Code on Build
30
30
: Enables [code linting](/manuals/writing-code/#linting-configuration) when the project is built. This option is enabled by default, but can be disabled if the linting in a large project takes too much time.
31
31
32
-
Path to custom keymap
33
-
: Absolute path to a file containing [custom keyboard shortcuts](/manuals/editor-keyboard-shortcuts).
34
-
35
32
Engine Arguments
36
33
: Arguments that will be passed to the dmengine executable when the editor builds and runs.
37
34
Use one argument per line. For example:
@@ -58,6 +55,9 @@ Open File at Line
58
55
Code editor font
59
56
: Name of a system installed font to use in the code editor.
60
57
58
+
Zoom on Scroll
59
+
: Whether to change the font size when scrolling in the code editor while holding Cmd/Ctrl button.
60
+
61
61
62
62
### Open script files in Visual Studio Code
63
63
@@ -84,6 +84,12 @@ The `.` character here is required to open the entire workspace, not an individu
84
84
Build Server
85
85
: URL to the build server used when building a project containing [native extensions](/manuals/extensions). It is possible to add a username and access token to the URL for authenticated access to the build server. Use the following notation to specify the username and access token: `username:[email protected]`. Authenticated access is required for Nintendo Switch builds and when running your own build server instance with authentication enabled ([refer to the build server documentation](https://github.com/defold/extender/blob/dev/README_SECURITY.md) for more information). The username and password can also be set as the system environment variables `DM_EXTENDER_USERNAME` and `DM_EXTENDER_PASSWORD`.
86
86
87
+
Build Server Username
88
+
: username for authentication.
89
+
90
+
Build Server Password
91
+
: password for authentication, will be stored encrypted in the preferences file.
92
+
87
93
Build Server Headers
88
94
: additional headers to the build server when building native extensions. It's important for using CloudFlare service or similar services with extender.
89
95
@@ -95,4 +101,14 @@ ADB path
95
101
: Path to [ADB](https://developer.android.com/tools/adb) command line tool installed on this system. If you have ADB installed on your system, the Defold editor will use it to install and run bundled Android APKs to a connected Android Device. By default, the editor checks if ADB is installed in well-known locations, so you only need to specify the path if you have ADB installed in a custom location.
96
102
97
103
ios-deploy path
98
-
: Path to [ios-deploy](https://github.com/ios-control/ios-deploy) command line tools installed on this system (only relevant for macOS). Similarly to the ADB path, the Defold editor will use this tool to install and run bundled iOS applications on a connected iPhone. By default, the editor checks if ios-deploy is installed in well-known locations, so you only need to specify the path if you use a custom installation of ios-deploy.
104
+
: Path to [ios-deploy](https://github.com/ios-control/ios-deploy) command line tools installed on this system (only relevant for macOS). Similarly to the ADB path, the Defold editor will use this tool to install and run bundled iOS applications on a connected iPhone. By default, the editor checks if ios-deploy is installed in well-known locations, so you only need to specify the path if you use a custom installation of ios-deploy.
105
+
106
+
## Keymap
107
+
108
+

109
+
110
+
You can configure the editor shortcuts, both adding custom and removing the built-in ones. Use context menu on individual commands in the shortcut table to edit the shortcuts, or double-click/press <kbd>Enter</kbd> to open a new shortcut popup.
111
+
112
+
Some shortcuts might have warnings: they are displayed using orange color. Hover over the shortcut to see the warning. Typical warnings are:
113
+
- typeable shortcuts: the selected shortcut is typeable in a text inputs. Make sure the command is off in the code editing / text input contexts.
114
+
- conflicts: the same shortcut is assigned to multiple different commands. Make sure at most one command is enabled when the shortcut is invoked, otherwise the editor will execute one of the assigned commands in an undefined manner.
Copy file name to clipboardExpand all lines: docs/en/manuals/editor.md
-4
Original file line number
Diff line number
Diff line change
@@ -162,10 +162,6 @@ The editor will automatically check for updates. When an update is detected it w
162
162
163
163
You can modify the settings of the editor [from the Preferences window](/manuals/editor-preferences).
164
164
165
-
## Keyboard shortcuts
166
-
167
-
Keyboard shortcuts and how to customize them can be seen in the [keyboard shortcut manual](/manuals/editor-keyboard-shortcuts).
168
-
169
165
## Editor logs
170
166
If you run into a problem with the editor and need to [report an issue](/manuals/getting-help/#getting-help) it is a good idea to provide log files from the editor itself. The editor logs files can be found here:
0 commit comments