Nathan Thomas

Results 57 comments of Nathan Thomas

I think adding support for user defined filetypes is a good idea. However, I won't include sourcing other `ftdetect` files in the plugin since its purpose is to avoid creating...

It seems that this is an ordering issue. The regexes always run after the extension and literal tables, so they will get overridden. Maybe I'll need to keep a separate...

Because this plugin is relatively new, there will still be edge cases that need to be sorted out. I might do this once it reaches a more stable state.

This is happening because you're matching all filenames and your `autocmd` is being run before `filetype.nvim`'s. Not sure there's anything helpful I can do here except say that the second...

I'll consider adding this. For now, try using environment variables. Mac/Linux: ```bash export HTTP_PROXY=10.10.1.10:3128 export HTTPS_PROXY=10.10.1.11:1080 export FTP_PROXY=10.10.1.10:3128 ``` Windows: ```powershell set http_proxy=10.10.1.10:3128 set https_proxy=10.10.1.11:1080 set ftp_proxy=10.10.1.10:3128 ```

The output of `defaults read org.vim.MacVim | grep MM`: ``` MMAppearanceModeSelection = 0; MMAutosaveColumns = 177; MMAutosaveRows = 45; MMCurrentPreferencePane = General; MMLastWindowClosedBehavior = 2; MMNoTitleBarWindow = 0; MMSuppressTerminationAlert =...

Can you open separate requests for the overflow char and unit tests since they are not related to each other?

This needs to be split into multiple PRs so that I can review. 1. Deezer changes 2. Subfolder changes 3. DB changes

Yes any way is fine. But each one should be one feature or in one category. The breaking DB change needs to be separate for sure.

Should be fixed by #676, which is live on `dev`