githorse
githorse
Hi @MuhammadSawalhy -- ok, you're saying I need to switch from `vim-commentary` to the [Comment.nvim](https://github.com/numToStr/Comment.nvim) to make this work? I added [nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring) but that did not fix the issue using...
Another simple illustration at [this StackOverflow question](https://stackoverflow.com/questions/77061693/why-does-extending-a-generic-break-this-conditional-type): ``` function isFoxy(x: T, flag: T extends object ? string : number) { console.log(`hmm, not sure`, x, flag) } type Fox = {...
Seeing what I'm guessing is the same issue here: https://user-images.githubusercontent.com/8271372/222501349-2f5be35b-d6dc-47bf-a63e-248bbf25a562.mp4 That is -- certain emojis, but not all (presumably, the ambiguous ones) really hose the input in Vim. The same...
Is this still true in 2024? Do I need `unsafe-eval` and/or `wasm-usafe-eval` in my CSP use sql.js?
I'm on `2.9.1` (Linux Mint 20 `apt-get`). Just upgraded but I still see it so I assume my version is behind. However, this question is more general than that --...
@mbmohib Unfortunately not. At the moment I'm just using the built-in select functionality, like this: ``` { ... muiTableBodyCellEditTextFieldProps: { select: true, options: myOptions.map(({value, label}) => ( {label} ) }...
@Drecula could you elaborate? What do I do with `table.options.data`?
Thanks @hillaryychan -- this definitely seems to be due to the large number of files in my home directory. Unfortunately that does make the extension pretty unusable for me, at...
I was tripped up by `exceptEmojis` as well because I passed in ids with the colons around them, like this: ``` exceptEmojis={[':+1:']} ``` ... when that should have been ```...
Same problem. [This Stackexchange question](https://vi.stackexchange.com/questions/18372/how-to-add-javascript-and-jsx-comments-in-the-same-js-file) claims all I need to make JSX/TSX work with `vim-commentary` is the additional plugins [vim-context-commentstring](https://github.com/suy/vim-context-commentstring/) and [vim-jsx-pretty](https://github.com/MaxMEllon/vim-jsx-pretty), but the solution there doesn't work for me....