Downloads:
18,707
Downloads of v 0.2.132-ge81f09a:
153
Last Update:
20 Sep 2020
Package Maintainer(s):
Software Author(s):
- Yatao Li
Tags:
vim code editor- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
FVim
This is a prerelease version of FVim.
- 1
- 2
- 3
0.2.132-ge81f09a | Updated: 20 Sep 2020
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
18,707
Downloads of v 0.2.132-ge81f09a:
153
Maintainer(s):
Software Author(s):
- Yatao Li
FVim 0.2.132-ge81f09a
This is a prerelease version of FVim.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Yatao Li. The inclusion of Yatao Li trademark(s), if any, upon this webpage is solely to identify Yatao Li goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install FVim, run the following command from the command line or from PowerShell:
To upgrade FVim, run the following command from the command line or from PowerShell:
To uninstall FVim, 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 fvim --internalize --version=0.2.132-ge81f09a --pre --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 fvim -y --source="'INTERNAL REPO URL'" --version="'0.2.132-ge81f09a'" --prerelease [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 fvim -y --source="'INTERNAL REPO URL'" --version="'0.2.132-ge81f09a'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install fvim
win_chocolatey:
name: fvim
version: '0.2.132-ge81f09a'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'fvim' do
action :install
source 'INTERNAL REPO URL'
version '0.2.132-ge81f09a'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller fvim
{
Name = "fvim"
Version = "0.2.132-ge81f09a"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'fvim':
ensure => '0.2.132-ge81f09a',
install_options => ['--prerelease'],
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 was approved as a trusted package on 20 Sep 2020.
Cross platform Neovim front-end UI, built with F# + Avalonia.
Features
- Theming done the (Neo)Vim way
- Cursor color/blink
- Background image/composition
- Custom UI elements are themed with
colorscheme
settings - And more!
- Font handling
- Proper font rendering -- respects font style, baseline, ligatures etc.
- Built-in support for Nerd font -- no need to patch your fonts!
- East Asia wide glyph display with font fallback options
- Fine-grained font tweaking knobs for personal font rendering
- Emojis!
- GUI framework
- HiDPI support -- try dragging it across two screens with different DPIs ;)
- High performance rendering, low latency (60FPS on 4K display with reasonable font size!)
- GPU acceleration
- Remoting
- Use a Windows FVim frontend with a WSL neovim:
fvim --wsl
- Use the front end with a remote neovim:
fvim --ssh user@host
- Use custom neovim binary:
fvim --nvim ~/bin/nvim.appimage
- Host a daemon to preload NeoVim
- Connect to a remote NeoVim backend:
fvim --connect localhost:9527
- Use a Windows FVim frontend with a WSL neovim:
Check the GitHub page for more information.
MIT License
Copyright (c) 2019 Yatao Li
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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/yatli/fvim, enter to releases and download from there.
win7: https://github.com/yatli/fvim/releases/download/v0.2-132-ge81f09a/fvim-win7-x64.zip
win10: https://github.com/yatli/fvim/releases/download/v0.2-132-ge81f09a/fvim-win-x64.zip
to download the zip files. You may wish to rename one of the files.
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-win7: 62cb44361136a1ea79ab8de83e8dd5dbb9a6165fe5ed7021692a5ccb47a516541087f0c10223c6123e62569578cdc85a8ccb9e8cc1322fb921f0513097564aa8
checksum-win10: f32e59c9447e3fcd7d60abd1b04a12010255a1efd742f9555ba6688ecc3b4d0324e0ba55e8a7314eb5ffa7e449fe3fa481538145c2ea0516e7a7646f0fad79ec
File 'LICENSE.txt' obtained from:
https://github.com/yatli/fvim/blob/v0.2-132-ge81f09a/LICENSE
$PackageName = 'fvim';
$InstallDir = Join-Path $(Get-ToolsLocation) $PackageName;
$Desktop = [System.Environment]::GetFolderPath("Desktop");
Uninstall-BinFile "fvim" -Path "$InstallDir\FVim.exe";
if ($WindowsVersion.Major -eq "10") {
Uninstall-ChocolateyZipPackage -PackageName $PackageName -ZipFileName 'fvim-win-x64.zip';
} else {
Uninstall-ChocolateyZipPackage -PackageName $PackageName -ZipFileName 'fvim-win7-x64.zip';
};
Remove-Item $InstallDir -ErrorAction SilentlyContinue;
Remove-Item "$Desktop\FVim.lnk" -ErrorAction SilentlyContinue -Force | Out-Null;
md5: 5E3BC90AC59373A074D3C201AA15DFC7 | sha1: EF41F2D9A9CA20A1AA745C0524EA559D419BC9EF | sha256: 02252E89D88807D7F4BBF7E8C060280BB1918891E1A3635944A505470525DDC0 | sha512: F32E59C9447E3FCD7D60ABD1B04A12010255A1EFD742F9555BA6688ECC3B4D0324E0BA55E8A7314EB5FFA7E449FE3FA481538145C2EA0516E7A7646F0FAD79EC
md5: 448C3D1B2666C7F901A892DEFB2DA4BA | sha1: 0CF00BDDBF686BA95AA90A58689A5D3A4B498BA1 | sha256: 49C6BB0487F1B2D049ADFEA0F6CFEF4E65206975A40A9AFC86F50811BE74E901 | sha512: 62CB44361136A1EA79AB8DE83E8DD5DBB9A6165FE5ED7021692A5CCB47A516541087F0C10223C6123E62569578CDC85A8CCB9E8CC1322FB921F0513097564AA8
Log in or click on link to see number of positives.
- fvim.0.2.132-ge81f09a.nupkg (43ad56474dd3) - ## / 59
- fvim-win-x64.zip (02252e89d888) - ## / 62
- fvim-win7-x64.zip (49c6bb0487f1) - ## / 58
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 |
---|---|---|---|---|
FVim 0.3.549 | 209 | Monday, March 25, 2024 | Approved | |
FVim 0.3.548 | 225 | Monday, October 23, 2023 | Approved | |
FVim 0.3.543 | 266 | Wednesday, May 24, 2023 | Approved | |
FVim 0.3.531 | 543 | Sunday, April 24, 2022 | Approved | |
FVim 0.3.530 | 115 | Thursday, April 21, 2022 | Approved | |
FVim 0.3.528 | 171 | Sunday, April 10, 2022 | Approved | |
FVim 0.3.520 | 131 | Friday, April 8, 2022 | Approved | |
FVim 0.3.516 | 108 | Thursday, April 7, 2022 | Approved | |
FVim 0.3.513 | 129 | Monday, April 4, 2022 | Approved | |
FVim 0.3.512 | 85 | Sunday, April 3, 2022 | Approved | |
FVim 0.3.503 | 96 | Saturday, April 2, 2022 | Approved | |
FVim 0.3.498 | 126 | Wednesday, March 30, 2022 | Approved | |
FVim 0.3.468 | 459 | Tuesday, September 28, 2021 | Approved | |
FVim 0.3.467 | 88 | Monday, September 27, 2021 | Approved | |
FVim 0.3.456 | 163 | Monday, September 20, 2021 | Approved | |
FVim 0.3.433 | 163 | Saturday, September 11, 2021 | Approved | |
FVim 0.3.423 | 98 | Wednesday, September 8, 2021 | Approved | |
FVim 0.3.412 | 193 | Monday, August 16, 2021 | Approved | |
FVim 0.2.392 | 160 | Tuesday, July 27, 2021 | Approved | |
FVim 0.2.348 | 534 | Wednesday, November 25, 2020 | Approved | |
FVim 0.2.345 | 168 | Monday, November 23, 2020 | Approved | |
FVim 0.2.337 | 167 | Friday, November 20, 2020 | Approved | |
FVim 0.2.310 | 181 | Saturday, November 14, 2020 | Approved | |
FVim 0.2.306-g9c99308 | 197 | Monday, November 2, 2020 | Approved | |
FVim 0.2.299-ged6194c | 181 | Monday, November 2, 2020 | Approved | |
FVim 0.2.290-g4a6e1cc | 162 | Monday, November 2, 2020 | Approved | |
FVim 0.2.285-g48ec668 | 173 | Tuesday, October 27, 2020 | Approved | |
FVim 0.2.277-gb99586d | 176 | Tuesday, October 27, 2020 | Approved | |
FVim 0.2.273-g41ce0c6 | 178 | Tuesday, October 6, 2020 | Approved | |
FVim 0.2.269-gcee45d3 | 143 | Tuesday, October 6, 2020 | Approved | |
FVim 0.2.260-g409eb8c | 155 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.258-g663c2b2 | 181 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.247-g7a2270c | 146 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.242-gd69d25a | 178 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.240-g104449f | 180 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.233-g2909bf9 | 171 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.214 | 269 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.192-gb6a3318 | 162 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.186-g30d61fa | 135 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.184-gfd670f8 | 163 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.132-ge81f09a | 153 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.100-g520d8b8 | 201 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.96-g269872a | 144 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.88-g17b59dd | 165 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.71-g5bc3070 | 167 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.70-g45665ac | 160 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.67-g680028c | 203 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.56-gfd39a12 | 170 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.55-g56604a9 | 153 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.51-g98b2006 | 155 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.50-g6b4c309 | 143 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.48-g39ce6f6 | 156 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.46-gbfe2caa | 184 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.45-gb449461 | 174 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.40-gefbc6cb | 163 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.39-gf5c9a7f | 181 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.38-g09f8531 | 146 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.37-g7bf9448 | 158 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.36-g03fcea2 | 153 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.35-g8da1b34 | 185 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.34-g05b42c4 | 174 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.33-ga70c8bb | 156 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.32-gbc517d2 | 189 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.1-gce33644 | 152 | Saturday, September 19, 2020 | Approved | |
FVim 0.2 | 151 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.249 | 111 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.245 | 143 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.242 | 103 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.229 | 110 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.227 | 95 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.218 | 133 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.213 | 126 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.207 | 131 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.201 | 123 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.196 | 131 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.183 | 98 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.179 | 107 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.157 | 115 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.151 | 101 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.147 | 92 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.139 | 122 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.130 | 103 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.125 | 100 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.120 | 135 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.118 | 108 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.116 | 115 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.109 | 111 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.107 | 110 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.101 | 111 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.98 | 106 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.86 | 136 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.83 | 136 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.77 | 171 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.72 | 121 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.66 | 93 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.59 | 117 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.55 | 142 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.53 | 121 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.51 | 112 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.49 | 98 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.47 | 119 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.45 | 102 | Friday, September 18, 2020 | Approved | |
FVim 0.1.43 | 118 | Friday, September 18, 2020 | Approved | |
FVim 0.1.41 | 107 | Friday, September 18, 2020 | Approved | |
FVim 0.1.39 | 131 | Friday, September 18, 2020 | Approved | |
FVim 0.1.37 | 111 | Friday, September 18, 2020 | Approved | |
FVim 0.0.35 | 157 | Friday, September 18, 2020 | Approved | |
FVim 0.0.33 | 178 | Friday, September 18, 2020 | Approved | |
FVim 0.0.31 | 167 | Friday, September 18, 2020 | Approved | |
FVim 0.0.29 | 110 | Friday, September 18, 2020 | Approved | |
FVim 0.0.27 | 143 | Friday, September 18, 2020 | Approved | |
FVim 0.0.24 | 139 | Friday, September 18, 2020 | Approved | |
FVim 0.0.23 | 113 | Friday, September 18, 2020 | Approved | |
FVim 0.0.21 | 119 | Friday, September 18, 2020 | Approved | |
FVim 0.0.19 | 137 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.17 | 96 | Friday, September 18, 2020 | Approved | |
FVim 0.0.15 | 92 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.13 | 135 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.11 | 115 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.9 | 134 | Monday, September 14, 2020 | Approved | |
FVim 0.0.7 | 149 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.5 | 156 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.1 | 128 | Wednesday, September 16, 2020 | Approved |
Copyright © 2019 - 2020 Yatao Li
Changes:
e81f09ade0634d8bbff4a54bd293480345e9ac25 fix #82
3802d59796767c3f35ae585e0520f4898eb36c9a fix keymap regression
48b42e8014fcc77f9b2ab88da056dc6cd075c5ba fix reverse color calculation
2fc3093fb31adbd9eb7281878d7300dab625c48e add all entries from Avalonia Key enum
6457500076855e31a57280071a22428a2cbef98e fix compile warnings
7c17e77e97137da429e2c7d364c0009eff2d82d4 mouse: do not translate mouse press counters into repeated clicks
72cfe68c1a94df9a7871cfe09cd04a40ac619044 Merge pull request #79 from yatli/multigrid
0dfe162d7e0e84f27c3f02ee3a8974e10580922a fix linux InvalidateVisual
5f57798d8ed19ee49746b78df630346aeb93cb62 revert ReactiveUI dep to fix build
4e1c563d5b9a9b7e18a4c005609e9a5ef4337a89 cleanup
<details><summary><b>See More</b></summary>dca1d8e431d45d412f8a94d0e752eafd47f6b5de add theme.fs, move global theme settings. move more redraw commands to
3aa25192ac91e01cbcc3cd89e5e51fcede2a8580 cache events in case the editor grid does not get ready promptly
6995255a5d3fa3dca56d71d8b2395fd5f0350729 work around neovim win_pos message quirk
958af43fa42366c2177f4c81cd5c1f4f5c31f289 revert Microsoft.Win32.Registry to 4.5
9afd0e9de84d7cd2ec3eb03c2466ede210a534d9 ui: minor touches on RenderText
28ea89e635fab73fa9702861b18be4fb07a068f6 updating deps. minor touches, enable multigrid (broken)
25e243d984d998110297c6213283e8ad6b256289 use nvim_input_mouse for mouse events
77deb39e7495e0f9e6946139943314a430214a0c wip: moving input events to the main window, shall also move popup
3a0f08e04122fba13261ecc025812b3ab8376659 ui: try remove padding above baseline
07604c4c17e100deff1c3c3f8aef4953902aff8f minor touch
acbb217fbebc100206beea876e593b6988287c5e refactoring. dispatch redraw events, not always broadcast.
3b70ad53b6bc4028baed26c4035486bd8b21c755 Merge pull request #78 from yatli/crash_report
b45b53834b1a582ea92f711ebfa274b2395d4ba9 branch out multigrid
68066787e0cd40a40a094456e8b0be4c40cda297 wrapup.
935d944c8a72dea089b2611b406a72a3eaf7d3fd add crash report window
2fda01238fb3e97a3638a100e4b48bad9233d611 refactor. move query ui capabilities to main model
0fad65b662b7efe9af7bb7f0ac01fb2b0ada4a30 fix #70
9a34fb62e934c7b2b61d284514a236e49633a1cd update deps, fix cursor animations
173164c23b27c345997441f090b1a602a966fdd1 fix #64
af99aed2d883ff81596557100aa50cdd23c7fd22 fix #60
70ca7750586c8f0354ca8737a702596099f320dc fix #65
4e77a9b93630d9b4714c532a9308b844e7a5686d update_with_deps.ps1
This list of changes was auto generated.</details>
-
- chocolatey-core.extension (≥ 1.3.5.1)
- KB2533623 (≥ 1.0.4)
- neovim (≥ 0.4.3)
Ground Rules:
- This discussion is only about FVim and the FVim 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 FVim, 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.