-
Notifications
You must be signed in to change notification settings - Fork 41
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
Manage the file extensions associated with texteditor #15
Comments
You can add your mimetypes here: Not sure if it makes a lot of sense to make this configurable in any way |
To be honest I do not know how to modify the lines and use the code in my environment. It is true that I could learn, but do you really think that this is enough user-friendly??? There are different users need, not only coders could be interested in editing "weird" mimetypes... By the way, Thank you for your very fast answer! |
Well if you say which mime types you want to add we can have a look |
I have two different situations in mind:
To have the possibility of opening the first mimetypes would be already really good |
For markdown there is an additional app which also has a "live demo" then: |
Ditto to spartachetto's request. My use case is .wiki files. I am using vimwiki for creating a personal knowledge base and I will mostly work on this on vim on my desktop. However, I may want to reference these remotely - so being able to preview as if 'txt' file (instead of needing to download) would be really nice. If there were a way for the admin to tell Nextcloud to treat ".wiki" or whatever like "text" that would be what I'm looking for. |
I answered my own question by reading the docs. But yes it requires admin intervention on the server so a standard user would need to ask currently. From the server (Ubuntu):
Add this, replacing 'wiki' with whatever your extension is, adding entries to the array as required. {
"wiki": ["text/plain"]
} Whenever a new file is added you can view it like plain text. However, for existing files the user needs to re-upload them. From the client machine (Linux/OS-x):
Now they will all re-upload and be viewable as text from a web browser. For syntax highlight... yes I'll think more about that. |
sorry, my mistake! |
I like to share SQL queries with nextcloud, file extension is |
Any progress in customizing file extensions? For also |
I think the best option will be to allow its configuration via admin/settings, because there are plenty of extensions that we could use (.org, .list, .toml, etc) |
Same request. The file extension I am interested in is |
Basically, we would need what we have on the desktop:
|
I found out that the texteditor associates a lot of common extensions to itself - like ps1 for powershell scripts. But it seems that they're not updated for a caching issue. Try update the cache manually, and you may notice that a lot of entrys were refreshed like here:
You may combine this with the custom mime mapping suggested here, if you want syntax highlighting for extensions that the editor doesn't know by default. I was able to create custom mappings in
This solution works for already existing files, too. Re-uploading them is not necessary here after cache update :) |
While other mime-types keep getting asked (#42 ), I'd like to explain why I have doubts on command line use and config file s editing. There are several users that use a managed instance of Nextcloud. They can have access to the admin user, but they usually do not have access to the command line or to the config files. A practical way to manage mime-types in this scenario would be great |
I have a few orgmode files that are plaintext. Do I use "text/org" or something else? |
I also would like to open .ino files in the online text editor. |
I would be happy if I could right click a file and chose "open in text editor". That or have a button to click in the details view that was "Open in text editor". Just some way to open most any file in the text editor without having to manually add each extension. |
It'd be useful to open |
I agree with reggie-mcmurtrey that a right-click or detail menu option to open any file in a text editor would handle most cases and should definitely be considered. Separately, having a list of mimetypes that open in a text editor by default is good. I don't think these approaches conflict, though, and would like to have both. That way, most of the ordinary text files will open by default in a text editor, but the user always has the option to open some non-standard file name in an editor if they choose. |
@MartinConsultingServicesInc comment reminded me of something (#15 (comment) ) 😄 |
For some of us who have a range of different file types which does not open with the code editor/text editor. I sure would like to see the ability to open files in an editor instead of just being offered to download them. For unknown extensions, the default action is to download a file when its clicked. This is not what I'd prefer. For files like .cs or .aspx file types, there is no option to open them in a default text editor. How would one go about mapping file types to make them open in a text/code editor? |
editor.js in folder app/files_texteditor/build/ tries to load "./js/supported_mimetypes.json" but fails. fallback-mimetypes are hardcoded in editor.js. Where should supported_mimetypes.json be placed to be read from editor.js? |
I would really appreciate to have the possibility to change the file extensions associated with texteditor.
Up to now I often click on some files that I would like to edit within Nextcloud and the only possibility offered is to download them.
The text was updated successfully, but these errors were encountered: