Jordan

Results 12 comments of Jordan

Was messing around a bit with this today, looks like Tk support for drag and drop isn't great. (https://github.com/python/cpython/blob/master/Lib/tkinter/dnd.py) fcd32a8cdfc5aa67153dbb22493a6d6c199b35d2 Some random resources I was looking at: https://stackoverflow.com/questions/4151637/pyqt4-drag-and-drop-files-into-qlistwidget https://www.reddit.com/r/learnpython/comments/97z5dq/pyqt5_drag_and_drop_file_option/ http://zetcode.com/gui/pyqt5/dragdrop/

I'm also seeing this issue in vim/neovim regardless of `"antialiasingMode": "cleartype"` or `"antialiasingMode": "grayscale"`. Especially noticeable when `0` or `{` are the ending characters. ![grayscale_vim](https://user-images.githubusercontent.com/5077424/119307765-30ee9800-bc3a-11eb-9fed-9f7e0429cf8b.PNG) Although, `grayscale` seemingly fixes it...

To add on to what @curusarn said, a 3rd option of "Custom" could be useful, this would give users the ability to modify args passed to fzf for even more...

Try setting the python path in `~/projects/my_project/.vim/coc-settings.json`, also confirm you aren't overriding it globally in `~/.config/nvim/coc-settings.json` or `~/.vim/coc-settings.json` ``` "python.pythonPath": "~/projects/my_project/test_venv/bin/python" ```

Not exactly the ideal fix but I dropped coc status from my statusline and created a custom function: ``` function! StatusDiagnostic() abort let info = get(b:, 'coc_diagnostic_info', {}) if empty(info)...

@Drew-S is there a way to use the mixins you built in an HTML doc? I'm experimenting with your fork on branch `ToCplugin` & `TableOfContents` and I've created a `config.yml`...

Upgrading `next` fixes this, might need to upgrade `react` and `react-dom` too. https://github.com/vercel/next.js/issues/30078#issuecomment-958616124 https://github.com/webpack/webpack/issues/14532#issuecomment-947807590

Restarting GNOME session fixed it for me: `Alt-F2, r` Ubuntu 18.04.5 LTS GNOME 3.28.2

If I have some time over the holidays I will gladly dig into this some more as a learning experience :)