Lyndsy Simon
Lyndsy Simon
I'm just getting started as well, but here is the entirety of my `coq.lua` at the moment, and auto_start is working for me: ```lua vim.g.coq_settings = { keymap = {...
I'm going to need this as well, and may be able to help implement it. My use case: With the introduction of the Apple M1 series (and their `arm64` architecture),...
I have the same issue - Neovim 0.4.4 on macOS Big Sur. I'll hack on it when I get a bit if no one else is up to it. Vimscript...
This comment is intended as a place to put my observations as I'm debugging; I'll be editing it to update thoughts as I go. In `s:Render` in `renderer.vim`, [this line](https://github.com/liuchengxu/vista.vim/blob/954754c830d2ca7da3157cdea029c8d50021d0bc/autoload/vista/renderer.vim#L75)...
I just discovered this project and am interested in helping, but don't have enough context yet to make any concrete suggestions. Once I figure out the out-of-the-box functionality, I know...
> @lyndsysimon what would integration with Telescope do? I still didn't expose any particular API publicly , since no one showed interest in it. Let me know what you would...
Me too. ## Steps to reproduce 1. Start a repl 2. In the repl window, enter `(+ 1 1)` ## Installed packages ``` Built-in Atom Packages (89) ├── [email protected] ├──...
@jasongilman The problem only occurs when I use the "Toggle Current Project Clj" command to start a repl, but not when I connect to an existing nrepl server. ### Stacktrace:...
It appears that Flask also treats multiple successive slashes as a single slash, for what it's worth.
The syntax for defining a column of type `text[]` is: ```kotlin object Foo : Table("foo") { val values = textArray("values") } ``` There are two approaches I see to expanding...