fxmontigny / ng2-ace-editor

Ace editor integration with typescript for angular 4 - 5
MIT License
199 stars 92 forks source link

how to text-wrap #51

Open danishwebindia opened 7 years ago

danishwebindia commented 7 years ago

my code is:

<ace-editor [(text)]="endpoint.Request" [theme]="'eclipse'" [readOnly]="true" #editor style="min-height:300px;">

GopiAnnan commented 6 years ago

For editor have to set Options like below ` options:any = {maxLines: 1000, printMargin: false, selectionStyle: 'line', behavioursEnabled: true, wrapBehavioursEnabled: true, autoScrollEditorIntoView: true, wrap: true };

<div ace-editor [(text)]="generateQuery" [mode]="'sqlserver'" [theme]="'sqlserver'" [options]="options"

For more configure options refer below https://github.com/ajaxorg/ace/wiki/Configuring-Ace `