Gregory Anders

Results 58 issues of Gregory Anders
trafficstars

Update the XILINX_VER_MAIN variable to 2020.1 on the `rel-v2020.1` branch.

Running the example from the docs in the [playground](https://cyberscript.dev/play.html): ``` colors = {}: red: 0xFF0000 green: 0x00FF00 blue: 0x0000FF dump func (c): print c.red print c.green print c.blue -- Nested...

The optimizations that vim.iter uses for array-like tables don't strictly require that the underlying table has no holes. We track the head and tail positions manually and don't depend on...

With a bang `[!]`, `:terminal` opens a terminal buffer in the current window, discarding any changes to the current buffer unless `'hidden'` is set (which it is by default as...

terminal
breaking-change

The LSP quickstart can act as our true "entrypoint" for answering the question "How do I use LSP in Neovim?" As such, it can be a little more beginniner-friendly than...

documentation

For many small/simple functions (like those found in shared.lua), the runtime of vim.validate can far exceed the runtime of the function itself. For these simple functions, prefer a simple assertion...

performance

Auto-completion and auto-formatting are common (though certainly not universal) features that many users want. We can document how to accomplish this in lsp-quickstart so that users that do want these...

documentation
lsp

The inline IWYU comment pragmas are not always possible to use because users may not want to put tool-specific directives in their code. In my case, I use clangd when...

enhancement

**Is your feature request related to a problem? Please describe.** Git has the ability to sort the output of `git branch` based on last commit date with `git branch --sort=-committerdate`...

polish🪒🐃