Downloads:
7,529
Downloads of v 0.13.0:
632
Last Update:
08 Jun 2024
Package Maintainer(s):
Software Author(s):
- Keith Simmons
Tags:
neovim vim rust vulkan skia gpu neovim-guis- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Neovide (Install)
This is not the latest version of Neovide (Install) available.
- 1
- 2
- 3
0.13.0 | Updated: 08 Jun 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
7,529
Downloads of v 0.13.0:
632
Maintainer(s):
Software Author(s):
- Keith Simmons
Neovide (Install) 0.13.0
This is not the latest version of Neovide (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Keith Simmons. The inclusion of Keith Simmons trademark(s), if any, upon this webpage is solely to identify Keith Simmons goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Neovide (Install), run the following command from the command line or from PowerShell:
To upgrade Neovide (Install), run the following command from the command line or from PowerShell:
To uninstall Neovide (Install), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download neovide.install --internalize --version=0.13.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade neovide.install -y --source="'INTERNAL REPO URL'" --version="'0.13.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade neovide.install -y --source="'INTERNAL REPO URL'" --version="'0.13.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install neovide.install
win_chocolatey:
name: neovide.install
version: '0.13.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'neovide.install' do
action :install
source 'INTERNAL REPO URL'
version '0.13.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller neovide.install
{
Name = "neovide.install"
Version = "0.13.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'neovide.install':
ensure => '0.13.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 08 Jun 2024.
This is a simple graphical user interface for Neovim (an aggressively refactored and updated
Vim editor). Where possible there are some graphical improvements, but functionally it should act like the terminal UI.
Features
Should be a standard fully featured Neovim GUI. Beyond that there are some visual niceties:
Ligatures
Supports ligatures and font shaping.
Animated Cursor
Cursor animates into position with a smear effect to improve tracking of cursor position.
Smooth Scrolling
Scroll operations on buffers in neovim will be animated smoothly pixel wise rather than line by line at a time. Note, multigrid must be
enabled for this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Animated Windows
Windows animate into position when they are moved making it easier to see how layout changes happen. Note, multigrid must be enabled for
this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Blurred Floating Windows
The backgrounds of floating windows are blurred improving the visual separation between foreground and background from
built in window transparency. Note, multigrid must be enabled for this to work.
https://github.com/neovide/neovide/wiki/Configuration#multigrid
Emoji Support
Font fallback supports rendering of emoji not contained in the configured font.
WSL Support
Neovide supports displaying a full gui window from inside wsl via the --wsl
command argument. Communication is passed via standard io into the wsl copy of neovim providing identical experience similar to visual studio code's remote editing https://code.visualstudio.com/docs/remote/remote-overview.
Remote TCP Support
Neovide supports connecting to a remote instance of Neovim over a TCP socket via the --remote-tcp
command argument. This would allow you to run Neovim on a remote machine and use the GUI on your local machine, connecting over the network.
Launch Neovim as a TCP server (on port 6666) by running:
nvim --headless --listen localhost:6666
And then connect to it using:
/path/to/neovide --remote-tcp=localhost:6666
By specifying to listen on localhost, you only allow connections from your local computer. If you are actually doing this over a network you will want to use SSH port forwarding for security, and then connect as before.
ssh -L 6666:localhost:6666 ip.of.other.machine nvim --headless --listen localhost:6666
Finally, if you would like to leave the neovim server running, close the neovide application window instead of issuing a :q
command.
Some Nonsense ;)
let g:neovide_cursor_vfx_mode = "railgun"
More to Come
We've got more ideas for simple unobtrusive improvements. More to come.
Configuration
Configuration is done almost completely via global neovide variables in your vim config and can be manipulated live at runtime. Details can be found here.
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/neovide/neovide/releases/0.13.0, and download from there.
AnyArch: https://github.com/neovide/neovide/releases/download/0.13.0/neovide.msi
to download the archive. Unarchive the file to extract the MSI inside. You may wish to rename the file.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum: 83bd80f18ca4c10bdffc407258f1110c2b38f19b168ea499f0b492fc704d474dab90c0ae7c26f0ac0a73e5b37fab35edd09c8550f72288293049118a86e2885b
File 'LICENSE.txt' obtained from:
https://github.com/neovide/neovide/blob/0.13.0/LICENSE
md5: F46DE6BB86A21449B89C0CA7155D83C3 | sha1: DAA04675C133B72E7B480BFCAB280C5EBCFCA7B8 | sha256: F7B0C5E9E2A46349EC20A873485A06037D7AD71E30E0325A48F96FC579F418D0 | sha512: 83BD80F18CA4C10BDFFC407258F1110C2B38F19B168EA499F0B492FC704D474DAB90C0AE7C26F0AC0A73E5B37FAB35EDD09C8550F72288293049118A86E2885B
Log in or click on link to see number of positives.
- neovide.install.0.13.0.nupkg (43d419bb04ce) - ## / 58
- neovide.msi (f7b0c5e9e2a4) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Neovide (Install) 0.13.1 | 1074 | Tuesday, July 16, 2024 | Approved | |
Neovide (Install) 0.13.0 | 632 | Saturday, June 8, 2024 | Approved | |
Neovide (Install) 0.12.2 | 991 | Wednesday, February 14, 2024 | Approved | |
Neovide (Install) 0.12.1 | 248 | Monday, February 5, 2024 | Approved | |
Neovide (Install) 0.12.0 | 452 | Tuesday, January 2, 2024 | Approved | |
Neovide (Install) 0.11.2 | 625 | Monday, October 23, 2023 | Approved | |
Neovide (Install) 0.11.1 | 553 | Friday, September 8, 2023 | Approved | |
Neovide (Install) 0.11.0 | 391 | Saturday, August 19, 2023 | Approved | |
Neovide (Install) 0.10.4 | 1031 | Wednesday, April 12, 2023 | Approved | |
Neovide (Install) 0.10.3 | 1203 | Monday, November 28, 2022 | Approved | |
Neovide (Install) 0.10.2 | 329 | Sunday, November 13, 2022 | Approved |
Copyright © 2019 - 2024 Keith Simmons
What's Changed
The main highlights are:
Improved and more configurable font rendering, see
neovide_text_contrast
andneovide_text_gamma
D3D for smoother rendering on Windows
Fully working smooth scrolling in Windows with borders and highlights
Better stability compared to 0.12.x
Breaking changes
Neovim 0.10.0 is now required
The font size in
config.toml
is now specified in points instead of pixels, to match the behaviour of guifont and most other softwareThe macOS option
neovide_input_macos_alt_is_meta
has been renamed to neovide_input_macos_option_key_is_meta and instead oftrue/false
it can now be set toonly_left
,only_right
,both
ornone
The font sizes are now slightly different and matches that set in most other programs due to the fractional font support.
The
--fork
option has been reversed, and--no-fork
is now the default. If the old behaviour is desired, you can set the environment variableNEOVIDE_FORK=1
Closing the Window when using remote connections now also exits Neovim. If you want to keep the remote instance running, you can detach using
:call chanclose(g:neovide_channel_id)
Known issues
- Neovide will hang on some Windows systems. This has turned out to be a very tricky bug to track down, since it only occurs on a few systems. See https://github.com/neovide/neovide/pull/2463 for more information. Any help debugging this is highly appreciated.
Features
fix: font width can't be configured with config file by @gmr458 in https://github.com/neovide/neovide/pull/2331
feat: add support for hiding window title from config file by @falcucci in https://github.com/neovide/neovide/pull/2344
doc: instructions of profiling with tracy. by @crupest in https://github.com/neovide/neovide/pull/2356
feat(macos): display border for opaque backgrounds by @emonadeo in https://github.com/neovide/neovide/pull/2351
feat: add window menu on mac by @polachok in https://github.com/neovide/neovide/pull/2323
feat(macos): drop multiple files and folders on macOS by @falcucci in https://github.com/neovide/neovide/pull/2396
feat: Smooth cursor blink animation option by @agraven in https://github.com/neovide/neovide/pull/2421
feat: tabs option as ENV variable and config file position + prefix cleanup for CLI argument by @nazriel in https://github.com/neovide/neovide/pull/2441
feat: Apply winit window blur setting on all platforms by @agraven in https://github.com/neovide/neovide/pull/2440
feat(windows): Direct3D Rendering on Windows by @fredizzimo in https://github.com/neovide/neovide/pull/2215
feat: add ability to open files from Finder in macOS by @polachok in https://github.com/neovide/neovide/pull/2395
feat: render same z-index together by @Kethku in https://github.com/neovide/neovide/pull/2467
feat!: Option key as meta configuration by @9mm in https://github.com/neovide/neovide/pull/2486
feat!: Support fractional grid and font sizes by @fredizzimo in https://github.com/neovide/neovide/pull/2485, https://github.com/neovide/neovide/pull/2500
feat: Configurable contrast and gamma by @fredizzimo in https://github.com/neovide/neovide/pull/2510
fix: relative WSL paths and paths with spaces by @fredizzimo in https://github.com/neovide/neovide/pull/2507
Bug fixes
fix: Handle some more numpad keys by @hhirtz in https://github.com/neovide/neovide/pull/2334
Update commands.md missing link by @dineshKumar777 in https://github.com/neovide/neovide/pull/2341
fix(macos): bug of restoring window position on macos. by @crupest in https://github.com/neovide/neovide/pull/2345
fix: loading of fonts with OpenType font variations by @fredizzimo in https://github.com/neovide/neovide/pull/2354
fix(wsl): #2049 ignore lines matching wsl screen size error by @DZappala in https://github.com/neovide/neovide/pull/2374
docs: fix show_border cutting into transparent by @emonadeo in https://github.com/neovide/neovide/pull/2380
fix(macos): execute login before starting login shell by @falcucci in https://github.com/neovide/neovide/pull/2405
fix: Handle new viewport margins event (fixes smooth scrolling with borders and winbars) by @Kethku in https://github.com/neovide/neovide/pull/2455
fix: Prevent intro message hack from showing when the intro message is fixed upstream by @Kethku in https://github.com/neovide/neovide/pull/2460
fix: Convert Windows paths to WSL when launching in WSL mode by @Holzhaus in https://github.com/neovide/neovide/pull/2256
fix: Determine the window under the mouse on the fly by @fredizzimo in https://github.com/neovide/neovide/pull/2311
fix: save grid size for maximized windows by @sid-6581 in https://github.com/neovide/neovide/pull/2528
fix:! Don't fork by default by @fredizzimo in https://github.com/neovide/neovide/pull/2512
fix!: Perform a clean exit again by @fredizzimo in https://github.com/neovide/neovide/pull/2463
fix!: Use points instead of pixels for the config file by @fredizzimo in https://github.com/neovide/neovide/pull/2476
fix(docs): fix reversed autocmds for setting input_ime by @cpmsmith in https://github.com/neovide/neovide/pull/2545
Other changes
(including fixes for bugs that were not part of the previous release)
chore: update lru crate to fix building with the nightly toolchain by @fredizzimo in https://github.com/neovide/neovide/pull/2346
Update nvim-rs, remove superflous arc-wrapping by @KillTheMule in https://github.com/neovide/neovide/pull/2336
chore: remove legacy objc and cocoa by @polachok in https://github.com/neovide/neovide/pull/2390
chore: Upgrade dependencies and remove unused by @agraven in https://github.com/neovide/neovide/pull/2443
chore: remove swash's scale and render features by @tim-harding in https://github.com/neovide/neovide/pull/2450
chore: Support multiple render backends by @fredizzimo in https://github.com/neovide/neovide/pull/2359
fix: set startup directory failed is not an error by @TwIStOy in https://github.com/neovide/neovide/pull/2457
chore(CI): Enable full build on pull requests by @fredizzimo in https://github.com/neovide/neovide/pull/2473
chore: Refactor the update loop by @fredizzimo in https://github.com/neovide/neovide/pull/2470
fix: Temporary hang after sleep by @fredizzimo in https://github.com/neovide/neovide/pull/2472
chore: Fix clippy warnings by @fredizzimo in https://github.com/neovide/neovide/pull/2483
feat: draw block characters with background opacity (was reverted) by @Theaninova in https://github.com/neovide/neovide/pull/2478
chore: Use typesafe pixel and grid units by @fredizzimo in https://github.com/neovide/neovide/pull/2484
fix: address viewport margin regression by sorting DrawCommand batches by @Kethku in https://github.com/neovide/neovide/pull/2487
chore: Refactor the registry-relevant functions. by @InfyniteHeap in https://github.com/neovide/neovide/pull/2490
fix: clipping rect regression by @fredizzimo in https://github.com/neovide/neovide/pull/2494
Revert "feat!: Support fractional grid and font sizes" by @Kethku in https://github.com/neovide/neovide/pull/2497
chore: migrate dependency from
winapi
towindows
. by @InfyniteHeap in https://github.com/neovide/neovide/pull/2505fix: Cursor offset by @fredizzimo in https://github.com/neovide/neovide/pull/2511
fix: respect floating shadow setting in layer rendering by @sid-6581 in https://github.com/neovide/neovide/pull/2526
fix: fix the CI by @fredizzimo in https://github.com/neovide/neovide/pull/2534
chore: yet another fix for the CI by @fredizzimo in https://github.com/neovide/neovide/pull/2535
fix: don't group floating windows unless one is fully contained in the other by @sid-6581 in https://github.com/neovide/neovide/pull/2527
fix: Use composition to fix window transparency when using D3D by @fredizzimo in https://github.com/neovide/neovide/pull/2529
chore: add cfg to is_tty so that it isn't built on windows by @Kethku in https://github.com/neovide/neovide/pull/2537
fix: dont resize the d3d buffers if the window size is zero by @Kethku in https://github.com/neovide/neovide/pull/2538
New Contributors
@gmr458 made their first contribution in https://github.com/neovide/neovide/pull/2331
@hhirtz made their first contribution in https://github.com/neovide/neovide/pull/2334
@DZappala made their first contribution in https://github.com/neovide/neovide/pull/2374
@emonadeo made their first contribution in https://github.com/neovide/neovide/pull/2351
@polachok made their first contribution in https://github.com/neovide/neovide/pull/2323
@nazriel made their first contribution in https://github.com/neovide/neovide/pull/2441
@Theaninova made their first contribution in https://github.com/neovide/neovide/pull/2478
@Holzhaus made their first contribution in https://github.com/neovide/neovide/pull/2256
@InfyniteHeap made their first contribution in https://github.com/neovide/neovide/pull/2490
@cpmsmith made their first contribution in https://github.com/neovide/neovide/pull/2545
Full Changelog: https://github.com/neovide/neovide/compare/0.12.2...0.13.0
-
- neovim (≥ 0.8.0)
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about Neovide (Install) and the Neovide (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Neovide (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.