Downloads:
19,291
Downloads of v 0.2.88-g17b59dd:
166
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.88-g17b59dd | 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:
19,291
Downloads of v 0.2.88-g17b59dd:
166
Maintainer(s):
Software Author(s):
- Yatao Li
FVim 0.2.88-g17b59dd
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.88-g17b59dd --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.88-g17b59dd'" --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.88-g17b59dd'" --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.88-g17b59dd'
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.88-g17b59dd'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller fvim
{
Name = "fvim"
Version = "0.2.88-g17b59dd"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'fvim':
ensure => '0.2.88-g17b59dd',
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-88-g17b59dd/fvim-win7-x64.zip
win10: https://github.com/yatli/fvim/releases/download/v0.2-88-g17b59dd/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: c8df436319102929b9e758d2bd64cc56e43928dea7bd72927bbf9febe01cb41b633b96cfd795a0b96bdc0748ffb3eddf7b36959f4942a70047e5194710c27129
checksum-win10: a54867b3d188e23f93356149f398881b90cd0310ba891fb6964c23b8d927557ed685c8566e45c68725ec45bfac1addf7c98a5d25b460330076372e9bfe1b486f
File 'LICENSE.txt' obtained from:
https://github.com/yatli/fvim/blob/v0.2-88-g17b59dd/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: 9E5B7CA78BF6CFBCE3DDD6981380DD68 | sha1: 316407C09EF9679C77660F6DF34D2841A3E69C2B | sha256: 63FEE65B04F4F712A1F1481082E8B074B0A421A94D55811F6B105F15F7000155 | sha512: A54867B3D188E23F93356149F398881B90CD0310BA891FB6964C23B8D927557ED685C8566E45C68725EC45BFAC1ADDF7C98A5D25B460330076372E9BFE1B486F
md5: 2E35E32CDC5D2898D2442D2103F323A8 | sha1: AEC6F0A00915417557E73A4AAC05EBFE58D533C6 | sha256: 6DE0154086256A637C5A8110D578D5AFAFB2E1CBB2591B6A3AD25B9285C6FB7F | sha512: C8DF436319102929B9E758D2BD64CC56E43928DEA7BD72927BBF9FEBE01CB41B633B96CFD795A0B96BDC0748FFB3EDDF7B36959F4942A70047E5194710C27129
Log in or click on link to see number of positives.
- fvim.0.2.88-g17b59dd.nupkg (5781d19cf8eb) - ## / 60
- fvim-win-x64.zip (63fee65b04f4) - ## / 59
- fvim-win7-x64.zip (6de015408625) - ## / 62
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 | 223 | Monday, March 25, 2024 | Approved | |
FVim 0.3.548 | 233 | Monday, October 23, 2023 | Approved | |
FVim 0.3.543 | 273 | Wednesday, May 24, 2023 | Approved | |
FVim 0.3.531 | 549 | Sunday, April 24, 2022 | Approved | |
FVim 0.3.530 | 119 | Thursday, April 21, 2022 | Approved | |
FVim 0.3.528 | 173 | Sunday, April 10, 2022 | Approved | |
FVim 0.3.520 | 137 | Friday, April 8, 2022 | Approved | |
FVim 0.3.516 | 109 | Thursday, April 7, 2022 | Approved | |
FVim 0.3.513 | 130 | Monday, April 4, 2022 | Approved | |
FVim 0.3.512 | 87 | Sunday, April 3, 2022 | Approved | |
FVim 0.3.503 | 102 | Saturday, April 2, 2022 | Approved | |
FVim 0.3.498 | 129 | Wednesday, March 30, 2022 | Approved | |
FVim 0.3.468 | 465 | Tuesday, September 28, 2021 | Approved | |
FVim 0.3.467 | 97 | Monday, September 27, 2021 | Approved | |
FVim 0.3.456 | 166 | Monday, September 20, 2021 | Approved | |
FVim 0.3.433 | 170 | Saturday, September 11, 2021 | Approved | |
FVim 0.3.423 | 102 | Wednesday, September 8, 2021 | Approved | |
FVim 0.3.412 | 198 | Monday, August 16, 2021 | Approved | |
FVim 0.2.392 | 162 | Tuesday, July 27, 2021 | Approved | |
FVim 0.2.348 | 540 | Wednesday, November 25, 2020 | Approved | |
FVim 0.2.345 | 171 | Monday, November 23, 2020 | Approved | |
FVim 0.2.337 | 171 | Friday, November 20, 2020 | Approved | |
FVim 0.2.310 | 185 | Saturday, November 14, 2020 | Approved | |
FVim 0.2.306-g9c99308 | 200 | Monday, November 2, 2020 | Approved | |
FVim 0.2.299-ged6194c | 185 | Monday, November 2, 2020 | Approved | |
FVim 0.2.290-g4a6e1cc | 167 | Monday, November 2, 2020 | Approved | |
FVim 0.2.285-g48ec668 | 174 | Tuesday, October 27, 2020 | Approved | |
FVim 0.2.277-gb99586d | 179 | Tuesday, October 27, 2020 | Approved | |
FVim 0.2.273-g41ce0c6 | 183 | Tuesday, October 6, 2020 | Approved | |
FVim 0.2.269-gcee45d3 | 146 | Tuesday, October 6, 2020 | Approved | |
FVim 0.2.260-g409eb8c | 158 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.258-g663c2b2 | 184 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.247-g7a2270c | 150 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.242-gd69d25a | 183 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.240-g104449f | 182 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.233-g2909bf9 | 176 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.214 | 273 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.192-gb6a3318 | 169 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.186-g30d61fa | 139 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.184-gfd670f8 | 166 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.132-ge81f09a | 156 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.100-g520d8b8 | 206 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.96-g269872a | 150 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.88-g17b59dd | 166 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.71-g5bc3070 | 171 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.70-g45665ac | 165 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.67-g680028c | 208 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.56-gfd39a12 | 172 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.55-g56604a9 | 156 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.51-g98b2006 | 159 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.50-g6b4c309 | 145 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.48-g39ce6f6 | 158 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.46-gbfe2caa | 187 | Sunday, September 20, 2020 | Approved | |
FVim 0.2.45-gb449461 | 181 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.40-gefbc6cb | 168 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.39-gf5c9a7f | 186 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.38-g09f8531 | 147 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.37-g7bf9448 | 164 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.36-g03fcea2 | 155 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.35-g8da1b34 | 191 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.34-g05b42c4 | 180 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.33-ga70c8bb | 159 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.32-gbc517d2 | 195 | Saturday, September 19, 2020 | Approved | |
FVim 0.2.1-gce33644 | 160 | Saturday, September 19, 2020 | Approved | |
FVim 0.2 | 158 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.249 | 116 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.245 | 150 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.242 | 111 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.229 | 115 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.227 | 99 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.218 | 138 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.213 | 131 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.207 | 139 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.201 | 131 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.196 | 137 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.183 | 101 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.179 | 111 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.157 | 116 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.151 | 108 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.147 | 96 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.139 | 126 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.130 | 109 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.125 | 107 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.120 | 139 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.118 | 113 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.116 | 123 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.109 | 113 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.107 | 113 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.101 | 114 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.98 | 115 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.86 | 141 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.83 | 146 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.77 | 177 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.72 | 125 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.66 | 99 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.59 | 120 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.55 | 159 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.53 | 127 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.51 | 118 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.49 | 102 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.47 | 120 | Saturday, September 19, 2020 | Approved | |
FVim 0.1.45 | 106 | Friday, September 18, 2020 | Approved | |
FVim 0.1.43 | 128 | Friday, September 18, 2020 | Approved | |
FVim 0.1.41 | 113 | Friday, September 18, 2020 | Approved | |
FVim 0.1.39 | 132 | Friday, September 18, 2020 | Approved | |
FVim 0.1.37 | 118 | Friday, September 18, 2020 | Approved | |
FVim 0.0.35 | 158 | Friday, September 18, 2020 | Approved | |
FVim 0.0.33 | 180 | Friday, September 18, 2020 | Approved | |
FVim 0.0.31 | 170 | Friday, September 18, 2020 | Approved | |
FVim 0.0.29 | 114 | Friday, September 18, 2020 | Approved | |
FVim 0.0.27 | 149 | Friday, September 18, 2020 | Approved | |
FVim 0.0.24 | 141 | Friday, September 18, 2020 | Approved | |
FVim 0.0.23 | 119 | Friday, September 18, 2020 | Approved | |
FVim 0.0.21 | 125 | Friday, September 18, 2020 | Approved | |
FVim 0.0.19 | 140 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.17 | 97 | Friday, September 18, 2020 | Approved | |
FVim 0.0.15 | 101 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.13 | 142 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.11 | 117 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.9 | 137 | Monday, September 14, 2020 | Approved | |
FVim 0.0.7 | 156 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.5 | 162 | Thursday, September 17, 2020 | Approved | |
FVim 0.0.1 | 133 | Wednesday, September 16, 2020 | Approved |
Copyright © 2019 - 2020 Yatao Li
Changes:
17b59dd4bfcdcd1466db083cdfef96724bd5ae79 Merge pull request #53 from yatli/popupmenu
de6246110c0b3084fc49550f9df37dad9ab1b7d0 ui options configuration ok.
8762c8a2448629fee7594b1f6902b925a6ece03a popupmenu hover workaround
f4eb5c92db2443acf1faeb2275d49f9d4c582145 BaseView: add ViewModelConnected event.
cbb44f113b1796b88cdb659412139fbc58646507 PAD
b1f4b1d10fe37b7991cdc7c5d519afc7b7b2b4b9 Merge branch 'master' into popupmenu
d3aa1d8ad257048b753cb817914f97f0535e7b7d properlly throttle rendering ticks
f7100c07c2ab94cce88343e293fb76e64389ece6 PAD
31e068301fae38d7c3134cc1ae1a383cee16d2a5 popupmenu: sync colors from semantic highlighting groups
e6ac3bbf2c30d474394cebb9f5232e351532c5f9 popupmenu: sync font settings from editor
<details><summary><b>See more</b></summary>0bb9f3058817efcef5e9fd9bedd86a79bce3302e editorvm: prevent flooded ui flush
39c826bb504910e63679b4b7a6593b8a05418e18 fix popupmenu positioning
ff4289429a68a1e48c9c615b0b98911e869bacb8 Merge branch 'master' into popupmenu
5ff3525b60eacf5c96b46fc41545a54c50448117 ...
e397dcf57e667db228daa5d9b6fcb4616ffd416b wip
eadafb8852717bb3c4a21c74563ab0876664535c external popup menu with icons
0b3cba17755f7874c3c9fcb0e7c6a4c0e592662e popup menu two-way binding ok
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.