We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270454e commit c885ca9Copy full SHA for c885ca9
src/views/Settings.js
@@ -13,6 +13,7 @@ export const defaultSettings = {
13
dampingFactor: 0.8,
14
fov: 75,
15
textYValue: 0,
16
+ externalEditor: "/usr/bin/code"
17
};
18
19
function Settings() {
@@ -72,6 +73,19 @@ function Settings() {
72
73
<ToolBar page="settings" />
74
<Container className="settings-page">
75
<Form>
76
+ <fieldset>
77
+ <legend>• General ⚙️</legend>
78
+ <InputGroup>
79
+ <InputGroup.Text>External Editor</InputGroup.Text>
80
+ <Form.Control
81
+ onChange={handleChange}
82
+ id="externalEditor"
83
+ type="text"
84
+ min={1}
85
+ aria-label="ExternalEditor"
86
+ />
87
+ </InputGroup>
88
+ </fieldset>
89
<fieldset>
90
<legend>• View Layouts 🪟</legend>
91
<Form.Check
0 commit comments