Kiyoon Kim

Results 31 comments of Kiyoon Kim

I recommend using this plugin with a more modern file explorer. You may want to use the explorer's api to even interact with it. Check out the demo of [treemux](https://github.com/kiyoon/treemux)...

Hi, in my neovim plugin, I used Notebook's front-end APIs to interact with Notebook through neovim. For example, I used `Jupyter.notebook. ...` to set cell text and execute cells etc....

@gutow Thanks for the input. Since my plugin is to interact front end mostly, it is much better to use a front end API than making an extension by design....

Here is a list of things I used so far. ```js Jupyter.notebook.ncells() Jupyter.notebook.cells_to_code([0]) Jupyter.notebook.cells_to_markdown([0]) Jupyter.notebook.get_cell(0).set_text(arguments[0]) Jupyter.notebook.get_cell(0).render() Jupyter.notebook.get_cells() Jupyter.notebook.insert_cell_below() Jupyter.notebook.delete_cell(-1) Jupyter.notebook.scroll_cell_percent(arguments[0], arguments[1], 0) Jupyter.notebook.toJSON() // this is to download notebook Jupyter.notebook.scroll_manager.is_cell_visible(Jupyter.notebook.get_cell(arguments[0]))...

@jasongrout Wow, thanks a lot for making this for me! Regarding Selenium, I didn't know there are modern alternatives to Selenium. For a simple plugin like that Selenium met all...

> For other alternatives for controlling the browser, [this article](https://blog.logrocket.com/playwright-vs-puppeteer/) talks about some of them. I'm not sure if Playwright or Cypress is a better fit for you than Selenium....

Thanks for your work, @kylechui . Closing this in favour of `nvim-surround`. I think the difficulty of implementing this here is that it is the only exceptional text object that...

I'm closing the issue as it seems to be fixed, but feel free to re-open if you still have issues!

Closing as completed with #343

Closing as completed.