Nathan Lam

Results 10 comments of Nathan Lam

I agree that would be a great addition. I'm sure it's possible to embed OneDrive videos but unfortunately I don't have a OneDrive account so I can't test it myself....

You should put the responsive video css into whatever stylesheet you're loading into your `html` page. So for instance this is one of my pages in the `_includes` directory: ```...

This method is only for inserting videos onto Jekyll static webpages. If you're trying to embed videos onto the github repo (as in the README.md), this method will not work....

I have not found a fix for the black box. The problem may be because your source `.mp4` video is a file in the repository. I would recommend just uploading...

Could you provide more details and a minimum reproducible example? The embed Youtube video on the demo page seems to still be working

So the fix was changing ``` src="..../embed/{{ include.id }}" ``` to ``` src="..../embed/{{include.id}}" ``` Does anyone know a reason why that fixes it? If it seems to work, I'll patch...

Sorry I've never encountered that CORS error. My guess is that you haven't turned on link sharing for your Google drive video. Take a look at the [embed Google Drive...

**I've finally found a way to emulate [terryma/vim-multiple-cursors](https://github.com/terryma/vim-multiple-cursors) in VSCode.** I've been using Cygwin + Vim and the `vim-multiple-cursors` plugin for years and finally switched over to VSCode but couldn't...

Yes, I believe the root problem involves selecting cursors in `VISUAL BLOCK` mode. Here's a visualization of the already working behavior (no visual block). ![1](https://user-images.githubusercontent.com/13230589/170845168-0999a341-c7bc-4582-bb44-d51a52cdddae.gif) The editor state: 1. `NORMAL`...

Yes you could map to `Ctrl + D` or any other key as well, although I've never tested it myself. You may have to overwrite some settings to ensure that...