Downloads:
17,499
Downloads of v 7.4.827:
455
Last Update:
14 Nov 2015
Package Maintainer(s):
Software Author(s):
- Build: veegee developer: vim team
Tags:
vim-x64 vim editor admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
vim-x64
This is not the latest version of vim-x64 available.
- 1
- 2
- 3
7.4.827 | Updated: 14 Nov 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
17,499
Downloads of v 7.4.827:
455
Maintainer(s):
Software Author(s):
- Build: veegee developer: vim team
vim-x64 7.4.827
This is not the latest version of vim-x64 available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Build: veegee developer: vim team. The inclusion of Build: veegee developer: vim team trademark(s), if any, upon this webpage is solely to identify Build: veegee developer: vim team 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 vim-x64, run the following command from the command line or from PowerShell:
To upgrade vim-x64, run the following command from the command line or from PowerShell:
To uninstall vim-x64, 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 vim-x64 --internalize --version=7.4.827 --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 vim-x64 -y --source="'INTERNAL REPO URL'" --version="'7.4.827'" [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 vim-x64 -y --source="'INTERNAL REPO URL'" --version="'7.4.827'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install vim-x64
win_chocolatey:
name: vim-x64
version: '7.4.827'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'vim-x64' do
action :install
source 'INTERNAL REPO URL'
version '7.4.827'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller vim-x64
{
Name = "vim-x64"
Version = "7.4.827"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vim-x64':
ensure => '7.4.827',
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 by moderator ferventcoder on 28 Dec 2015.
64-bit Vim for 64-bit Windows, with 64-bit Python 2.7 and 3.4 support, 64-bit Lua 5.2 support, and 64-bit Ruby 2.0.0 support (via RubyInstaller). Compiled with HUGE feature set and full optimizations for speed. Includes both the GUI (gvim.exe) and console (vim.exe) executables. Updated weekly.
$packageName = 'vim-x64'
$registryUninstallerKeyName = 'Vim 7.4'
$shouldUninstall = $true
$scriptPath = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$machine_key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$file = $machine_key `
| ?{ Test-Path $_ } `
| Get-ItemProperty `
| Select-Object -ExpandProperty UninstallString
if ($file -eq $null -or $file -eq '') {
Write-Host "$packageName has already been uninstalled by other means."
$shouldUninstall = $false
}
$installerType = 'EXE'
#$silentArgs = '/S'
$validExitCodes = @(0)
#if (!(Test-Path $file)) {
# Write-Host "$packageName has already been uninstalled by other means."
# $shouldUninstall = $false
#}
if ($shouldUninstall) {
# Enforce elevation until chocolatey bug is resolved
Start-Process powershell -ArgumentList "Uninstall-ChocolateyPackage -PackageName $packageName -FileType $installerType -validExitCodes $validExitCodes -File $file" -Verb RunAs
# Uninstaller doesn't seem to work properly, so let's clean up after it
# Explorer handle prevents removal, reboot explorer
Get-Process | Where { $_.name -eq 'explorer' } | Stop-Process
# I hope you don't have any documents open in the editor you're uninstalling...
Get-Process | Where { $_.name -eq 'vim' } | Stop-Process
Get-Process | Where { $_.name -eq 'gvim' } | Stop-Process
Start-Process PowerShell -ArgumentList "-File $scriptPath\housekeeping.ps1" -Verb RunAs
}
Remove-Item -Path "$ENV:ProgramFiles\Vim" -Force -Recurse
Remove-Item -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Vim 7.4' -Force -Recurse
Remove-Item -Path 'HKLM:\SOFTWARE\Vim' -Force -Recurse
Log in or click on link to see number of positives.
- vim-x64.7.4.827.nupkg (1b91187e55fe) - ## / 57
- vim7.4.827_x64.exe (bfb05e089201) - ## / 56
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 |
---|---|---|---|---|
[Deprecated] Vim x64 7.4.1824 | 2560 | Tuesday, May 10, 2016 | Approved | |
Vim x64 7.4.1817 | 378 | Thursday, May 5, 2016 | Approved | |
Vim x64 7.4.1796 | 498 | Friday, April 29, 2016 | Approved | |
Vim x64 7.4.1759 | 481 | Thursday, April 21, 2016 | Approved | |
Vim x64 7.4.1739 | 491 | Friday, April 15, 2016 | Approved | |
Vim x64 7.4.1713 | 568 | Thursday, April 7, 2016 | Approved | |
Vim x64 7.4.1709 | 540 | Tuesday, April 5, 2016 | Approved | |
Vim x64 7.4.1689 | 494 | Thursday, March 31, 2016 | Approved | |
Vim x64 7.4.1646 | 478 | Friday, March 25, 2016 | Approved | |
Vim x64 7.4.1641 | 451 | Thursday, March 24, 2016 | Approved | |
Vim x64 7.4.1639 | 492 | Wednesday, March 23, 2016 | Approved | |
Vim x64 7.4.1584 | 537 | Friday, March 18, 2016 | Approved | |
Vim x64 7.4.1580 | 472 | Thursday, March 17, 2016 | Approved | |
Vim x64 7.4.1577 | 461 | Wednesday, March 16, 2016 | Approved | |
Vim x64 7.4.1556 | 459 | Monday, March 14, 2016 | Approved | |
Vim x64 7.4.1537 | 440 | Saturday, March 12, 2016 | Approved | |
Vim x64 7.4.1525 | 482 | Thursday, March 10, 2016 | Approved | |
Vim x64 7.4.1507 | 421 | Tuesday, March 8, 2016 | Approved | |
Vim x64 7.4.1491 | 465 | Sunday, March 6, 2016 | Approved | |
Vim x64 7.4.1483 | 464 | Friday, March 4, 2016 | Approved | |
Vim x64 7.4.1467 | 427 | Wednesday, March 2, 2016 | Approved | |
Vim x64 7.4.1460 | 455 | Monday, February 29, 2016 | Approved | |
Vim x64 7.4.1444 | 446 | Monday, February 29, 2016 | Approved | |
Vim x64 7.4.1425 | 411 | Saturday, February 27, 2016 | Approved | |
Vim x64 7.4.1412 | 460 | Thursday, February 25, 2016 | Approved | |
Vim x64 7.4.1386 | 379 | Tuesday, February 23, 2016 | Approved | |
Vim x64 7.4.1362 | 484 | Sunday, February 21, 2016 | Approved | |
Vim x64 7.4.1342 | 472 | Tuesday, February 16, 2016 | Approved | |
Vim x64 7.4.1290 | 503 | Tuesday, February 9, 2016 | Approved | |
Vim x64 7.4.1089 | 553 | Thursday, January 21, 2016 | Approved | |
Vim x64 7.4.965 | 524 | Saturday, December 26, 2015 | Approved | |
vim-x64 7.4.827 | 455 | Saturday, November 14, 2015 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about vim-x64 and the vim-x64 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 vim-x64, 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.