- CodeAndKeep.Com
- PowerShell and Vim
- Vi on the Command Line
- If you don’t have it
- Vim on Windows
- Configure Vim for PowerShell
- Customize your vimrc file
- How to install plugins for VIM?
- 5 Answers 5
- Step 1: Find your home directory
- Step 2: Set up vimfiles and _vimrc
- Step 3: Get git
- Step 4: Install Vundle
- Step 5: Set up your _vimrc
- Step 6: Let vundle get to work!
- Bonus Section
- Vim in windows powershell
- About
- ВИМ с помощью PowerShell
- 11 ответов:
CodeAndKeep.Com
Code and keep calm.
PowerShell and Vim
If you are familiar with Linux or come from a Unix background, you probably know about Vim. For those of us that started and stay mostly in the realm of Windows however; Vim may be a foreign thing. I was fortunte enough to be exposed to vim, and see what it can do; now there’s no turning back.
Vi on the Command Line
There has been a module for PowerShell for a while now that allows you to use a vi editor on the command line. Previously you would have had to copy the code from GitHub, but now — thanks to the PowerShell NuGet package manager — you can install it easily straight from PowerShell. Better yet, if you are on Windows 10, or server2016, it comes pre-installed.
You can check if you have it with one command.
If you don’t get any results then it’s not installed.
If you have a version number 1.1 or prior, then you will need to upgrade the version to 1.2 or higher:
You can install it like so:
If you haven’t setup NuGet previously, you can follow the onscreen instructions to get it setup and configured.
Now that you have it, you can setup your command line editor in vi mode:
If you want this set by default you can add this to your profile so it loads automatically.
If you don’t have it
If you are on anything before win10 or server 2016, you will need to some prep work:
- You need to have .Net 4.5 installed.
- Download here
- Minimum Windows Management Framework version 3 (WMF 3), but I recommend WMF 5.1.
- WMF3, WMF5.1
- You need the PackageManagement PowerShell module
- Download here
With these prerequisites installed, you can follow the steps above to install PSReadline.
Vim on Windows
Now that you have your command line setup with vi, now you can setup the real thing. You can download Vim for Windows here, or with code (working at the time of writing this post):
This is a self installing exe, so all you need to do is run it and customize it as you will. I typically just use the default settings (next, next, finish).
Configure Vim for PowerShell
By default, vim is installed here ‘C:\Program Files (x86)\Vim’. The executable that you will want to run will be here: ‘C:\Program Files (x86)\Vim\vim80\vim.exe’. You can add the base path of the above to your PATH, but since I will only be using the one executable here (vim.exe), and I will only be using it via PowerShell, I simply create an alias in my PowerShell profile.
Now next time you want to edit a file, instead of notepad ‘.\test.txt’ , do vi test.txt .
Customize your vimrc file
There should be a a file named «_vimrc» in your user directory. If there isn’t you can go ahead and create it.
Now I’m still relatively new with using Vim, but these are the settings that I have come accross that work well for me with PowerShell. The biggest problem for me was finding a color scheme that worked with PowerShell’s color scheme.
This is a start; hopefully you can build on this and improve on it.
SIDE NOTE: If you want to write PowerShell code using Vim, I would recommend using VisualStudio Code. If has extensions for both PowerShell and Vim. The PowerShell extension allows for ‘Intellisense’ and syntax highlighting for PowerShell; and the Vim extension will allow you to use Vim shortcuts for editting your code.
How to install plugins for VIM?
I have microsoft windows 7 and powershell.
Everytime I add commands to powershell (those commands written by those who created those plugins), it says it doesn’t recognize anything.
Anyway, imagine I freshly installed VIM, How do I install a plugin for example:
Thanks btw! Please please please write it in newbie terms. I’m really new to all this!
5 Answers 5
I’m a big fan of vundle. There’s a quick start available on the github page but here are some basic steps for windows.
Step 1: Find your home directory
Vim stores it’s configuration files in a «home» directory. On windows this location will vary but one of the easiest ways to locate your home directory is to open vim and type :echo $HOME . Vim will print the home directory which is where our configuration files need to live.
Step 2: Set up vimfiles and _vimrc
There are two major components to configuring vim. The first is a _vimrc file which is a plain text file that contains configuration settings. The second is a vimfiles folder which contains plugins and other useful vim things. Both of these files belong in your HOME directory which we located in the previous step.
Sometimes in tutorials you will see references to .vim and .vimrc these are the Linux/Unix/MacOSX equivalents to vimfiles and _vimrc . These files will also work on windows but are more difficult to create as windows explorer won’t let you create files or folders that begin with a dot.
To create a _vimrc simply create a file named _vimrc using Right Rlick>New>Text Document . Make sure your _vimrc file doesn’t have the .txt extension. You can double check this in explorer by looking at the Type column. If the type is File then you’re good to go. If the type is Text Document or anything else then you need to show file extensions and get rid of the extension.
In the same place as your _vimrc create a folder named vimfiles .
Step 3: Get git
Git is a source control system and it also allows vundle to automatically manage your plugins for you. You can download it here. Make sure to pick «Run Git from the Windows Command Prompt».
Step 4: Install Vundle
Open PowerShell or command prompt and type:
Make sure to replace $HOME with the path we discovered in step 1.
Step 5: Set up your _vimrc
Now we need to write your _vimrc and decide what plugins you want. Here’s an example _vimrc that installs nerdtree for you:
Step 6: Let vundle get to work!
Now we’re ready to let vundle do it’s job. Open vim and type :BundleInstall vundle will download and install the plugins you specified in your _vimrc.
Bonus Section
Here’s some extra resources that have some really useful information:
Vim in windows powershell
This is a fork of PProvost/vim-ps1. I’ve decided to fork Peter’s project mostly due how the original project chose to set the vim filetype to ps1 . Another user created an issue requesting it be changed to powershell, but that was rejected.
My main reason for wanting the filetype to be powershell is in association with the w0rp/ale (A vim plugin which brings linting support to many languages). In Ale, it did not seem fitting to create the powershell support to work with a filetype ps1 where all other filetypes are set based on the language name, not the file extension.
Thank-you to Peter and all other contributors of the original vim-ps1 project.
Changes from vim-ps1
- Renamed filetype from ps1 to powershell
- Replaced indentation script with script from Lior Elia.
- Added compiler settings, so a powershell script can be parsed with :make
Thanks to Lior Elia for the indentation script and Enno Nagel for the suggestions on how to setup errorformat and makeprg in a filetype plugin. See here for info on that.
If you are a Windows PowerShell user who uses Vim or Gvim for editing scripts, then this plugin is for you.
It provides nice syntax coloring and indenting for PowerShell (.ps1) files, and also includes a filetype plugin so Vim can autodetect your PS1 scripts.
Includes contributions by:
- Tomas Restrepo
- Jared Parsons
- Heath Stewart
- Michael B. Smith
- Alexander Kostikov
Copy the included directories into your .vim or vimfiles directory.
Or even better, use pathogen.vim and simply pull it in like this:
The powershell syntax file provides syntax folding for script blocks and digital signatures in scripts.
When ‘foldmethod’ is set to «syntax» then function script blocks will be folded unless you use the following in your .vimrc or before opening a script:
Digital signatures in scripts will also be folded unless you use:
Note: syntax folding might slow down syntax highlighting significantly, especially for large files.
Comments and Suggestions
Please follow, fork or submit issues on GitHub
- v2.10 (2013-06-24) Added Heath Stewart’s here strings fix
- v2.9 (2012-03-08) Included tomasr’s changes
- v2.81 (2012-03-05) Fixed a dumb typo
- v2.8 (2012-03-05) Better number scanning, multiline comments, missing keywords and constants
- v2.7 (2008-09-22) Begin, process & end keywords. Better highlighting of foreach and where
- v2.6 (2007-03-05) Added unary -not operator
- v2.5 (2007-03-03) Updates for here-strings, comment todos, other small cleanups
- v2.4 (2007-03-02) Added elseif keyword
- v2.3 (2007-02-27) Added param keyword
- v2.2 (2007-02-19) Missing keywords
- v2.1 (2006-07-31) Update for renaming
- v2.0 (2005-12-21) Big update from Jared Parsons
- v1.3 (2005-12-20) Updates to syntax elements
- v1.2 (2005-08-13) Fix foreach and while problem
- v1.1 (2005-08-12) Initial release
About
A Vim plugin for Windows PowerShell support
ВИМ с помощью PowerShell
Я использую gvim на Windows.
в моем _vimrc я добавил:
если я выполняю эту функцию (: Test), я вижу бессмысленные символы (не числовые/буквенные символы ASCII).
если я использую cmd в качестве оболочки, он работает (без имени), поэтому проблема, похоже, заключается в получении вывода из powershell в vim.
интересно, что это отлично работает:
обновление: подтверждение поведения, упомянутого Дэвидом
если вы выполняете команды набора, упомянутые выше в _vimrc,: Test выводит ерунду. Однако, если вы выполняете их непосредственно в vim, а не в _vimrc, :Test работает так, как ожидалось.
кроме того, я пробовал использовать iconv в случае, если это была проблема с кодировкой:
но это не имеет никакого значения. Я мог бы использовать неправильные типы кодировки хотя.
кто-нибудь знает, как сделать эту работу?
11 ответов:
это немного хак, но следующие работы в Vim 7.2. Обратите внимание, что я запускаю Powershell в сеансе CMD.
протестировано со следующим.
я столкнулся с подобной проблемой, описанной многими здесь.
в частности, называя
вручную из vim заставит powershell работать нормально, но как только я добавлю:
в мой файл vimrc я бы получил сообщение об ошибке » не удалось открыть временный файл . «
проблема в том, что по умолчанию при изменении оболочки vim автоматически устанавливает shellxquote в » Что означает, что команды оболочки будут выглядеть следующим образом следующее:
где, как эта команда должна выглядеть так, чтобы vim читал временный файл:
установка shellquote в » в моем файле vimrc и сброс shellxquote (т. е. установка его на пустое место), похоже, исправляют все мои проблемы:
Я также попытался взять это дальше и немного скриптовать vim, используя вызов system() : system () с powershell в vim
Я подозреваю, что проблема в том, что Powershell использует собственную кодировку строк для .NET, которая является UTF-16 плюс Знак порядка байтов.
когда это конвейерные объекты между командами это не проблема. Это полная Пита для внешних программ, хотя.
вы можете передать вывод через out-file, который поддерживает изменение кодировки, но по-прежнему форматирует вывод для терминала, в котором он находится по умолчанию (arrgh!), поэтому такие вещи, как «Get-Process», будут усекаться эллипсы и т. д. Вы можете указать ширину виртуального терминала, который использует Out-File.
Не уверен, насколько полезна эта информация, но она освещает проблему немного больше.
EDIT: попробуйте использовать cmd.exe в качестве оболочки и поставить » powershell.exe-файла» До «-команда»
интересный вопрос-здесь есть что-то еще, чтобы добавить к путанице. Без внесения каких-либо изменений .vimrc файл, если я затем запустить следующие команды в gvim:
он ведет себя так, как ожидалось!
Если я внесу те же изменения в мой .однако файл vimrc (параметры shell и shellcmdflag), запущенный :echo system(«dir-name») возвращает бессмысленные символы!
исходный пример кода отлично работает для меня, когда я плюхаю его в vimrc.
Так что теперь я пытаюсь выяснить, что в моем vimrc делает его функции. Возможно:
Edit: Да, это, кажется, делает это. Вы, вероятно, хотите, чтобы VIM по умолчанию для unicode в любом случае, в эти дни.
ни один из ответов на этой странице не работал для меня, пока я не нашел этот намек от https://github.com/dougireton/mirror_pond/blob/master/vimrc — set shellxquote= [пробел] был недостающий кусок.
Я предлагаю хакерское решение. На самом деле это не решает проблему, но она как-то справляется с работой.
этой плагин для Vim автоматизируйте создание временного файла сценария, вызов powershell через cmd.exe и вставить результат. Это не так хорошо, как правильная обработка powershell vim, но она работает.
вместо того, чтобы попробовать set shellcmdflag=\ -c
Vim использует tempname() для создания пути к временному файлу, который читает system ().
Если & shell содержит ‘sh’ и &shellcmdflag начинается с’ -‘ затем tempname () создает путь к временному файлу с косыми чертами.
таким образом, если set shell=powershell set shellcmdflag=-c затем Vim попытается прочитать временный файл с прямыми косыми чертами, которые не может быть найден.
вместо этого нужно установить средство set shellcmdflag=\ -c то есть, добавьте пробел к &shellcmdflag так, что первый символ больше не ‘ — ‘ и tempname () создает путь к временному файлу с обратным косые черты, которые можно найти с помощью system ().
Я заметил в списке рассылки vim_dev (https://groups.google.com/forum/#! topic/vim_dev / vTR05EZyfE0 ) что это заслуживает лучшей документации.
actf ответ работает для меня, но из-за Powershell, встроенного в DIFF (который отличается от Linux), вы должны добавить эту строку в свой профиль Powershell, чтобы diff снова работал в VIM:
Я не использую VIM, но выход Powershell по умолчанию-Unicode. Блокнот может читать unicode, вы можете использовать его, чтобы увидеть, если вы получаете результат, который вы ожидаете.