9

Problem:

E319: Sorry, the command is not available in this version

Problem
When I run vim environment and try reformat code (CTRL+K) i get this warning on the screen

Environment:
System: Mac OS X

Settings:
Vim:

VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Nov 17 2016 20:17:27)
MacOS X (unix) version
Included patches: 1-91

python:

python --version: Python 3.5.2

What I do

Thx,

meernet
  • 336
  • 1
  • 4
  • 13
  • 1. `clang-format.py` doesn't do "refactoring". 2. Did you build Vim? How? 3. Show us the complete output of `$ vim --version`. – romainl Nov 19 '16 at 07:56

3 Answers3

5

Solution:

1. Go to .vimrc file and add commands

map <C-K> :pyf <path-to-this-file>/clang-format.py<cr>
imap <C-K><c-o>:pyf <path-to-this-file>/clang-format.py<cr>

2.Add this https://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format/clang-format.py source code to clang-format.py file, you can save this file to i.e

<path-to-this-file>/clang-format.py

where path-to-this-file is path to direction where you put this file.

3.Save clang-format.py file and run vim. Check that the command works.

You can also install macvim for OSX. Instruction you can find here. How can I install MacVim on OS X?

PS: If you get "Sorry, the command is not available in this version" error, try:

map <C-K> :py3f <path-to-this-file>/clang-format.py<cr>
imap <C-K><c-o>:py3f <path-to-this-file>/clang-format.py<cr>
life_steal
  • 55
  • 7
meernet
  • 336
  • 1
  • 4
  • 13
1

Here

$ which clang-format

returns

/usr/local/bin/clang-format

Then

ls -ls /usr/local/bin/clang-format

points to

/usr/local/Cellar/clang-format/2018-04-24/share/clang/clang-format.py

So I do

$ vim ~/.vimrc

map <C-K> :pyf /usr/local/Cellar/clang-format/2018-04-24/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:pyf /usr/local/Cellar/clang-format/2018-04-24/share/clang/clang-format.py<cr>

This works on vim (from terminal) but not on macvim.

KcFnMi
  • 3,922
  • 8
  • 43
  • 90
0

Just mention the project https://github.com/rhysd/vim-clang-format

Which is very handy to use, and save us from repeated work.

prehistoricpenguin
  • 3,842
  • 1
  • 21
  • 34