Autocomplete conflict #46
Locked
legendSabbir
started this conversation in
General
Replies: 2 comments 42 replies
-
|
Hey @legendSabbir ,
If you could provide more information about other bugs that would be really appreciated. I hope I answered to all questions |
Beta Was this translation helpful? Give feedback.
42 replies
-
|
@legend-sabbir there is no public api in ace, you need to use a hack similar to editor.onTextInput = function(text) {
var keys = require('ace/lib/keys')
editor.onCommandKey({}, keys.KEY_MODS["cmd"] , keys[text] || text.charCodeAt(0))
delete editor.onTextInput
}For general questions about ace, like this, or for feature request like support for Bracket pair colorization, https://github.com/ajaxorg/ace/discussions is a better place. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The snippets are added via plugin in Acode app . snippet plugin .
The issue is when i use ace-linters it blocks these custom snippets.
also when using css the autocompletemenu
inserts text like "..container" 2 dots . This only happens if i start typing with dot for classes .
In html file local suggestions doesn't showup
and many more small issues .
i've used webworker method . I dont know how to use it via websocket .
Anyway you can build a ace-linters plugin for the app. Acode app has a store for plugin .
Acode plugin Docs
If you need help for things like where to start and others i can help you .
Many developers use mobile phone for coding and acode is a great app . It's just lacking lsp
Beta Was this translation helpful? Give feedback.
All reactions