-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Add some pizzazz to our menu bar component #167
Changes from 5 commits
e75cc2d
1fe5c94
b84e4f5
7c975d7
91f0e1f
e8b2c1d
79a0576
ba7ee9e
9f85fdd
b02ae3b
25e0308
800fa6a
b8bb78f
93b1d83
66525a4
a54b264
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,16 @@ angular.module('kibibitCodeEditor') | |
vm.undoManager = editor.getSession().getUndoManager(); | ||
SettingsService.settings.currentUndoManager = vm.undoManager; | ||
SettingsService.settings.currentEditor = editor; | ||
/* This is temporarily needed to remove the console.warning ace.js shows | ||
* that will be removed in the next version. | ||
* | ||
* This message is: | ||
* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Illegal trailing whitespace |
||
* "Automatically scrolling cursor into view after selection change | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Illegal trailing whitespace |
||
* this will be disabled in the next version | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Illegal trailing whitespace |
||
* set editor.$blockScrolling = Infinity to disable this message" | ||
*/ | ||
editor.$blockScrolling = Infinity; | ||
initEditor(editor, editorSettings); | ||
} | ||
|
||
|
@@ -139,7 +149,8 @@ angular.module('kibibitCodeEditor') | |
'fontSize': settings.fontSize, | ||
'showGutter': settings.isGutter, | ||
'useSoftTabs': settings.isSoftTabs, | ||
'showPrintMargin': settings.ruler | ||
'showPrintMargin': settings.ruler, | ||
'scrollPastEnd': true | ||
}); | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Illegal trailing whitespace