Joseph D. Purcell
Joseph D. Purcell
I experience the issue described in this ticket.
Thanks @charliegreen! Here's exactly what I did: ``` apt-get install mono-runtime apt-get install mono-devel mkdir ~/Downloads/nbtedit cd ~/Downloads/nbtedit git clone [email protected]:jaquadro/NBTExplorer.git cd NBTExplorer/ git clone [email protected]:minecraft-dotnet/Substrate.git cd Substrate/ xbuild ../NBTExplorer/NBTExplorer.csproj...
I have an update and I want to do a recording but for some reason my local isn't working (networking issue I believe). On iOS, when you edit a WYSIWYG...
I do see a discussion regarding spell check in the browser https://github.com/directus/directus/issues/14409, but that is different functionality. I see that the Markdown field uses Codemirror, and its possible that Codemirror...
It looks that CodeMirror (v6 and also v5?) support configuring autocapitalize and autocorrect behavior, see https://github.com/codemirror/dev/issues/1020#issuecomment-1333748390. I can see that currently `autocorrect="off"` and `autocapitalize="none"` is set on the contenteditable element:...
# Should these functions be supported by default? Here I attempt to give reasoning for or against having autocapitalization, autopunctuation, and autocorrect enabled by default in Directus' Markdown field. I...
I like @kenzik's idea. Here is a diff that I got to work in Directus on iOS: ```diff diff --git a/app/src/interfaces/input-rich-text-md/input-rich-text-md.vue b/app/src/interfaces/input-rich-text-md/input-rich-text-md.vue index 1cb44d71a..59dd7837d 100644 --- a/app/src/interfaces/input-rich-text-md/input-rich-text-md.vue +++ b/app/src/interfaces/input-rich-text-md/input-rich-text-md.vue @@...
I've created a ticket over at CodeMirror5: https://github.com/codemirror/codemirror5/issues/7009. Hopefully I'm missing something simple.
I am unable to make progress on addressing the issue with CodeMirror5, see my latest comment over there https://github.com/codemirror/codemirror5/issues/7009#issuecomment-1341765361. I believe CodeMirror5 does not support autocomplete and autocorrect on iOS....
@paescuj CodeMirror6 has proper support, based on threads I read and testing. V6 is a complete rewrite as I understand and addresses several important architectural issues. If/when I get a...