Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

14,699

Downloads of v 0.3.549:

19

Last Update:

25 Mar 2024

Package Maintainer(s):

Software Author(s):

  • Yatao Li

Tags:

vim code editor

FVim

  • 1
  • 2
  • 3

0.3.549 | Updated: 25 Mar 2024

Downloads:

14,699

Downloads of v 0.3.549:

19

Maintainer(s):

Software Author(s):

  • Yatao Li

Tags:

vim code editor

FVim 0.3.549

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Dependencies require reboot.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

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:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade fvim -y --source="'INTERNAL REPO URL'" [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'" 
$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.3.549'
    source: INTERNAL REPO URL
    state: present

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.3.549'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller fvim
{
    Name     = "fvim"
    Version  = "0.3.549"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'fvim':
  ensure   => '0.3.549',
  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.

Package Approved

This package was approved as a trusted package on 25 Mar 2024.

Description

Build Status

Cross platform Neovim front-end UI, built with F# + Avalonia.

Screenshot

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

Check the GitHub page for more information.


legal\LICENSE.txt
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.
legal\VERIFICATION.txt
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.3.549%2Bee4316c/fvim-win7-x64-v0.3.548%2Bg2e4087d-2-gee4316c.zip
   win10: https://github.com/yatli/fvim/releases/download/v0.3.549%2Bee4316c/fvim-win-x64-v0.3.548%2Bg2e4087d-2-gee4316c.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: b9d2514d852281d17acacae19d2b872a934b84f8e186244c712cfe5b145c68a421e290a68ddd29fa401cca901eb45e1f86579870c418e89fcbbcb520a91be769
   checksum-win10: 3f9873cb2516127eeac8c8c19adf9374cb9365f2cf40b6e457d8e3467334a9a3626db36d16149fb58322fc31648edafa313542fe37e49a98acc3c032ef348f0f

File 'LICENSE.txt' obtained from:
   https://github.com/yatli/fvim/blob/v0.3.549+ee4316c/LICENSE
tools\chocolateyinstall.ps1
$PackageName    = 'fvim';
$ToolsPath      = Split-Path -Parent $MyInvocation.MyCommand.Definition;
$InstallDir     = Join-Path $(Get-ToolsLocation) $PackageName;
$Desktop        = [System.Environment]::GetFolderPath("Desktop");
$WindowsVersion = [Environment]::OSVersion.Version;

if ($WindowsVersion.Major -eq "10") {
	$PackageArgs = @{
		PackageName    = $PackageName
		FileFullPath64 = Get-Item $(Join-Path $ToolsPath 'fvim-win-x64-v0.3.548+g2e4087d-2-gee4316c.zip')
		Checksum64     = '3f9873cb2516127eeac8c8c19adf9374cb9365f2cf40b6e457d8e3467334a9a3626db36d16149fb58322fc31648edafa313542fe37e49a98acc3c032ef348f0f'
		ChecksumType64 = 'sha512'
		Destination    = $InstallDir
	};
} else {
	$PackageArgs = @{
		PackageName    = $PackageName
		FileFullPath64 = Get-Item $(Join-Path $ToolsPath 'fvim-win7-x64-v0.3.548+g2e4087d-2-gee4316c.zip')
		Checksum64     = 'b9d2514d852281d17acacae19d2b872a934b84f8e186244c712cfe5b145c68a421e290a68ddd29fa401cca901eb45e1f86579870c418e89fcbbcb520a91be769'
		ChecksumType64 = 'sha512'
		Destination    = $InstallDir
	};
};

Install-ChocolateyZipPackage @PackageArgs;
Remove-Item ($ToolsPath + '\*.' + 'zip');

Install-BinFile 'fvim' -Path "$InstallDir\FVim.exe" -UseStart;
Install-ChocolateyShortcut -ShortcutFilePath "$Desktop\FVim.lnk" -TargetPath "$InstallDir\fvim.exe" -WorkingDirectory "$InstallDir" -WindowStyle 1
tools\chocolateyuninstall.ps1
$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-v0.3.548+g2e4087d-2-gee4316c.zip';
} else {
	Uninstall-ChocolateyZipPackage -PackageName $PackageName -ZipFileName 'fvim-win7-x64-v0.3.548+g2e4087d-2-gee4316c.zip';
};

Remove-Item $InstallDir -ErrorAction SilentlyContinue;
Remove-Item "$Desktop\FVim.lnk" -ErrorAction SilentlyContinue -Force | Out-Null;
tools\fvim-win-x64-v0.3.548+g2e4087d-2-gee4316c.zip
md5: 2B36E79DBD0E1CA9F970FB758ABEB63D | sha1: 423029CE3E5D546455BA8EAA4029C6E929E67D9F | sha256: 96BDAA15A7557DFC70B984777D15B05CAA25C1924847EA46BD7740F4FE4162C1 | sha512: 3F9873CB2516127EEAC8C8C19ADF9374CB9365F2CF40B6E457D8E3467334A9A3626DB36D16149FB58322FC31648EDAFA313542FE37E49A98ACC3C032EF348F0F
tools\fvim-win7-x64-v0.3.548+g2e4087d-2-gee4316c.zip
md5: 5E67A3B9A20DA80A546E0518D7F1CDDD | sha1: 90AACC1720116B5E254F3C3382EE10F3F2ED9501 | sha256: D9375CA0FC62292E0564EFFFFA24402BBD3518CCD89EDA9BC97789F7990EB296 | sha512: B9D2514D852281D17ACACAE19D2B872A934B84F8E186244C712CFE5B145C68A421E290A68DDD29FA401CCA901EB45E1F86579870C418E89FCBBCB520A91BE769

Log in or click on link to see number of positives.

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.548 176 Monday, October 23, 2023 Approved
FVim 0.3.543 236 Wednesday, May 24, 2023 Approved
FVim 0.3.531 504 Sunday, April 24, 2022 Approved
FVim 0.3.530 75 Thursday, April 21, 2022 Approved
FVim 0.3.528 140 Sunday, April 10, 2022 Approved
FVim 0.3.520 82 Friday, April 8, 2022 Approved
FVim 0.3.516 89 Thursday, April 7, 2022 Approved
FVim 0.3.513 87 Monday, April 4, 2022 Approved
FVim 0.3.512 49 Sunday, April 3, 2022 Approved
FVim 0.3.503 57 Saturday, April 2, 2022 Approved
FVim 0.3.498 90 Wednesday, March 30, 2022 Approved
FVim 0.3.468 435 Tuesday, September 28, 2021 Approved
FVim 0.3.467 69 Monday, September 27, 2021 Approved
FVim 0.3.456 120 Monday, September 20, 2021 Approved
FVim 0.3.433 127 Saturday, September 11, 2021 Approved
FVim 0.3.423 85 Wednesday, September 8, 2021 Approved
FVim 0.3.412 145 Monday, August 16, 2021 Approved
FVim 0.2.392 148 Tuesday, July 27, 2021 Approved
FVim 0.2.348 497 Wednesday, November 25, 2020 Approved
FVim 0.2.345 127 Monday, November 23, 2020 Approved
FVim 0.2.337 130 Friday, November 20, 2020 Approved
FVim 0.2.310 159 Saturday, November 14, 2020 Approved
FVim 0.2.306-g9c99308 155 Monday, November 2, 2020 Approved
FVim 0.2.299-ged6194c 138 Monday, November 2, 2020 Approved
FVim 0.2.290-g4a6e1cc 143 Monday, November 2, 2020 Approved
FVim 0.2.285-g48ec668 147 Tuesday, October 27, 2020 Approved
FVim 0.2.277-gb99586d 139 Tuesday, October 27, 2020 Approved
FVim 0.2.273-g41ce0c6 154 Tuesday, October 6, 2020 Approved
FVim 0.2.269-gcee45d3 126 Tuesday, October 6, 2020 Approved
FVim 0.2.260-g409eb8c 133 Sunday, September 20, 2020 Approved
FVim 0.2.258-g663c2b2 138 Sunday, September 20, 2020 Approved
FVim 0.2.247-g7a2270c 125 Sunday, September 20, 2020 Approved
FVim 0.2.242-gd69d25a 159 Sunday, September 20, 2020 Approved
FVim 0.2.240-g104449f 150 Sunday, September 20, 2020 Approved
FVim 0.2.233-g2909bf9 134 Sunday, September 20, 2020 Approved
FVim 0.2.214 235 Sunday, September 20, 2020 Approved
FVim 0.2.192-gb6a3318 145 Sunday, September 20, 2020 Approved
FVim 0.2.186-g30d61fa 119 Sunday, September 20, 2020 Approved
FVim 0.2.184-gfd670f8 133 Sunday, September 20, 2020 Approved
FVim 0.2.132-ge81f09a 127 Sunday, September 20, 2020 Approved
FVim 0.2.100-g520d8b8 161 Sunday, September 20, 2020 Approved
FVim 0.2.96-g269872a 121 Sunday, September 20, 2020 Approved
FVim 0.2.88-g17b59dd 151 Sunday, September 20, 2020 Approved
FVim 0.2.71-g5bc3070 116 Sunday, September 20, 2020 Approved
FVim 0.2.70-g45665ac 130 Sunday, September 20, 2020 Approved
FVim 0.2.67-g680028c 154 Sunday, September 20, 2020 Approved
FVim 0.2.56-gfd39a12 134 Sunday, September 20, 2020 Approved
FVim 0.2.55-g56604a9 126 Sunday, September 20, 2020 Approved
FVim 0.2.51-g98b2006 124 Sunday, September 20, 2020 Approved
FVim 0.2.50-g6b4c309 127 Sunday, September 20, 2020 Approved
FVim 0.2.48-g39ce6f6 122 Sunday, September 20, 2020 Approved
FVim 0.2.46-gbfe2caa 140 Sunday, September 20, 2020 Approved
FVim 0.2.45-gb449461 134 Saturday, September 19, 2020 Approved
FVim 0.2.40-gefbc6cb 143 Saturday, September 19, 2020 Approved
FVim 0.2.39-gf5c9a7f 152 Saturday, September 19, 2020 Approved
FVim 0.2.38-g09f8531 122 Saturday, September 19, 2020 Approved
FVim 0.2.37-g7bf9448 117 Saturday, September 19, 2020 Approved
FVim 0.2.36-g03fcea2 133 Saturday, September 19, 2020 Approved
FVim 0.2.35-g8da1b34 134 Saturday, September 19, 2020 Approved
FVim 0.2.34-g05b42c4 156 Saturday, September 19, 2020 Approved
FVim 0.2.33-ga70c8bb 126 Saturday, September 19, 2020 Approved
FVim 0.2.32-gbc517d2 138 Saturday, September 19, 2020 Approved
FVim 0.2.1-gce33644 122 Saturday, September 19, 2020 Approved
FVim 0.2 114 Saturday, September 19, 2020 Approved
FVim 0.1.249 99 Saturday, September 19, 2020 Approved
FVim 0.1.245 93 Saturday, September 19, 2020 Approved
FVim 0.1.242 79 Saturday, September 19, 2020 Approved
FVim 0.1.229 86 Saturday, September 19, 2020 Approved
FVim 0.1.227 75 Saturday, September 19, 2020 Approved
FVim 0.1.218 84 Saturday, September 19, 2020 Approved
FVim 0.1.213 73 Saturday, September 19, 2020 Approved
FVim 0.1.207 88 Saturday, September 19, 2020 Approved
FVim 0.1.201 95 Saturday, September 19, 2020 Approved
FVim 0.1.196 86 Saturday, September 19, 2020 Approved
FVim 0.1.183 77 Saturday, September 19, 2020 Approved
FVim 0.1.179 76 Saturday, September 19, 2020 Approved
FVim 0.1.157 94 Saturday, September 19, 2020 Approved
FVim 0.1.151 86 Saturday, September 19, 2020 Approved
FVim 0.1.147 77 Saturday, September 19, 2020 Approved
FVim 0.1.139 108 Saturday, September 19, 2020 Approved
FVim 0.1.130 89 Saturday, September 19, 2020 Approved
FVim 0.1.125 85 Saturday, September 19, 2020 Approved
FVim 0.1.120 112 Saturday, September 19, 2020 Approved
FVim 0.1.118 71 Saturday, September 19, 2020 Approved
FVim 0.1.116 82 Saturday, September 19, 2020 Approved
FVim 0.1.109 95 Saturday, September 19, 2020 Approved
FVim 0.1.107 72 Saturday, September 19, 2020 Approved
FVim 0.1.101 96 Saturday, September 19, 2020 Approved
FVim 0.1.98 87 Saturday, September 19, 2020 Approved
FVim 0.1.86 86 Saturday, September 19, 2020 Approved
FVim 0.1.83 97 Saturday, September 19, 2020 Approved
FVim 0.1.77 125 Saturday, September 19, 2020 Approved
FVim 0.1.72 86 Saturday, September 19, 2020 Approved
FVim 0.1.66 84 Saturday, September 19, 2020 Approved
FVim 0.1.59 81 Saturday, September 19, 2020 Approved
FVim 0.1.55 103 Saturday, September 19, 2020 Approved
FVim 0.1.53 81 Saturday, September 19, 2020 Approved
FVim 0.1.51 70 Saturday, September 19, 2020 Approved
FVim 0.1.49 73 Saturday, September 19, 2020 Approved
FVim 0.1.47 100 Saturday, September 19, 2020 Approved
FVim 0.1.45 85 Friday, September 18, 2020 Approved
FVim 0.1.43 82 Friday, September 18, 2020 Approved
FVim 0.1.41 89 Friday, September 18, 2020 Approved
FVim 0.1.39 103 Friday, September 18, 2020 Approved
FVim 0.1.37 80 Friday, September 18, 2020 Approved
FVim 0.0.35 92 Friday, September 18, 2020 Approved
FVim 0.0.33 98 Friday, September 18, 2020 Approved
FVim 0.0.31 127 Friday, September 18, 2020 Approved
FVim 0.0.29 79 Friday, September 18, 2020 Approved
FVim 0.0.27 114 Friday, September 18, 2020 Approved
FVim 0.0.24 85 Friday, September 18, 2020 Approved
FVim 0.0.23 100 Friday, September 18, 2020 Approved
FVim 0.0.21 94 Friday, September 18, 2020 Approved
FVim 0.0.19 102 Thursday, September 17, 2020 Approved
FVim 0.0.17 79 Friday, September 18, 2020 Approved
FVim 0.0.15 72 Thursday, September 17, 2020 Approved
FVim 0.0.13 100 Thursday, September 17, 2020 Approved
FVim 0.0.11 86 Thursday, September 17, 2020 Approved
FVim 0.0.9 115 Monday, September 14, 2020 Approved
FVim 0.0.7 102 Thursday, September 17, 2020 Approved
FVim 0.0.5 115 Thursday, September 17, 2020 Approved
FVim 0.0.1 106 Wednesday, September 16, 2020 Approved

Changes:

  • ee4316c505072cd22ec41f62f1b3081399bf308a Merge pull request #264 from meluskyc/bug/263-nvim092
  • 70c4c53f71b3d0b7064974c24dcfe8ab94be694a parse_grid_line: handle wrap #263

This list of changes was auto generated.


Discussion for the FVim Package

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.
comments powered by Disqus