mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Enable code autocompletion in ACE editor
This commit is contained in:
parent
93e892561e
commit
e351cbacc0
@ -39,6 +39,7 @@
|
|||||||
[(text)]="code"
|
[(text)]="code"
|
||||||
[mode]="language"
|
[mode]="language"
|
||||||
[theme]="theme"
|
[theme]="theme"
|
||||||
|
[options]="options"
|
||||||
class="tfw-ace-editor"
|
class="tfw-ace-editor"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
@ -2,6 +2,7 @@ import { ChangeDetectorRef, Component, OnInit } from '@angular/core';
|
|||||||
|
|
||||||
import * as brace from 'brace';
|
import * as brace from 'brace';
|
||||||
import 'brace/ext/modelist';
|
import 'brace/ext/modelist';
|
||||||
|
import 'brace/ext/language_tools';
|
||||||
|
|
||||||
import 'brace/mode/c_cpp';
|
import 'brace/mode/c_cpp';
|
||||||
import 'brace/mode/csharp';
|
import 'brace/mode/csharp';
|
||||||
@ -19,6 +20,8 @@ import { DeploymentNotificationService } from '../services/deployment-notificati
|
|||||||
import { config } from '../config';
|
import { config } from '../config';
|
||||||
|
|
||||||
const modelist = brace.acequire('ace/ext/modelist');
|
const modelist = brace.acequire('ace/ext/modelist');
|
||||||
|
const langTools = brace.acequire('ace/ext/language_tools');
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-ide',
|
selector: 'app-ide',
|
||||||
@ -31,6 +34,9 @@ export class IdeComponent implements OnInit {
|
|||||||
code: string = config.ide.defaultCode;
|
code: string = config.ide.defaultCode;
|
||||||
language: string = config.ide.defaultLanguage;
|
language: string = config.ide.defaultLanguage;
|
||||||
theme = 'cobalt';
|
theme = 'cobalt';
|
||||||
|
options: any = {enableBasicAutocompletion: true,
|
||||||
|
enableSnippets: true,
|
||||||
|
enableLiveAutocompletion: true};
|
||||||
directory = '';
|
directory = '';
|
||||||
files: string[];
|
files: string[];
|
||||||
codeState = 'SAVED';
|
codeState = 'SAVED';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user