Downloads:
18,707
Downloads of v 0.2.184-gfd670f8:
163
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.184-gfd670f8 | 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.184-gfd670f8:
163
Maintainer(s):
Software Author(s):
- Yatao Li
FVim 0.2.184-gfd670f8
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.184-gfd670f8 --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.184-gfd670f8'" --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.184-gfd670f8'" --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.184-gfd670f8'
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.184-gfd670f8'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller fvim
{
Name = "fvim"
Version = "0.2.184-gfd670f8"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'fvim':
ensure => '0.2.184-gfd670f8',
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-184-gfd670f8/fvim-win7-x64.zip
win10: https://github.com/yatli/fvim/releases/download/v0.2-184-gfd670f8/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: 1bc71e5ffa278b6b02c7953dc06901a788908fdf4d1adf2082de4eafbead3f85f903bdade03e10a918fed4bb602f39c39bd34c8061ab6653ecdde16f6ba7eb3f
checksum-win10: fcfbbf7bc10cf47788e14166d3ecd9369b467dc2564ee04dcfb3e03ffcbfa803786aaf6e9eec9539e98668145472a2feccbd2e145b3c925c8623ad76c3e7a4c7
File 'LICENSE.txt' obtained from:
https://github.com/yatli/fvim/blob/v0.2-184-gfd670f8/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: 0537E8878DEB887AC2EAA2A78928B4EB | sha1: B7E146272AE769DE94B3D208A2464E6AE0CFA680 | sha256: 2614C9E60A41C8A8929123BBBE01EA5B85B0D165C68ACD64DCDFAED474B77D8C | sha512: FCFBBF7BC10CF47788E14166D3ECD9369B467DC2564EE04DCFB3E03FFCBFA803786AAF6E9EEC9539E98668145472A2FECCBD2E145B3C925C8623AD76C3E7A4C7
md5: 8D8F37BA593B867DB0C29381B26FB9D6 | sha1: 77AA3105C42EB1795C8E2790AFE32F3CD8E8C1B9 | sha256: 9966B59DF92D38A4D2E3AB37FB33ECF380E1A51BB10C061806E7CA2C5453E31B | sha512: 1BC71E5FFA278B6B02C7953DC06901A788908FDF4D1ADF2082DE4EAFBEAD3F85F903BDADE03E10A918FED4BB602F39C39BD34C8061AB6653ECDDE16F6BA7EB3F
Log in or click on link to see number of positives.
- fvim.0.2.184-gfd670f8.nupkg (614aa49038fb) - ## / 60
- fvim-win-x64.zip (2614c9e60a41) - ## / 63
- fvim-win7-x64.zip (9966b59df92d) - ## / 63
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:
fd670f8f88836ac57f830cb1372678f3accef1d5 fix build errors. update to avalonia v0.9 preview; fix #94
72f06414f1acd61faeb433be47d525d8c2c81776 update readme.
4877e1ed22a32183418b102de33cf820474c345a fix #68
2bd67b3bad1926dc443acefbb9ef42919401beff Merge pull request #74 from yatli/blur_bg
f4e1ed54a927f5d7037e41a091d75fe806ad5cad remember last ui status and restore on startup
05d672133d7df475d48cebbf8df6ded9045c88ab revert font position calculation
a80bb80e3d3d397687b1a86cf3459746619170b6 Merge branch 'master' into blur_bg
99357d8bc7331f78ec98b6bcd780095d92eebf3f don't enable drag resize on fullscreen/maximized state
0d7a663858980bff4b6acf8da1ba8df2bfcf36eb Merge branch 'master' into blur_bg
69714904630e6ba045005da5e358d102281fc6f9 Merge pull request #83 from yatli/custom_titlebar
<details><summary><b>See More</b></summary>bacca86560c8c1b7b8b4d4052adc09d6229986c9 titlebar: buttons functional. theme ok
de0e1207b616c94a3cf063831b2eefe9d80193f1 custom decoration: drag edges ok.
45de8c4b712e1af6c8b57730774dfd6f3e1f4f33 titlebar: move ok. toggle state ok. state management ok. refactoring.
4449eb5c09abd59399ece259997e1ad12420d57c wip
6c8e98901e128c3189ac70365ffe0d3693051c53 custom titlebar wip
b79802e968102d58bd8058c35e516a58e8de3845 Merge branch 'master' into blur_bg
f19607b17e3550159dc1ecd4adbc1c8718809ef1 optimize popup menu performance
e06d429065ca101636b10c7d985e63b994cdaf21 minor
43a24277c17305fb57073e591391843ecf80e66d always use clip and clear to draw text background
9b6c01ce09e17f867f5f131d0e41335aa862fcaa add icon for win7 package
cd8ce486d31bfddc482593d3210c8d292f125d09 Update README.md
d509130bc5f2bfd13a0724d26247d820ac57eb08 Update README.md
e624ce8ab5b95e84ba29715a9ee4237f8f44d502 Merge branch 'master' into blur_bg
456d7e576db49e773073539670c16b13f6c827f0 tidy up
5ddf33325ed3b6a189500df877010fe930bf3893 Merge branch 'blur_bg' of https://github.com/yatli/fvim into blur_bg
d3420749d304f1f97111b29f6d6ef3e1d9baf63c KDE blur POC
eacf10381156e4a02a0922aa55268e04f1ec03b1 Merge branch 'blur_bg' of github.com:yatli/fvim into blur_bg
be800fcc1d5633acc49be8b2f2eff5b69bccbaff Merge branch 'master' into blur_bg
9f21a50f4b33ccb5298f64c407a130b2fcc183ce experimenting with linux compositors
9bf977c788b9c4d09f5b388b3f7f7221340bd0b9 pack osx native helper binary
031f5c7841e5da9c30151289ec6ba83654614840 add background.altopacity
f91066f922523ead1330cdbe62e6319168fb96b1 Merge branch 'master' into blur_bg
02ecb6ef29e53f659f48b97b5533b730b57b33ec Merge branch 'master' into blur_bg
16178bb7f7b6f3a3e26e04c56fb75eda41ef78df Merge branch 'master' into blur_bg
672939e0211d006c40ddc77fbbac2f158f35d64c ..
55a94178f8e36d345fe7cbaf0c5e88e4c3ba6e74 Merge branch 'master' into blur_bg
3853fd59c1a772951ad4549a705e70b5042a5c36 refactor. move query ui capabilities to main model
623bf52bbe029451bec641c956ebb7dab5b1bac0 fix #70
58a79d32c28d3ee71d23cc5c7949efc02d8f9cf8 cleanup
eddc959b8c5f080e3a01447ed63d527fa0cbe9d1 osx: background composition POC
6394e2bb45bf15f66092aa0a02b994151a7dd34c osx: add vibrancy helper routine
e6fd4a85ddacfc2c73306c1bffa66d73e8737be1 ...
862e60bf2765eca3a2eda85859e63d5e46ba1c98 editor: manually render the bitmap
947833d38c6ff7bdb3eb47967c49158f70c1ae83 ...
a795ff6574ac0dfa8acb8f435bf18b92a49152f5 blur: acrylic is BGR; fix gaussian bg color
9fa79fa2b8909b6c1981d64dad3fccde6f0fbbd3 refactoring. new commands for background composition
0fe77b1008253d10658388f8356d66a010c77ab0 update deps, fix cursor animations
3e78693ad9fdc24505864654f8ef2c80ee9d56d7 ...
0bee55382bc4f32de870eeff6c692a015c24762a ...
dd36c68e2e3adad6df55be8c42f1814967a39208 acrylic starts to make sense!
e97713a1555e1ceded5e98fa29e538423cb3ba96 try transparent bg
6d14b169debc7aa2b7722903fdd3bf75088bed42 blur background wip
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.